Lines Matching refs:Byte
10 Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C};
301 static int TestSignatureCandidate(Byte *testBytes) in TestSignatureCandidate()
312 Byte *Data;
316 static SRes SzReadByte(CSzData *sd, Byte *b) in SzReadByte()
325 static SRes SzReadBytes(CSzData *sd, Byte *data, size_t size) in SzReadBytes()
341 Byte b; in SzReadUInt32()
350 Byte firstByte; in SzReadNumber()
351 Byte mask = 0x80; in SzReadNumber()
357 Byte b; in SzReadNumber()
431 static SRes SzReadBoolVector(CSzData *sd, size_t numItems, Byte **v, ISzAlloc *alloc) in SzReadBoolVector()
433 Byte b = 0; in SzReadBoolVector()
434 Byte mask = 0; in SzReadBoolVector()
436 MY_ALLOC(Byte, *v, numItems, alloc); in SzReadBoolVector()
444 (*v)[i] = (Byte)(((b & mask) != 0) ? 1 : 0); in SzReadBoolVector()
450 static SRes SzReadBoolVector2(CSzData *sd, size_t numItems, Byte **v, ISzAlloc *alloc) in SzReadBoolVector2()
452 Byte allAreDefined; in SzReadBoolVector2()
457 MY_ALLOC(Byte, *v, numItems, alloc); in SzReadBoolVector2()
466 Byte **digestsDefined, in SzReadHashDigests()
486 Byte **packCRCsDefined, in SzReadPackInfo()
518 MY_ALLOC(Byte, *packCRCsDefined, (size_t)*numPackStreams, alloc); in SzReadPackInfo()
531 Byte external; in SzReadSwitch()
553 Byte mainByte; in SzGetNextFolderItem()
557 Byte longID[15]; in SzGetNextFolderItem()
695 Byte *crcsDefined = 0; in SzReadUnpackInfo()
722 Byte **digestsDefined, in SzReadSubStreamsInfo()
767 *digestsDefined = (Byte *)IAlloc_Alloc(allocTemp, (size_t)*numUnpackStreams * sizeof(Byte)); in SzReadSubStreamsInfo()
820 Byte *digestsDefined2 = 0; in SzReadSubStreamsInfo()
868 Byte **digestsDefined, /* allocTemp */ in SzReadStreamsInfo()
912 const Byte *src = p->FileNames.data + (p->FileNameOffsets[fileIndex] * 2); in SzArEx_GetFileNameUtf16()
919 static SRes SzReadFileNames(const Byte *p, size_t size, UInt32 numFiles, size_t *sizes) in SzReadFileNames()
944 Byte **digestsDefined, /* allocTemp */ in SzReadHeader2()
946 Byte **emptyStreamVector, /* allocTemp */ in SzReadHeader2()
947 Byte **emptyFileVector, /* allocTemp */ in SzReadHeader2()
948 Byte **lwtVector, /* allocTemp */ in SzReadHeader2()
1048 Byte defined = (*lwtVector)[i]; in SzReadHeader2()
1067 Byte defined = (*lwtVector)[i]; in SzReadHeader2()
1097 file->HasStream = (Byte)((*emptyStreamVector)[i] ? 0 : 1); in SzReadHeader2()
1103 file->CrcDefined = (Byte)(*digestsDefined)[sizeIndex]; in SzReadHeader2()
1111 file->IsDir = (Byte)((*emptyFileVector)[emptyFileIndex] ? 0 : 1); in SzReadHeader2()
1129 Byte *digestsDefined = 0; in SzReadHeader()
1131 Byte *emptyStreamVector = 0; in SzReadHeader()
1132 Byte *emptyFileVector = 0; in SzReadHeader()
1133 Byte *lwtVector = 0; in SzReadHeader()
1154 Byte **digestsDefined, in SzReadAndDecodePackedStreams2()
1200 Byte *digestsDefined = 0; in SzReadAndDecodePackedStreams()
1220 Byte header[k7zStartHeaderSize]; in SzArEx_Open2()
1327 Byte **outBuffer, in SzArEx_Extract()
1367 *outBuffer = (Byte *)IAlloc_Alloc(allocMain, unpackSize); in SzArEx_Extract()
1408 Byte **outBuffer, in SzArEx_ExtractFolder()
1440 *outBuffer = (Byte *)IAlloc_Alloc(allocMain, unpackSize); in SzArEx_ExtractFolder()