Home
last modified time | relevance | path

Searched refs:then_val (Results 1 – 9 of 9) sorted by relevance

/external/gemmlowp/internal/
Dfixedpoint_neon.h73 inline int32x4_t SelectUsingMask(int32x4_t if_mask, int32x4_t then_val, in SelectUsingMask() argument
75 return vbslq_s32(vreinterpretq_u32_s32(if_mask), then_val, else_val); in SelectUsingMask()
Dfixedpoint.h85 tIntegerType SelectUsingMask(tIntegerType if_mask, tIntegerType then_val, in SelectUsingMask() argument
87 return BitXor(BitAnd(if_mask, then_val), BitAnd(BitNot(if_mask), else_val)); in SelectUsingMask()
374 tRawType if_mask, FixedPoint<tRawType, tIntegerBits> then_val,
377 SelectUsingMask(if_mask, then_val.raw(), else_val.raw()));
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
Dcodegen.ml64 let then_val = codegen_expr then_ in
83 let incoming = [(then_val, new_then_bb); (else_val, new_else_bb)] in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
Dcodegen.ml82 let then_val = codegen_expr then_ in
101 let incoming = [(then_val, new_then_bb); (else_val, new_else_bb)] in
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
Dcodegen.ml112 let then_val = codegen_expr then_ in
131 let incoming = [(then_val, new_then_bb); (else_val, new_else_bb)] in
/external/llvm/docs/tutorial/
DOCamlLangImpl5.rst289 let then_val = codegen_expr then_ in
335 let incoming = [(then_val, new_then_bb); (else_val, new_else_bb)] in
1076 let then_val = codegen_expr then_ in
1095 let incoming = [(then_val, new_then_bb); (else_val, new_else_bb)] in
DOCamlLangImpl6.rst1141 let then_val = codegen_expr then_ in
1160 let incoming = [(then_val, new_then_bb); (else_val, new_else_bb)] in
DOCamlLangImpl7.rst1331 let then_val = codegen_expr then_ in
1350 let incoming = [(then_val, new_then_bb); (else_val, new_else_bb)] in
/external/mesa3d/src/glsl/
Dast_to_hir.cpp1434 ir_constant *then_val = op[1]->constant_expression_value(); in hir() local
1439 && (cond_val != NULL) && (then_val != NULL) && (else_val != NULL)) { in hir()
1440 result = (cond_val->value.b[0]) ? then_val : else_val; in hir()