OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsJ
(Results
1 - 4
of
4
) sorted by null
/external/lzma/C/
Bcj2.c
15
#define
IsJ
(b0, b1) ((b1 & 0xFE) == 0xE8 || IsJcc(b0, b1))
74
if (
IsJ
(prevByte, b))
/external/lzma/CPP/7zip/Compress/
Bcj2Coder.cpp
13
inline bool
IsJ
(Byte b0, Byte b1) { return ((b1 & 0xFE) == 0xE8 || IsJcc(b0, b1)); }
145
if (!
IsJ
(prevByte, b))
320
if (
IsJ
(prevByte, b))
/external/v8/src/mips/
assembler-mips.cc
556
bool Assembler::
IsJ
(Instr instr) {
[
all
...]
/external/v8/src/mips64/
assembler-mips64.cc
530
bool Assembler::
IsJ
(Instr instr) {
700
DCHECK(IsBranch(instr) ||
IsJ
(instr) || IsJal(instr) || IsLui(instr));
730
DCHECK(
IsJ
(instr) || IsJal(instr));
797
} else if (
IsJ
(instr) || IsJal(instr)) {
805
int32_t mark =
IsJ
(instr) ? kJRawMark : kJalRawMark;
880
DCHECK(
IsJ
(instr) || IsJal(instr) || IsLui(instr) ||
[
all
...]
Completed in 609 milliseconds