HomeSort by relevance Sort by last modified time
    Searched defs:undef (Results 1 - 25 of 44) sorted by null

1 2

  /external/clang/test/CodeGen/
annotations-var.c 3 // RUN: FileCheck --check-prefix=UNDEF %s < %t1
10 // UNDEF: private unnamed_addr constant [15 x i8] c"undefvar_ann_0\00", section "llvm.metadata"
42 void undef(void) { function
44 // UNDEF-LABEL: define void @undef()
45 // UNDEF: [[UNDEFVAR:%.*]] = alloca i32,
46 // UNDEF-NEXT: [[T0:%.*]] = bitcast i32* [[UNDEFVAR]] to i8*
47 // UNDEF-NEXT: call void @llvm.var.annotation(i8* [[T0]], i8* getelementptr inbounds ([15 x i8], [15 x i8]* @{{.*}}), i8* getelementptr inbounds ({{.*}}), i32 43)
  /external/clang/test/Analysis/
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/
invalid-decl.c 26 UndefinedType undef; // expected-error {{unknown type name 'UndefinedType'}} member in struct:__anon16593
43 void test2(undef); // expected-error {{a parameter list without types is only allowed in a function definition}}
  /external/mesa3d/src/compiler/nir/
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));
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;
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;
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));
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));
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));
  /external/pdfium/fxjs/
fxjs_v8_embeddertest.cpp 111 auto undef = engine()->NewUndefined(); local
112 EXPECT_FALSE(engine()->ToBoolean(undef));
113 EXPECT_EQ(0, engine()->ToInt32(undef));
114 EXPECT_TRUE(std::isnan(engine()->ToDouble(undef)));
115 EXPECT_EQ(L"undefined", engine()->ToWideString(undef));
116 EXPECT_TRUE(engine()->ToObject(undef).IsEmpty());
117 EXPECT_TRUE(engine()->ToArray(undef).IsEmpty());
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
input.go 175 case "undef":
176 in.undef()
461 // #undef processing
462 func (in *Input) undef() { func
465 in.Error("#undef for undefined macro:", name)
470 in.Error("syntax error in #undef for macro:", name)
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
input.go 175 case "undef":
176 in.undef()
461 // #undef processing
462 func (in *Input) undef() { func
465 in.Error("#undef for undefined macro:", name)
470 in.Error("syntax error in #undef for macro:", name)
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_type.h 163 LLVMValueRef undef; member in struct:lp_build_context
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)
    [all...]
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...]
  /external/valgrind/gdbserver_tests/
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)) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
debug.h 41 void (* undef) (unsigned int line, const char *macro); member in struct:gcc_debug_hooks
  /external/mesa3d/src/mesa/drivers/dri/i965/
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/ply/ply/ply/
cpp.py 665 elif name == 'undef':
670 self.undef(args)
858 # undef()
863 def undef(self,tokens): member in class:Preprocessor
    [all...]
  /external/swiftshader/src/Reactor/
Optimizer.cpp 146 auto *undef = context->getConstantUndef(loadData->getType()); local
148 use->replaceSource(i, undef);
  /external/v8/src/parsing/
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());
  /toolchain/binutils/binutils-2.27/ld/
ldcref.c 54 unsigned int undef : 1; member in struct:cref_ref
192 r->undef = FALSE;
196 r->undef = TRUE;
  /external/chromium-libpac/src/
proxy_resolver_v8.cc 561 std::string undef = "undefined"; local
562 android::String8 undef8(undef.c_str());
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
lib.go 2203 func (ctxt *Link) undef() { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
lib.go 2203 func (ctxt *Link) undef() { func
    [all...]

Completed in 2226 milliseconds

1 2