Home
last modified time | relevance | path

Searched refs:comparand (Results 1 – 22 of 22) sorted by relevance

/external/v8/src/regexp/
Dregexp-macro-assembler-tracer.cc394 int comparand, Label* if_lt) { in IfRegisterLT() argument
396 register_index, comparand, LabelToInt(if_lt)); in IfRegisterLT()
397 assembler_->IfRegisterLT(register_index, comparand, if_lt); in IfRegisterLT()
410 int comparand, Label* if_ge) { in IfRegisterGE() argument
412 register_index, comparand, LabelToInt(if_ge)); in IfRegisterGE()
413 assembler_->IfRegisterGE(register_index, comparand, if_ge); in IfRegisterGE()
Dregexp-macro-assembler-irregexp.cc396 int comparand, in IfRegisterLT() argument
401 Emit32(comparand); in IfRegisterLT()
407 int comparand, in IfRegisterGE() argument
412 Emit32(comparand); in IfRegisterGE()
Dregexp-macro-assembler-tracer.h60 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
61 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
Dregexp-macro-assembler-irregexp.h90 virtual void IfRegisterLT(int register_index, int comparand, Label* if_lt);
91 virtual void IfRegisterGE(int register_index, int comparand, Label* if_ge);
Dregexp-macro-assembler.h119 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge) = 0;
122 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt) = 0;
/external/v8/src/regexp/mips/
Dregexp-macro-assembler-mips.h66 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
67 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
Dregexp-macro-assembler-mips.cc914 int comparand, in IfRegisterGE() argument
917 BranchOrBacktrack(if_ge, ge, a0, Operand(comparand)); in IfRegisterGE()
922 int comparand, in IfRegisterLT() argument
925 BranchOrBacktrack(if_lt, lt, a0, Operand(comparand)); in IfRegisterLT()
/external/v8/src/regexp/arm/
Dregexp-macro-assembler-arm.h67 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
68 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
Dregexp-macro-assembler-arm.cc895 int comparand, in IfRegisterGE() argument
898 __ cmp(r0, Operand(comparand)); in IfRegisterGE()
904 int comparand, in IfRegisterLT() argument
907 __ cmp(r0, Operand(comparand)); in IfRegisterLT()
/external/v8/src/regexp/x87/
Dregexp-macro-assembler-x87.h65 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
66 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
Dregexp-macro-assembler-x87.cc941 int comparand, in IfRegisterGE() argument
943 __ cmp(register_location(reg), Immediate(comparand)); in IfRegisterGE()
949 int comparand, in IfRegisterLT() argument
951 __ cmp(register_location(reg), Immediate(comparand)); in IfRegisterLT()
/external/v8/src/regexp/ia32/
Dregexp-macro-assembler-ia32.h65 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
66 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
Dregexp-macro-assembler-ia32.cc941 int comparand, in IfRegisterGE() argument
943 __ cmp(register_location(reg), Immediate(comparand)); in IfRegisterGE()
949 int comparand, in IfRegisterLT() argument
951 __ cmp(register_location(reg), Immediate(comparand)); in IfRegisterLT()
/external/v8/src/regexp/ppc/
Dregexp-macro-assembler-ppc.h60 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
61 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
Dregexp-macro-assembler-ppc.cc942 void RegExpMacroAssemblerPPC::IfRegisterGE(int reg, int comparand, in IfRegisterGE() argument
945 __ Cmpi(r3, Operand(comparand), r0); in IfRegisterGE()
950 void RegExpMacroAssemblerPPC::IfRegisterLT(int reg, int comparand, in IfRegisterLT() argument
953 __ Cmpi(r3, Operand(comparand), r0); in IfRegisterLT()
/external/v8/src/regexp/arm64/
Dregexp-macro-assembler-arm64.h72 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
73 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
Dregexp-macro-assembler-arm64.cc1090 void RegExpMacroAssemblerARM64::IfRegisterGE(int reg, int comparand, in IfRegisterGE() argument
1093 CompareAndBranchOrBacktrack(to_compare, comparand, ge, if_ge); in IfRegisterGE()
1097 void RegExpMacroAssemblerARM64::IfRegisterLT(int reg, int comparand, in IfRegisterLT() argument
1100 CompareAndBranchOrBacktrack(to_compare, comparand, lt, if_lt); in IfRegisterLT()
/external/v8/src/regexp/mips64/
Dregexp-macro-assembler-mips64.h66 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
67 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
Dregexp-macro-assembler-mips64.cc954 int comparand, in IfRegisterGE() argument
957 BranchOrBacktrack(if_ge, ge, a0, Operand(comparand)); in IfRegisterGE()
962 int comparand, in IfRegisterLT() argument
965 BranchOrBacktrack(if_lt, lt, a0, Operand(comparand)); in IfRegisterLT()
/external/v8/src/regexp/x64/
Dregexp-macro-assembler-x64.h67 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
68 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
Dregexp-macro-assembler-x64.cc1011 int comparand, in IfRegisterGE() argument
1013 __ cmpp(register_location(reg), Immediate(comparand)); in IfRegisterGE()
1019 int comparand, in IfRegisterLT() argument
1021 __ cmpp(register_location(reg), Immediate(comparand)); in IfRegisterLT()
/external/opencv3/3rdparty/include/opencl/1.2/CL/
Dcl.hpp1023 inline int compare_exchange(volatile int * dest, int exchange, int comparand) in compare_exchange() argument
1029 (long)comparand)); in compare_exchange()
1035 comparand, in compare_exchange()