Searched refs:is_false (Results 1 - 10 of 10) sorted by relevance

/external/toybox/toys/pending/
H A Dexpr.c100 static int is_false(struct value *v) function
164 case OR: if (is_false(ret)) *ret = *rhs; break;
165 case AND: if (is_false(ret) || is_false(rhs)) assign_int(ret, 0); break;
258 toys.exitval = is_false(&ret);
/external/adhd/cras/src/server/
H A Dcras_expr.c153 int is_false; local
162 is_false = (value->type == CRAS_EXPR_VALUE_TYPE_BOOLEAN &&
164 value_set_boolean(result, is_false);
/external/v8/src/crankshaft/arm/
H A Dlithium-codegen-arm.cc2395 Label* is_false,
2404 __ JumpIfSmi(input, is_false);
2411 __ b(hs, is_false);
2423 __ b(ne, is_false);
2394 EmitClassOfTest(Label* is_true, Label* is_false, Handle<String>class_name, Register input, Register temp, Register temp2) argument
/external/v8/src/crankshaft/ia32/
H A Dlithium-codegen-ia32.cc2194 Label* is_false,
2202 __ JumpIfSmi(input, is_false);
2209 __ j(above_equal, is_false);
2220 __ j(not_equal, is_false);
2193 EmitClassOfTest(Label* is_true, Label* is_false, Handle<String>class_name, Register input, Register temp, Register temp2) argument
/external/v8/src/crankshaft/mips/
H A Dlithium-codegen-mips.cc2305 Label* is_false,
2314 __ JumpIfSmi(input, is_false);
2320 __ Branch(is_false, hs, temp2, Operand(FIRST_FUNCTION_TYPE));
2332 __ Branch(is_false, ne, instance_type, Operand(JS_FUNCTION_TYPE));
2304 EmitClassOfTest(Label* is_true, Label* is_false, Handle<String>class_name, Register input, Register temp, Register temp2) argument
/external/v8/src/crankshaft/mips64/
H A Dlithium-codegen-mips64.cc2426 Label* is_false,
2435 __ JumpIfSmi(input, is_false);
2442 __ Branch(is_false, hs, temp2, Operand(FIRST_FUNCTION_TYPE));
2455 __ Branch(is_false, ne, instance_type, Operand(JS_FUNCTION_TYPE));
2425 EmitClassOfTest(Label* is_true, Label* is_false, Handle<String>class_name, Register input, Register temp, Register temp2) argument
/external/v8/src/crankshaft/ppc/
H A Dlithium-codegen-ppc.cc2494 void LCodeGen::EmitClassOfTest(Label* is_true, Label* is_false, argument
2501 __ JumpIfSmi(input, is_false);
2508 __ bge(is_false);
2520 __ bne(is_false);
/external/v8/src/crankshaft/s390/
H A Dlithium-codegen-s390.cc2484 void LCodeGen::EmitClassOfTest(Label* is_true, Label* is_false, argument
2491 __ JumpIfSmi(input, is_false);
2498 __ bge(is_false);
2510 __ bne(is_false);
/external/v8/src/crankshaft/x64/
H A Dlithium-codegen-x64.cc2341 Label* is_false,
2350 __ JumpIfSmi(input, is_false);
2357 __ j(above_equal, is_false);
2368 __ j(not_equal, is_false);
2340 EmitClassOfTest(Label* is_true, Label* is_false, Handle<String> class_name, Register input, Register temp, Register temp2) argument
/external/v8/src/crankshaft/x87/
H A Dlithium-codegen-x87.cc2479 Label* is_false,
2487 __ JumpIfSmi(input, is_false);
2494 __ j(above_equal, is_false);
2505 __ j(not_equal, is_false);
2478 EmitClassOfTest(Label* is_true, Label* is_false, Handle<String>class_name, Register input, Register temp, Register temp2) argument

Completed in 330 milliseconds