/external/python/cpython3/Tools/scripts/ |
D | objgraph.py | 127 undefs = {} 131 store(undefs, ext, filename) 132 elist = sorted(undefs.keys()) 135 flist = sorted(undefs[ext])
|
D | ifdef.py | 33 undefs = [] variable 41 undefs.append(a) 81 elif word in undefs:
|
/external/python/cpython2/Tools/scripts/ |
D | objgraph.py | 129 undefs = {} 133 store(undefs, ext, filename) 134 elist = undefs.keys() 138 flist = undefs[ext]
|
D | ifdef.py | 33 undefs = [] variable 41 undefs.append(a) 82 elif word in undefs:
|
/external/llvm-project/lld/test/ELF/ |
D | zdefs.s | 12 ## -z undefs allows unresolved references. 13 # RUN: ld.lld -z defs -z undefs -shared %t.o -o /dev/null 2>&1 | count 0
|
/external/zstd/contrib/freestanding_lib/ |
D | freestanding.py | 60 def __init__(self, defs: [(str, Optional[str])], replaces: [(str, str)], undefs: [str]): 68 self._undefs = set(undefs) 433 undefs: [str], excludes: [str] 445 self._undefs = undefs 651 if "ZSTD_MULTITHREAD" not in args.undefs: 652 args.undefs.append("ZSTD_MULTITHREAD") 656 if name in args.undefs: 661 if name in args.undefs or name in args.defs: 690 args.undefs,
|
/external/llvm-project/lld/test/ELF/lto/ |
D | relocation-model-pic.ll | 7 ; RUN: ld.lld %t.o -o %t -save-temps --export-dynamic -pie -z undefs 10 ; RUN: ld.lld %t.o -o %t -save-temps --export-dynamic -z undefs
|
/external/llvm/test/CodeGen/SystemZ/ |
D | vec-const-13.ll | 117 ; Retest f1 with arbitrary undefs instead of 0s. 128 ; Try a case where we want consistent undefs to be treated as 0. 150 ; Try a case where we want consistent undefs to be treated as -1. 172 ; Repeat f9 with arbitrary undefs. 183 ; Try a case where we want some consistent undefs to be treated as 0
|
D | vec-const-04.ll | 29 ; Test that undefs are treated as zero (mask 0x8c00).
|
D | vec-const-06.ll | 29 ; Test that undefs are treated as zero (mask 0x8c00).
|
D | vec-const-10.ll | 155 ; Repeat f14 with undefs optimistically treated as 32767. 163 ; Repeat f18 with undefs optimistically treated as -2.
|
D | vec-const-12.ll | 155 ; Repeat f14 with undefs optimistically treated as 32767. 163 ; Repeat f18 with undefs optimistically treated as -2.
|
D | vec-const-09.ll | 155 ; Repeat f14 with undefs optimistically treated as 0, 32767. 163 ; Repeat f18 with undefs optimistically treated as -2, -1.
|
/external/llvm-project/llvm/test/CodeGen/SystemZ/ |
D | vec-const-13.ll | 117 ; Retest f1 with arbitrary undefs instead of 0s. 128 ; Try a case where we want consistent undefs to be treated as 0. 150 ; Try a case where we want consistent undefs to be treated as -1. 172 ; Repeat f9 with arbitrary undefs. 183 ; Try a case where we want some consistent undefs to be treated as 0
|
D | vec-const-04.ll | 29 ; Test that undefs are treated as zero (mask 0x8c00).
|
D | vec-const-06.ll | 29 ; Test that undefs are treated as zero (mask 0x8c00).
|
D | vec-const-10.ll | 155 ; Repeat f14 with undefs optimistically treated as 32767. 163 ; Repeat f18 with undefs optimistically treated as -2.
|
D | vec-const-09.ll | 155 ; Repeat f14 with undefs optimistically treated as 0, 32767. 163 ; Repeat f18 with undefs optimistically treated as -2, -1.
|
D | vec-const-12.ll | 155 ; Repeat f14 with undefs optimistically treated as 32767. 163 ; Repeat f18 with undefs optimistically treated as -2.
|
D | vec-const-03.ll | 29 ; Test that undefs are treated as zero (mask 0x8076).
|
/external/llvm-project/lld/COFF/ |
D | SymbolTable.cpp | 332 reportProblemSymbols(const SmallPtrSetImpl<Symbol *> &undefs, in reportProblemSymbols() argument 339 if (undefs.empty() && (!localImports || localImports->empty())) in reportProblemSymbols() 343 if (undefs.count(b)) in reportProblemSymbols() 360 if (undefs.count(sym)) { in reportProblemSymbols() 389 SmallPtrSet<Symbol *, 8> undefs; in reportUnresolvable() local 407 undefs.insert(sym); in reportUnresolvable() 410 reportProblemSymbols(undefs, in reportUnresolvable() 416 SmallPtrSet<Symbol *, 8> undefs; in resolveRemainingUndefines() local 470 undefs.insert(sym); in resolveRemainingUndefines() 474 undefs, config->warnLocallyDefinedImported ? &localImports : nullptr, in resolveRemainingUndefines()
|
/external/llvm/lib/LTO/ |
D | LTOCodeGenerator.cpp | 139 const std::vector<const char *> &undefs = Mod->getAsmUndefinedRefs(); in addModule() local 140 for (int i = 0, e = undefs.size(); i != e; ++i) in addModule() 141 AsmUndefinedRefs[undefs[i]] = 1; in addModule()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/ |
D | LTOCodeGenerator.cpp | 152 const std::vector<StringRef> &undefs = Mod->getAsmUndefinedRefs(); in setAsmUndefinedRefs() local 153 for (int i = 0, e = undefs.size(); i != e; ++i) in setAsmUndefinedRefs() 154 AsmUndefinedRefs.insert(undefs[i]); in setAsmUndefinedRefs()
|
/external/llvm-project/llvm/lib/LTO/ |
D | LTOCodeGenerator.cpp | 164 const std::vector<StringRef> &undefs = Mod->getAsmUndefinedRefs(); in setAsmUndefinedRefs() local 165 for (int i = 0, e = undefs.size(); i != e; ++i) in setAsmUndefinedRefs() 166 AsmUndefinedRefs.insert(undefs[i]); in setAsmUndefinedRefs()
|
/external/mesa3d/src/compiler/nir/tests/ |
D | serialize_tests.cpp | 149 nir_ssa_def *undefs[] = { in TEST_P() local 156 nir_ssa_def *vec = nir_vec(b, undefs, GetParam()); in TEST_P()
|