Home
last modified time | relevance | path

Searched refs:IsJcc (Results 1 – 2 of 2) sorted by relevance

/external/lzma/C/
DBcj2.c14 #define IsJcc(b0, b1) ((b0) == 0x0F && ((b1) & 0xF0) == 0x80) macro
15 #define IsJ(b0, b1) ((b1 & 0xFE) == 0xE8 || IsJcc(b0, b1))
/external/lzma/CPP/7zip/Compress/
DBcj2Coder.cpp12 inline bool IsJcc(Byte b0, Byte b1) { return (b0 == 0x0F && (b1 & 0xF0) == 0x80); } in IsJcc() function
13 inline bool IsJ(Byte b0, Byte b1) { return ((b1 & 0xFE) == 0xE8 || IsJcc(b0, b1)); } in IsJ()
125 else if (IsJcc(prevByte, b)) in CodeReal()