OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mainByte
(Results
1 - 3
of
3
) sorted by null
/external/lzma/CPP/7zip/Archive/7z/
7zHandler.cpp
275
Byte
mainByte
= inByte.ReadByte();
276
unsigned idSize = (
mainByte
& 0xF);
284
if ((
mainByte
& 0x20) != 0)
383
Byte
mainByte
= inByte.ReadByte();
384
unsigned idSize = (
mainByte
& 0xF);
391
if ((
mainByte
& 0x10) != 0)
399
if ((
mainByte
& 0x20) != 0)
7zIn.cpp
429
Byte
mainByte
= ReadByte();
430
if ((
mainByte
& 0xC0) != 0)
432
unsigned idSize = (
mainByte
& 0xF);
442
if ((
mainByte
& 0x10) != 0)
452
if ((
mainByte
& 0x20) != 0)
713
Byte
mainByte
= inByte->ReadByte();
714
if ((
mainByte
& 0xC0) != 0)
716
unsigned idSize = (
mainByte
& 0xF);
730
if ((
mainByte
& 0x10) != 0)
741
if ((
mainByte
& 0x20) != 0)
[
all
...]
/external/lzma/C/
7zArcIn.c
505
Byte
mainByte
;
509
RINOK(SzReadByte(sd, &
mainByte
));
510
if ((
mainByte
& 0xC0) != 0)
512
idSize = (unsigned)(
mainByte
& 0xF);
533
if ((
mainByte
& 0x10) != 0)
545
if ((
mainByte
& 0x20) != 0)
715
Byte
mainByte
;
719
SZ_READ_BYTE_2(
mainByte
);
720
if ((
mainByte
& 0xC0) != 0)
722
idSize = (
mainByte
& 0xF);
[
all
...]
Completed in 67 milliseconds