/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXUtilities.cpp | 72 static void cacheAnnotationFromMD(const Module *m, const GlobalValue *gv) { in cacheAnnotationFromMD() argument 86 if (entity != gv) in cacheAnnotationFromMD() 97 (*annotationCache)[m][gv] = std::move(tmp); in cacheAnnotationFromMD() 100 tmp1[gv] = std::move(tmp); in cacheAnnotationFromMD() 105 bool findOneNVVMAnnotation(const GlobalValue *gv, const std::string &prop, in findOneNVVMAnnotation() argument 108 const Module *m = gv->getParent(); in findOneNVVMAnnotation() 110 cacheAnnotationFromMD(m, gv); in findOneNVVMAnnotation() 111 else if ((*annotationCache)[m].find(gv) == (*annotationCache)[m].end()) in findOneNVVMAnnotation() 112 cacheAnnotationFromMD(m, gv); in findOneNVVMAnnotation() 113 if ((*annotationCache)[m][gv].find(prop) == (*annotationCache)[m][gv].end()) in findOneNVVMAnnotation() [all …]
|
/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, const 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/fec/ |
D | dtest.c | 72 double gv; local 74 gv = normal_rand(0.,100.); 75 if(csum + fabs(gv) > 32767) 77 coeffs[i] = gv; 78 csum += fabs(gv);
|
/external/wayland/doc/doxygen/ |
D | Makefile.am | 2 .SUFFIXES = .gv .png .map 55 diagramssrc := $(wildcard $(diagramsdir)/*.gv) 56 diagrams := $(patsubst $(diagramsdir)/%,xml/%,$(diagramssrc:.gv=.png)) 57 diagram_maps := $(patsubst $(diagramsdir)/%,xml/%,$(diagramssrc:.gv=.map)) 95 xml/%.png: $(diagramsdir)/%.gv | $(CURDIR)/xml 98 xml/%.map: $(diagramsdir)/%.gv | $(CURDIR)/xml
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZConstantPoolValue.cpp | 18 SystemZConstantPoolValue(const GlobalValue *gv, in SystemZConstantPoolValue() argument 20 : MachineConstantPoolValue(gv->getType()), GV(gv), Modifier(modifier) {} in SystemZConstantPoolValue()
|
/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/libabigail/scripts/ |
D | dot_to_svg.sh | 4 for i in *.gv 7 outputsvg=${i//gv/svg}
|
D | dot_to_png.sh | 4 for i in *.gv 7 outputpng=${i//gv/png}
|
/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/icu/icu4c/source/data/lang/ |
D | gv.txt | 4 gv{ 6 gv{"Gaelg"}
|
/external/cronet/third_party/icu/source/data/lang/ |
D | gv.txt | 4 gv{ 6 gv{"Gaelg"}
|
/external/angle/src/libANGLE/renderer/vulkan/shaders/src/third_party/etc_decoder/ |
D | etc_decoder.h | 183 int gv = int(bitfieldExtract(color_payload.x, 6, 7)); in DecodeRGB() local 192 gv = (gv << 1) | (gv >> 6); in DecodeRGB() 199 ivec3 dy = ivec3(rv, gv, bv) - rgb; in DecodeRGB()
|
/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/lib/LTO/ |
D | LTOModule.cpp | 389 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) { in addDefinedDataSymbol() local 390 addObjCClass(gv); in addDefinedDataSymbol() 396 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) { in addDefinedDataSymbol() local 397 addObjCCategory(gv); in addDefinedDataSymbol() 403 if (const GlobalVariable *gv = dyn_cast<GlobalVariable>(v)) { in addDefinedDataSymbol() local 404 addObjCClassRef(gv); in addDefinedDataSymbol() 436 const GlobalVariable *gv = dyn_cast<GlobalVariable>(def); in addDefinedSymbol() local 437 if (gv && gv->isConstant()) in addDefinedSymbol()
|
/external/deqp-deps/glslang/Test/ |
D | hlsl.partialInit.frag | 8 static float4 gv = {0,0,1}; 21 o4.v = gv * gfa[2];
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/ |
D | hlsl.partialInit.frag | 8 static float4 gv = {0,0,1}; 21 o4.v = gv * gfa[2];
|
/external/llvm/test/CodeGen/AMDGPU/ |
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/python/cpython3/Lib/idlelib/ |
D | debugger.py | 329 gv = self.globalsviewer 331 if not gv: 334 if gv: 336 gv.close() 342 gv = self.globalsviewer 349 if lv and gv and ldict is gdict: 353 if gv: 354 gv.load_dict(gdict, force, self.pyshell.interp.rpcclt)
|
/external/python/cpython2/Lib/idlelib/ |
D | Debugger.py | 324 gv = self.globalsviewer 326 if not gv: 329 if gv: 331 gv.close() 337 gv = self.globalsviewer 344 if lv and gv and ldict is gdict: 348 if gv: 349 gv.load_dict(gdict, force, self.pyshell.interp.rpcclt)
|
/external/llvm/examples/HowToUseJIT/ |
D | HowToUseJIT.cpp | 133 GenericValue gv = EE->runFunction(FooF, noargs); in main() local 136 outs() << "Result: " << gv.IntVal << "\n"; in main()
|
/external/llvm/test/CodeGen/WebAssembly/ |
D | inline-asm.ll | 84 ; CHECK: foo gv+37{{$}} 85 @gv = global [0 x i8] zeroinitializer 87 …tail call void asm sideeffect "foo $0", "i"(i8* getelementptr inbounds ([0 x i8], [0 x i8]* @gv, i…
|
/external/llvm/test/Analysis/BasicAA/ |
D | negoffset.ll | 29 @gv = global i32 1 31 ; CHECK-DAG: MayAlias: i32* %p0, i32* @gv 32 ; CHECK-DAG: NoAlias: i32* %p1, i32* @gv 34 %random = call i32* @random.i32(i32* @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/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | gpu_compiler.cc | 1230 for (llvm::GlobalVariable& gv : llvm_module->globals()) { in CompileToTargetBinary() 1231 if (gv.hasName() && gv.isConstant() && gv.hasInitializer() && in CompileToTargetBinary() 1232 gv.hasExternalLinkage()) { in CompileToTargetBinary() 1233 llvm::Constant* initializer = gv.getInitializer(); in CompileToTargetBinary() 1243 const_initializer_map[gv.getName()] = initializer; in CompileToTargetBinary() 1254 for (llvm::GlobalVariable& gv : module->globals()) { in CompileToTargetBinary() 1255 if (gv.hasName() && gv.isConstant() && !gv.hasInitializer() && in CompileToTargetBinary() 1256 const_initializer_map.count(gv.getName()) != 0) { in CompileToTargetBinary() 1257 gv.setInitializer(const_initializer_map[gv.getName()]); in CompileToTargetBinary() 1258 gv.setLinkage(llvm::GlobalValue::InternalLinkage); in CompileToTargetBinary()
|
/external/skia/src/text/gpu/ |
D | GlyphVector.cpp | 33 for (auto [i, gv] : SkMakeEnumerate(glyphs)) { in MakeGlyphs() 34 variants[i] = gv; in MakeGlyphs()
|