Searched refs:idSize (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A Dtga_utils.cpp21 uint8_t idSize; member in struct:TGAHeader
59 readBinary(stream, header.idSize);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zOut.cpp282 int idSize; local
283 for (idSize = 1; idSize < sizeof(id); idSize++)
284 if ((id >> (8 * idSize)) == 0)
287 for (int t = idSize - 1; t >= 0 ; t--, id >>= 8)
290 b = (Byte)(idSize & 0xF);
295 WriteBytes(longID, idSize);
H A D7zIn.cpp401 int idSize = (mainByte & 0xF); local
403 ReadBytes(longID, idSize);
404 if (idSize > 8)
407 for (int j = 0; j < idSize; j++)
408 id |= (UInt64)longID[idSize - 1 - j] << (8 * j);
/external/chromium_org/third_party/lzma_sdk/
H A D7zIn.c556 unsigned idSize, j; local
559 idSize = (unsigned)(mainByte & 0xF);
560 RINOK(SzReadBytes(sd, longID, idSize));
561 if (idSize > sizeof(coder->MethodID))
564 for (j = 0; j < idSize; j++)
565 coder->MethodID |= (UInt64)longID[idSize - 1 - j] << (8 * j);
/external/lzma/C/
H A D7zIn.c556 unsigned idSize, j; local
559 idSize = (unsigned)(mainByte & 0xF);
560 RINOK(SzReadBytes(sd, longID, idSize));
561 if (idSize > sizeof(coder->MethodID))
564 for (j = 0; j < idSize; j++)
565 coder->MethodID |= (UInt64)longID[idSize - 1 - j] << (8 * j);

Completed in 123 milliseconds