| /CafeSDK-2.12.13-1/system/src/lib/szfile/ |
| D | 7zFile.c | 28 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 …]
|
| D | CpuArch.h | 65 #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 …]
|
| D | 7zAlloc.c | 21 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()
|
| D | 7zBuf2.c | 7 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()
|
| D | 7zStream.c | 72 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 …]
|
| D | 7zBuf.c | 8 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()
|
| D | 7zIn.c | 17 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 …]
|
| D | CpuArch.c | 97 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
|
| D | szfile.c | 32 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()
|
| D | 7zCrcOpt.c | 12 const Byte *p = (const Byte *)data; in CrcUpdateT4() local
|
| D | 7zCrc.c | 26 const Byte *p = (const Byte *)data; in CrcUpdateT1() local
|
| D | 7zDec.c | 35 IByteIn p; member 47 CByteInToLook *p = (CByteInToLook *)pp; in ReadByte() local
|
| /CafeSDK-2.12.13-1/system/include/ |
| D | Lzma2Dec.h | 27 #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/ |
| D | mtxQuat.c | 48 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 …]
|
| D | mtxQuat_asm.s | 29 #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/ |
| D | ind_alloc.c | 64 void *p = __ghs_alloc(size, align); in __ghs_calloc() local
|
| D | ind_mprf.c | 112 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
|
| D | ind_trnc.c | 59 char *p, *q; in tmpnam() local
|
| D | ind_bcnt.c | 55 struct bhdr *p, *next; in __ghs_prof_clear_coverage() local
|
| D | ind_tmzn.c | 141 const struct s_chart *p; in localtime_r() local
|
| /CafeSDK-2.12.13-1/system/src/lib/malloc/ |
| D | entry.c | 18 int rpl_entry(void *p, int i) in rpl_entry()
|
| /CafeSDK-2.12.13-1/system/src/lib/demo/ |
| D | demoTest.c | 70 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/ |
| D | so.h | 152 #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/ |
| D | TexConvert.cpp | 303 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/ |
| D | makebsf.c | 134 char *p = NULL; in CheckStickyRegisterEnvVar() local
|