OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsJcc
(Results
1 - 2
of
2
) sorted by null
/external/lzma/C/
Bcj2.c
14
#define
IsJcc
(b0, b1) ((b0) == 0x0F && ((b1) & 0xF0) == 0x80)
15
#define IsJ(b0, b1) ((b1 & 0xFE) == 0xE8 ||
IsJcc
(b0, b1))
/external/lzma/CPP/7zip/Compress/
Bcj2Coder.cpp
12
inline bool
IsJcc
(Byte b0, Byte b1) { return (b0 == 0x0F && (b1 & 0xF0) == 0x80); }
13
inline bool IsJ(Byte b0, Byte b1) { return ((b1 & 0xFE) == 0xE8 ||
IsJcc
(b0, b1)); }
125
else if (
IsJcc
(prevByte, b))
Completed in 3746 milliseconds