Home
last modified time | relevance | path

Searched refs:UInt64 (Results 1 – 11 of 11) sorted by relevance

/CafeSDK-2.12.13-1/system/src/lib/szfile/
D7z.h50 UInt64 MethodID;
68 UInt64 *UnpackSizes;
79 UInt64 SzFolder_GetUnpackSize(CSzFolder *p);
82 UInt64 SzFolder_GetUnpackSize(CSzFolder *p);
84 SRes SzFolder_Decode(const CSzFolder *folder, const UInt64 *packSizes,
85 ILookInStream *stream, UInt64 startPos,
97 UInt64 Size;
112 UInt64 *PackSizes;
150 UInt64 startPosAfterHeader;
151 UInt64 dataPos;
[all …]
D7zIn.c83 UInt64 SzFolder_GetUnpackSize(CSzFolder *p) in SzFolder_GetUnpackSize()
182 UInt64 startPosSize = 0; in SzArEx_Fill()
193 MY_ALLOC(UInt64, p->PackStreamStartPositions, p->db.NumPackStreams, alloc); in SzArEx_Fill()
243 UInt64 SzArEx_GetFolderStreamPos(const CSzArEx *p, UInt32 folderIndex, UInt32 indexInFolder) in SzArEx_GetFolderStreamPos()
249 int SzArEx_GetFolderFullPackSize(const CSzArEx *p, UInt32 folderIndex, UInt64 *resSize) in SzArEx_GetFolderFullPackSize()
253 UInt64 size = 0; in SzArEx_GetFolderFullPackSize()
257 UInt64 t = size + p->db.PackSizes[packStreamIndex + i]; in SzArEx_GetFolderFullPackSize()
348 static SRes SzReadNumber(CSzData *sd, UInt64 *value) in SzReadNumber()
360 UInt64 highPart = firstByte & (mask - 1); in SzReadNumber()
365 *value |= ((UInt64)b << (8 * i)); in SzReadNumber()
[all …]
DCpuArch.h67 #define GetUi64(p) (*(const UInt64 *)(p))
70 #define SetUi64(p, d) *(UInt64 *)(p) = (d);
82 #define GetUi64(p) (GetUi32(p) | ((UInt64)GetUi32(((const Byte *)(p)) + 4) << 32))
94 #define SetUi64(p, d) { UInt64 _x64_ = (d); \
105 #define GetBe64(p) _byteswap_uint64(*(const UInt64 *)(const Byte *)(p))
115 #define GetBe64(p) (((UInt64)GetBe32(p) << 32) | GetBe32(((const Byte *)(p)) + 4))
D7zDec.c39 UInt64 processed;
66 static SRes SzDecodePpmd(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, in SzDecodePpmd()
127 static SRes SzDecodeLzma(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, in SzDecodeLzma()
175 static SRes SzDecodeLzma2(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, in SzDecodeLzma2()
224 static SRes SzDecodeCopy(UInt64 inSize, ILookInStream *inStream, Byte *outBuffer) in SzDecodeCopy()
324 static UInt64 GetSum(const UInt64 *values, UInt32 index) in GetSum()
326 UInt64 sum = 0; in GetSum()
335 static SRes SzFolder_Decode2(const CSzFolder *folder, const UInt64 *packSizes, in SzFolder_Decode2()
336 ILookInStream *inStream, UInt64 startPos, in SzFolder_Decode2()
354 UInt64 offset; in SzFolder_Decode2()
[all …]
D7zTypes.h73 typedef unsigned long UInt64; typedef
79 typedef unsigned __int64 UInt64; typedef
83 typedef unsigned long long int UInt64; typedef
184 SRes LookInStream_SeekTo(ILookInStream *stream, UInt64 offset);
222 SRes (*Progress)(void *p, UInt64 inSize, UInt64 outSize);
D7zFile.c174 value.HighPart = (LONG)((UInt64)*pos >> 16 >> 16); /* for case when UInt64 is 32-bit only */ in File_Seek()
210 WRes File_GetLength(CSzFile *p, UInt64 *length) in File_GetLength()
222 *length = (((UInt64)sizeHigh) << 32) + sizeLow; in File_GetLength()
D7zFile.h50 WRes File_GetLength(CSzFile *p, UInt64 *length);
D7zStream.c34 SRes LookInStream_SeekTo(ILookInStream *stream, UInt64 offset) in LookInStream_SeekTo()
/CafeSDK-2.12.13-1/system/include/
DLzmaTypes.h73 typedef unsigned long UInt64; typedef
79 typedef unsigned __int64 UInt64; typedef
83 typedef unsigned long long int UInt64; typedef
184 SRes LookInStream_SeekTo(ILookInStream *stream, UInt64 offset);
222 SRes (*Progress)(void *p, UInt64 inSize, UInt64 outSize);
/CafeSDK-2.12.13-1/system/src/tool/cafex/
DCafeFunctions.cs306 internal static UInt64 recover_flags = 0x230;
5950 internal static UInt64 RECOVER_SDK_MASK = 0x000000000000000F;
5951 internal static UInt64 RECOVER_COMMAND_MASK = 0x00000000000000F0;
5952 internal static UInt64 RECOVER_ENV_BOOT_MASK = 0x0000000000000F00;
5953 internal static UInt64 RECOPT_REFLASH_MASK = 0x000000000000F000;
5954 internal static UInt64 RECOPT_NOREFLASH_MASK = 0x00000000000F0000;
5955 internal static UInt64 RECOPT_PROD_MASK = 0x0000000000F00000;
5956 internal static UInt64 RECOPT_MIXED_MASK = 0x000000000F000000;
5957 internal static UInt64 RECOVER_DETECTED_BOOT_MASK = 0x00000000F0000000;
5958 internal static UInt64 RECOPT_QUICK_MASK = 0x0000000F00000000;
[all …]
DTools.cs909 …if (!UInt64.TryParse(titleId, System.Globalization.NumberStyles.HexNumber, System.Globalization.Cu… in TitleId()