Searched refs:is_true (Results 1 - 7 of 7) sorted by relevance
/external/boringssl/src/crypto/ |
H A D | constant_time_test.c | 60 int is_true) { 62 if (is_true && c != CONSTTIME_TRUE) { 67 } else if (!is_true && c != CONSTTIME_FALSE) { 78 int is_true) { 80 if (is_true && c != CONSTTIME_TRUE_8) { 85 } else if (!is_true && c != CONSTTIME_FALSE_8) { 58 test_binary_op(unsigned int (*op)(unsigned int a, unsigned int b), const char* op_name, unsigned int a, unsigned int b, int is_true) argument 76 test_binary_op_8(uint8_t (op)unsigned int a, unsigned int b), const char* op_name, unsigned int a, unsigned int b, int is_true) argument
|
/external/v8/src/arm/ |
H A D | lithium-codegen-arm.cc | 2680 void LCodeGen::EmitClassOfTest(Label* is_true, argument 2703 __ b(eq, is_true); 2705 __ b(eq, is_true); 2724 __ b(ne, is_true);
|
/external/v8/src/ia32/ |
H A D | lithium-codegen-ia32.cc | 2523 void LCodeGen::EmitClassOfTest(Label* is_true, argument 2545 __ j(equal, is_true); 2547 __ j(equal, is_true); 2565 __ j(not_equal, is_true);
|
/external/v8/src/mips/ |
H A D | lithium-codegen-mips.cc | 2585 void LCodeGen::EmitClassOfTest(Label* is_true, argument 2609 __ Branch(is_true, eq, temp2, Operand(FIRST_SPEC_OBJECT_TYPE)); 2610 __ Branch(is_true, eq, temp2, Operand(LAST_SPEC_OBJECT_TYPE)); 2627 __ Branch(is_true, ne, temp2, Operand(JS_FUNCTION_TYPE));
|
/external/v8/src/x64/ |
H A D | lithium-codegen-x64.cc | 2569 void LCodeGen::EmitClassOfTest(Label* is_true, argument 2592 __ j(equal, is_true); 2594 __ j(equal, is_true); 2613 __ j(not_equal, is_true);
|
/external/v8/src/mips64/ |
H A D | lithium-codegen-mips64.cc | 2555 void LCodeGen::EmitClassOfTest(Label* is_true, argument 2579 __ Branch(is_true, eq, temp2, Operand(FIRST_SPEC_OBJECT_TYPE)); 2580 __ Branch(is_true, eq, temp2, Operand(LAST_SPEC_OBJECT_TYPE)); 2597 __ Branch(is_true, ne, temp2, Operand(JS_FUNCTION_TYPE));
|
/external/v8/src/x87/ |
H A D | lithium-codegen-x87.cc | 2819 void LCodeGen::EmitClassOfTest(Label* is_true, argument 2841 __ j(equal, is_true); 2843 __ j(equal, is_true); 2861 __ j(not_equal, is_true);
|
Completed in 167 milliseconds