Searched refs:then_val (Results 1 – 9 of 9) sorted by relevance
/external/gemmlowp/internal/ |
D | fixedpoint_neon.h | 73 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()
|
D | fixedpoint.h | 85 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/ |
D | codegen.ml | 64 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/ |
D | codegen.ml | 82 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/ |
D | codegen.ml | 112 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/ |
D | OCamlLangImpl5.rst | 289 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
|
D | OCamlLangImpl6.rst | 1141 let then_val = codegen_expr then_ in 1160 let incoming = [(then_val, new_then_bb); (else_val, new_else_bb)] in
|
D | OCamlLangImpl7.rst | 1331 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/ |
D | ast_to_hir.cpp | 1434 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()
|