Home
last modified time | relevance | path

Searched defs:p (Results 1 – 25 of 36) sorted by relevance

12

/CafeSDK-2.12.13-1/system/src/lib/szfile/
D7zFile.c28 void File_Construct(CSzFile *p) in File_Construct()
38 static WRes File_Open(CSzFile *p, const char *name, int writeMode) in File_Open()
58 WRes InFile_Open(CSzFile *p, const char *name) { return File_Open(p, name, 0); } in InFile_Open()
59 WRes OutFile_Open(CSzFile *p, const char *name) { return File_Open(p, name, 1); } in OutFile_Open()
63 static WRes File_OpenW(CSzFile *p, const WCHAR *name, int writeMode) in File_OpenW()
72 WRes InFile_OpenW(CSzFile *p, const WCHAR *name) { return File_OpenW(p, name, 0); } in InFile_OpenW()
73 WRes OutFile_OpenW(CSzFile *p, const WCHAR *name) { return File_OpenW(p, name, 1); } in OutFile_OpenW()
76 WRes File_Close(CSzFile *p) in File_Close()
97 WRes File_Read(CSzFile *p, void *data, size_t *size) in File_Read()
132 WRes File_Write(CSzFile *p, const void *data, size_t *size) in File_Write()
[all …]
DCpuArch.h65 #define GetUi16(p) (*(const UInt16 *)(p)) argument
66 #define GetUi32(p) (*(const UInt32 *)(p)) argument
67 #define GetUi64(p) (*(const UInt64 *)(p)) argument
68 #define SetUi16(p, d) *(UInt16 *)(p) = (d); argument
69 #define SetUi32(p, d) *(UInt32 *)(p) = (d); argument
70 #define SetUi64(p, d) *(UInt64 *)(p) = (d); argument
104 #define GetBe32(p) _byteswap_ulong(*(const UInt32 *)(const Byte *)(p)) argument
105 #define GetBe64(p) _byteswap_uint64(*(const UInt64 *)(const Byte *)(p)) argument
119 #define GetBe16(p) (((UInt16)((const Byte *)(p))[0] << 8) | ((const Byte *)(p))[1]) argument
144 #define x86cpuid_GetFamily(p) (((p)->ver >> 8) & 0xFF00F) argument
[all …]
D7zAlloc.c21 void *SzAlloc(void *p, size_t size) in SzAlloc()
33 void SzFree(void *p, void *address) in SzFree()
46 void *SzAllocTemp(void *p, size_t size) in SzAllocTemp()
61 void SzFreeTemp(void *p, void *address) in SzFreeTemp()
D7zBuf2.c7 void DynBuf_Construct(CDynBuf *p) in DynBuf_Construct()
14 void DynBuf_SeekToBeg(CDynBuf *p) in DynBuf_SeekToBeg()
19 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc) in DynBuf_Write()
39 void DynBuf_Free(CDynBuf *p, ISzAlloc *alloc) in DynBuf_Free()
D7zStream.c72 CLookToRead *p = (CLookToRead *)pp; in LookToRead_Look_Lookahead() local
90 CLookToRead *p = (CLookToRead *)pp; in LookToRead_Look_Exact() local
108 CLookToRead *p = (CLookToRead *)pp; in LookToRead_Skip() local
115 CLookToRead *p = (CLookToRead *)pp; in LookToRead_Read() local
129 CLookToRead *p = (CLookToRead *)pp; in LookToRead_Seek() local
134 void LookToRead_CreateVTable(CLookToRead *p, int lookahead) in LookToRead_CreateVTable()
144 void LookToRead_Init(CLookToRead *p) in LookToRead_Init()
151 CSecToLook *p = (CSecToLook *)pp; in SecToLook_Read() local
155 void SecToLook_CreateVTable(CSecToLook *p) in SecToLook_CreateVTable()
162 CSecToRead *p = (CSecToRead *)pp; in SecToRead_Read() local
[all …]
D7zBuf.c8 void Buf_Init(CBuf *p) in Buf_Init()
14 int Buf_Create(CBuf *p, size_t size, ISzAlloc *alloc) in Buf_Create()
31 void Buf_Free(CBuf *p, ISzAlloc *alloc) in Buf_Free()
D7zIn.c17 void SzCoderInfo_Init(CSzCoderInfo *p) in SzCoderInfo_Init()
22 void SzCoderInfo_Free(CSzCoderInfo *p, ISzAlloc *alloc) in SzCoderInfo_Free()
28 void SzFolder_Init(CSzFolder *p) in SzFolder_Init()
42 void SzFolder_Free(CSzFolder *p, ISzAlloc *alloc) in SzFolder_Free()
55 UInt32 SzFolder_GetNumOutStreams(CSzFolder *p) in SzFolder_GetNumOutStreams()
64 int SzFolder_FindBindPairForInStream(CSzFolder *p, UInt32 inStreamIndex) in SzFolder_FindBindPairForInStream()
74 int SzFolder_FindBindPairForOutStream(CSzFolder *p, UInt32 outStreamIndex) in SzFolder_FindBindPairForOutStream()
83 UInt64 SzFolder_GetUnpackSize(CSzFolder *p) in SzFolder_GetUnpackSize()
95 void SzFile_Init(CSzFileItem *p) in SzFile_Init()
104 void SzAr_Init(CSzAr *p) in SzAr_Init()
[all …]
DCpuArch.c97 Bool x86cpuid_CheckAndRead(Cx86cpuid *p) in x86cpuid_CheckAndRead()
112 int x86cpuid_GetFirm(const Cx86cpuid *p) in x86cpuid_GetFirm()
128 Cx86cpuid p; in CPU_Is_InOrder() local
161 Cx86cpuid p; in CPU_Is_Aes_Supported() local
Dszfile.c32 static SRes memStreamLook(void *p, const void **buf, size_t *size) in memStreamLook()
55 static SRes memStreamSkip(void *p, size_t offset) in memStreamSkip()
76 static SRes memStreamRead(void *p, void *buf, size_t *size) in memStreamRead()
101 static SRes memStreamSeek(void *p, Int64 *pos, ESzSeek origin) in memStreamSeek()
270 static void * sAlloc(void *p, size_t bytes) in sAlloc()
277 static void sFree(void *p, void *address) in sFree()
D7zCrcOpt.c12 const Byte *p = (const Byte *)data; in CrcUpdateT4() local
D7zCrc.c26 const Byte *p = (const Byte *)data; in CrcUpdateT1() local
D7zDec.c35 IByteIn p; member
47 CByteInToLook *p = (CByteInToLook *)pp; in ReadByte() local
/CafeSDK-2.12.13-1/system/include/
DLzma2Dec.h27 #define Lzma2Dec_Construct(p) LzmaDec_Construct(&(p)->decoder) argument
28 #define Lzma2Dec_FreeProbs(p, alloc) LzmaDec_FreeProbs(&(p)->decoder, alloc); argument
29 #define Lzma2Dec_Free(p, alloc) LzmaDec_Free(&(p)->decoder, alloc); argument
/CafeSDK-2.12.13-1/system/src/lib/mtx/
DmtxQuat.c48 void C_QUATAdd( const Quaternion *p, const Quaternion *q, Quaternion *r ) in C_QUATAdd()
66 void PSQUATAdd( const Quaternion *p, const Quaternion *q, Quaternion *r ) in PSQUATAdd()
122 void C_QUATSubtract( const Quaternion *p, const Quaternion *q, Quaternion *r ) in C_QUATSubtract()
140 void PSQUATSubtract( const Quaternion *p, const Quaternion *q, Quaternion *r ) in PSQUATSubtract()
198 void C_QUATMultiply( const Quaternion *p, const Quaternion *q, Quaternion *pq ) in C_QUATMultiply()
234 void PSQUATMultiply( const Quaternion *p, const Quaternion *q, Quaternion *pq ) in PSQUATMultiply()
420 f32 C_QUATDotProduct( const Quaternion *p, const Quaternion *q ) in C_QUATDotProduct()
435 f32 PSQUATDotProduct( const Quaternion *p, const Quaternion *q ) in PSQUATDotProduct()
734 void C_QUATDivide( const Quaternion *p, const Quaternion *q, Quaternion *r ) in C_QUATDivide()
753 void PSQUATDivide( const Quaternion *p, const Quaternion *q, Quaternion *r ) in PSQUATDivide()
[all …]
DmtxQuat_asm.s29 #define p r3 macro
65 #define p r3 macro
102 #define p r3 macro
315 #define p r3 macro
/CafeSDK-2.12.13-1/system/src/lib/libsys/
Dind_alloc.c64 void *p = __ghs_alloc(size, align); in __ghs_calloc() local
Dind_mprf.c112 CNT_List *p, *next; in __ghs_prof_clear_callcounts() local
153 CNT_List *p; in __ghs_prof_dump_callcounts() local
309 CNT_List *p; in __ghs_indmcount() local
Dind_trnc.c59 char *p, *q; in tmpnam() local
Dind_bcnt.c55 struct bhdr *p, *next; in __ghs_prof_clear_coverage() local
Dind_tmzn.c141 const struct s_chart *p; in localtime_r() local
/CafeSDK-2.12.13-1/system/src/lib/malloc/
Dentry.c18 int rpl_entry(void *p, int i) in rpl_entry()
/CafeSDK-2.12.13-1/system/src/lib/demo/
DdemoTest.c70 const u8 *p = (const u8 *)datap; in DEMOTestHashCRC16() local
96 const u8 *p = (const u8 *)datap; in DEMOTestHashCRC32() local
117 char *p; in DEMOTestInit() local
/CafeSDK-2.12.13-1/system/include/cafe/net/
Dso.h152 #define FD_SET(n, p) \ argument
154 #define FD_CLR(n, p) \ argument
156 #define FD_ISSET(n, p) \ argument
158 #define FD_ZERO(p) \ argument
/CafeSDK-2.12.13-1/system/src/tool/gfx/projects/TexConv2/texConvert/
DTexConvert.cpp303 for(char *p = strchr(pPath, '\0' ); p >= pPath; p--) in PathToFileName() local
655 char *p; in StrToLower() local
/CafeSDK-2.12.13-1/system/src/tool/cafex/winmakebsf/
Dmakebsf.c134 char *p = NULL; in CheckStickyRegisterEnvVar() local

12