/external/clang/test/CodeGen/ |
H A D | annotations-var.c | 42 void undef(void) { function 44 // UNDEF-LABEL: define void @undef()
|
/external/clang/test/Analysis/ |
H A D | logical-ops.c | 36 int undef(void) {} // expected-warning{{control reaches end of non-void function}} function 37 void useUndef(void) { 0 || undef(); }
|
/external/clang/test/Sema/ |
H A D | invalid-decl.c | 26 UndefinedType undef; // expected-error {{unknown type name 'UndefinedType'}} member in struct:__anon2907 43 void test2(undef); // expected-error {{a parameter list without types is only allowed in a function definition}}
|
/external/mesa3d/src/compiler/nir/ |
H A D | nir_opt_undef.c | 33 * Turn conditional selects between an undef and some other value into a move 75 * Replace vecN(undef, undef, ...) with a single undef. 96 nir_ssa_def *undef = nir_ssa_undef(b, alu->dest.dest.ssa.num_components, local 98 nir_ssa_def_rewrite_uses(&alu->dest.dest.ssa, nir_src_for_ssa(undef));
|
H A D | nir_phi_builder.c | 186 * case, the value is undefined so we need an SSA undef. 188 nir_ssa_undef_instr *undef = local 193 &undef->instr); 194 def = &undef->def;
|
H A D | nir_lower_vars_to_ssa.c | 505 nir_ssa_undef_instr *undef = local 510 nir_instr_insert_before(&intrin->instr, &undef->instr); 514 nir_src_for_ssa(&undef->def));
|
H A D | nir_builder.h | 87 nir_ssa_undef_instr *undef = local 89 if (!undef) 92 nir_instr_insert(nir_before_cf_list(&build->impl->body), &undef->instr); 94 return &undef->def;
|
H A D | nir_control_flow.c | 247 nir_ssa_undef_instr *undef = local 251 nir_instr_insert_before_cf_list(&impl->body, &undef->instr); 256 src->src.ssa = &undef->def; 258 list_addtail(&src->src.use_link, &undef->def.uses); 608 nir_ssa_undef_instr *undef = local 611 nir_instr_insert_before_cf_list(&impl->body, &undef->instr); 612 nir_ssa_def_rewrite_uses(def, nir_src_for_ssa(&undef->def));
|
H A D | nir_from_ssa.c | 956 nir_ssa_undef_instr *undef = nir_instr_as_ssa_undef(instr); local 957 nir_register *reg = create_reg_for_ssa_def(&undef->def, state.impl); 958 nir_ssa_def_rewrite_uses(&undef->def, nir_src_for_reg(reg));
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_type.h | 163 LLVMValueRef undef; member in struct:lp_build_context
|
H A D | lp_bld_pack.c | 996 LLVMValueRef undef; local 1004 undef = LLVMGetUndef(LLVMVectorType(type, dst_length)); 1005 return LLVMBuildInsertElement(gallivm->builder, undef, src, lp_build_const_int32(gallivm, 0), ""); 1008 undef = LLVMGetUndef(type); 1026 return LLVMBuildShuffleVector(gallivm->builder, src, undef, LLVMConstVector(elems, dst_length), "");
|
H A D | lp_bld_swizzle.c | 60 LLVMValueRef undef = LLVMGetUndef(vec_type); local 67 res = LLVMBuildInsertElement(builder, undef, scalar, LLVMConstNull(i32_type), ""); 68 res = LLVMBuildShuffleVector(builder, res, undef, LLVMConstNull(i32_vec_type), ""); 165 if(a == bld->undef || a == bld->zero || a == bld->one || num_channels == 1) 185 return LLVMBuildShuffleVector(builder, a, bld->undef, LLVMConstVector(shuffles, n), ""); 385 return bld->undef; 388 return bld->undef; 397 LLVMValueRef undef = LLVMGetUndef(lp_build_elem_type(bld->gallivm, type)); local 441 aux[i] = undef; 588 return bld->undef; 740 LLVMValueRef undef = LLVMGetUndef(i32t); local [all...] |
H A D | lp_bld_arit.c | 548 if(a == bld->undef || b == bld->undef) 549 return bld->undef; 756 * sumx0-x3,sumy0-y3,sumz0-z3,undef,sumx4-x7,sumy4-y7,sumz4z7,undef 847 if(a == bld->undef || b == bld->undef) 848 return bld->undef; 1042 if(a == bld->undef || b == bld->undef) 1997 LLVMValueRef undef; local [all...] |
/external/ply/ply/ply/ |
H A D | cpp.py | 665 elif name == 'undef': 670 self.undef(args) 858 # undef() 863 def undef(self,tokens): member in class:Preprocessor
|
/external/swiftshader/src/Reactor/ |
H A D | Optimizer.cpp | 146 auto *undef = context->getConstantUndef(loadData->getType()); local 148 use->replaceSource(i, undef);
|
/external/valgrind/gdbserver_tests/ |
H A D | t.c | 109 char undef = '?'; local 111 VALGRIND_MAKE_MEM_UNDEFINED(&undef, 1); 115 undefined[i] = undef; 116 *(char*)&int_und = undef; 148 if ((*(&undef + i*4000) == 0) || (*(&undef - i*4000) == 0)) {
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
H A D | brw_nir.c | 187 nir_ssa_def *undef = nir_ssa_undef(b, 1, 32); local 188 nir_ssa_def_rewrite_uses(&intr->dest.ssa, nir_src_for_ssa(undef));
|
/external/v8/src/parsing/ |
H A D | rewriter.cc | 106 #undef DEF_VISIT 116 Expression* undef = factory()->NewUndefinedLiteral(kNoSourcePosition); local 118 undef, kNoSourcePosition); 345 #undef DEF_VISIT 352 #undef DEF_VISIT 426 Expression* undef = node_factory->NewUndefinedLiteral(kNoSourcePosition); local 428 processor.SetResult(undef), expr->position());
|
/external/chromium-libpac/src/ |
H A D | proxy_resolver_v8.cc | 561 std::string undef = "undefined"; local 562 android::String8 undef8(undef.c_str());
|
/external/clang/test/SemaCXX/ |
H A D | nested-name-spec.cpp | 16 ::A::ax::undef ex3; // expected-error {{'ax' is not a class, namespace, or enumeration}} 57 A::C::undef = 0; // expected-error {{no member named 'undef'}} member in class:A::C 67 struct A::undef; // expected-error {{no struct named 'undef' in namespace 'A'}} member in class:A 99 void f4(undef::C); // expected-error {{use of undeclared identifier 'undef'}}
|
/external/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_shader.h | 272 value *undef; member in class:r600_sb::shader
|
/external/mesa3d/src/gallium/drivers/freedreno/ir3/ |
H A D | ir3_compiler_nir.c | 1333 emit_undef(struct ir3_compile *ctx, nir_ssa_undef_instr *undef) argument 1335 struct ir3_instruction **dst = get_dst_ssa(ctx, &undef->def, 1336 undef->def.num_components); 1340 for (int i = 0; i < undef->def.num_components; i++)
|
/external/mesa3d/src/mesa/main/ |
H A D | ffvertex_prog.c | 325 static const struct ureg undef = { variable in typeref:struct:ureg 623 emit_op3fn(p, op, dst, mask, src0, src1, undef, __func__, __LINE__) 626 emit_op3fn(p, op, dst, mask, src0, undef, undef, __func__, __LINE__) 940 struct ureg att = undef; 1030 struct ureg _col0 = undef, _col1 = undef; 1031 struct ureg _bfc0 = undef, _bfc1 = undef; 1109 struct ureg half = undef; [all...] |
/external/mesa3d/src/mesa/program/ |
H A D | ir_to_mesa.cpp | 482 src_reg undef = undef_src; local 484 undef.swizzle = SWIZZLE_XXXX; 486 emit_scalar(ir, op, dst, src0, undef);
|
/external/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_qir.h | 500 struct qreg undef; member in struct:vc4_compile 634 return qir_emit_def(c, qir_inst(QOP_##name, c->undef, \ 635 c->undef, c->undef)); \ 641 c->undef, c->undef)); \ 648 return qir_emit_def(c, qir_inst(QOP_##name, c->undef, \ 649 a, c->undef)); \ 656 c->undef)); \ 663 return qir_emit_def(c, qir_inst(QOP_##name, c->undef, [all...] |