/external/llvm/lib/Target/NVPTX/ |
D | NVPTXUtilities.cpp | 69 static void cacheAnnotationFromMD(const Module *m, const GlobalValue *gv) { in cacheAnnotationFromMD() argument 83 if (entity != gv) in cacheAnnotationFromMD() 94 (*annotationCache)[m][gv] = std::move(tmp); in cacheAnnotationFromMD() 97 tmp1[gv] = std::move(tmp); in cacheAnnotationFromMD() 102 bool llvm::findOneNVVMAnnotation(const GlobalValue *gv, std::string prop, in findOneNVVMAnnotation() argument 105 const Module *m = gv->getParent(); in findOneNVVMAnnotation() 107 cacheAnnotationFromMD(m, gv); in findOneNVVMAnnotation() 108 else if ((*annotationCache)[m].find(gv) == (*annotationCache)[m].end()) in findOneNVVMAnnotation() 109 cacheAnnotationFromMD(m, gv); in findOneNVVMAnnotation() 110 if ((*annotationCache)[m][gv].find(prop) == (*annotationCache)[m][gv].end()) in findOneNVVMAnnotation() [all …]
|
/external/icu/icu4c/source/data/lang/ |
D | gv.txt | 6 // * Source File: <path>/common/main/gv.xml 9 gv{ 11 gv{"Gaelg"}
|
D | yi.txt | 69 gv{"מאַנקס"}
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZConstantPoolValue.cpp | 19 SystemZConstantPoolValue(const GlobalValue *gv, in SystemZConstantPoolValue() argument 21 : MachineConstantPoolValue(gv->getType()), GV(gv), Modifier(modifier) {} in SystemZConstantPoolValue()
|
/external/icu/icu4c/source/data/curr/ |
D | gv.txt | 6 // * Source File: <path>/common/main/gv.xml 9 gv{
|
/external/icu/icu4c/source/data/unit/ |
D | gv.txt | 6 // * Source File: <path>/common/main/gv.xml 9 gv{
|
/external/icu/icu4c/source/data/zone/ |
D | gv.txt | 6 // * Source File: <path>/common/main/gv.xml 9 gv{
|
/external/icu/icu4c/source/data/region/ |
D | gv.txt | 6 // * Source File: <path>/common/main/gv.xml 9 gv{
|
/external/nist-sip/java/gov/nist/core/ |
D | NameValue.java | 165 GenericObject gv = (GenericObject) value; in encode() local 167 gv.encode(buffer); in encode() 193 GenericObject gv = (GenericObject) value; in encode() local 194 gv.encode(buffer); in encode()
|
/external/eigen/bench/ |
D | spmv.cpp | 194 std::vector<Scalar> gv(cols), gres(rows); in main() local 195 Map<Matrix<Scalar,Dynamic,1> >(&gv[0], cols) = dv; in main() 198 SPMV_BENCH(gmm::mult(gm, gv, gres)); in main() 201 SPMV_BENCH(gmm::mult(gmm::transposed(gm), gv, gres)); in main()
|
/external/llvm/test/CodeGen/R600/ |
D | large-constant-initializer.ll | 5 @gv = external unnamed_addr addrspace(2) constant [239 x i32], align 4 8 …%val = load i32, i32 addrspace(2)* getelementptr ([239 x i32], [239 x i32] addrspace(2)* @gv, i64 …
|
/external/llvm/lib/LTO/ |
D | LTOModule.cpp | 396 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) { in addDefinedDataSymbol() local 397 addObjCClass(gv); in addDefinedDataSymbol() 403 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) { in addDefinedDataSymbol() local 404 addObjCCategory(gv); in addDefinedDataSymbol() 410 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) { in addDefinedDataSymbol() local 411 addObjCClassRef(gv); in addDefinedDataSymbol() 443 const GlobalVariable *gv = dyn_cast<GlobalVariable>(def); in addDefinedSymbol() local 444 if (gv && gv->isConstant()) in addDefinedSymbol()
|
/external/llvm/examples/HowToUseJIT/ |
D | HowToUseJIT.cpp | 126 GenericValue gv = EE->runFunction(FooF, noargs); in main() local 129 outs() << "Result: " << gv.IntVal << "\n"; in main()
|
/external/icu/icu4c/source/data/locales/ |
D | gv.txt | 6 // * Source File: <path>/common/main/gv.xml 9 gv{
|
/external/llvm/bindings/ocaml/executionengine/ |
D | llvm_executionengine.mli | 73 (** [add_global_mapping gv ptr ee] tells the execution engine [ee] that 74 the global [gv] is at the specified location [ptr], which must outlive 75 [gv] and [ee]. 76 All uses of [gv] in the compiled code will refer to [ptr]. *)
|
/external/llvm/test/Assembler/ |
D | gv-invalid-type.ll | 3 @gv = global metadata undef
|
/external/llvm/test/Transforms/CorrelatedValuePropagation/ |
D | basic.ll | 44 @gv = internal constant i8 7 48 %cond = icmp eq i8* %a, @gv 55 ; CHECK: %should_be_const = load i8, i8* @gv
|
/external/llvm/examples/ParallelJIT/ |
D | ParallelJIT.cpp | 236 GenericValue gv = p->EE->runFunction(p->F, Args); in callFunc() local 238 return (void*)(intptr_t)gv.IntVal.getZExtValue(); in callFunc()
|
/external/lldb/source/Expression/ |
D | IRForTarget.cpp | 1032 GlobalVariable *gv = dyn_cast<GlobalVariable>(vi->second); in RewriteObjCConstStrings() local 1034 if (!gv) in RewriteObjCConstStrings() 1045 gv->eraseFromParent(); in RewriteObjCConstStrings() 1853 GlobalVariable *gv = gi; in ReplaceStrings() local 1855 if (!gv->hasInitializer()) in ReplaceStrings() 1858 Constant *gc = gv->getInitializer(); in ReplaceStrings() 1896 offsets[gv] = m_data_allocator.GetStream().GetSize(); in ReplaceStrings() 1907 GlobalVariable *gv = oi->first; in ReplaceStrings() local 1913 …log->Printf("Replacing GV %s with %s", PrintValue(gv).c_str(), PrintValue(new_initializer).c_str()… in ReplaceStrings() 1915 for (GlobalVariable::use_iterator ui = gv->use_begin(), ue = gv->use_end(); in ReplaceStrings() [all …]
|
/external/robolectric/ |
D | .pairs | 13 gv: Gregg Van Hove; gvanhove
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm.mli | 1323 (** [delete_global gv] destroys the global variable [gv]. 1333 (** [global_succ gv] returns the global variable list position succeeding 1334 [Before gv]. 1352 (** [global_pred gv] returns the global variable list position preceding 1353 [After gv]. 1365 (** [is_global_constant gv] returns [true] if the global variabile [gv] is a 1370 (** [set_global_constant c gv] sets the global variable [gv] to be a constant if 1375 (** [global_initializer gv] returns the initializer for the global variable 1376 [gv]. See the method [llvm::GlobalVariable::getInitializer]. *) 1379 (** [set_initializer c gv] sets the initializer for the global variable [all …]
|
/external/llvm/test/Linker/ |
D | 2011-08-04-Metadata2.ll | 20 !llvm.dbg.gv = !{!5}
|
/external/llvm/test/Transforms/StripSymbols/ |
D | 2010-06-30-StripDebug.ll | 19 !llvm.dbg.gv = !{!8}
|
/external/llvm/test/CodeGen/X86/ |
D | compact-unwind.ll | 20 @gv = external global i32 42 %tmp20 = load i32, i32* @gv, align 4
|
/external/llvm/examples/BrainF/ |
D | BrainFDriver.cpp | 147 GenericValue gv = ee->runFunction(brainf_func, args); in main() local
|