Searched refs:uniq (Results 1 – 10 of 10) sorted by relevance
/llvm-project/flang/lib/Optimizer/Support/ |
H A D | InternalNames.cpp | 61 static std::string readName(llvm::StringRef uniq, std::size_t &i, in readName() 66 for (i = init; i < end && (uniq[i] < 'A' || uniq[i] > 'Z' || uniq[i] == 'X'); in readName() 70 return uniq.substr(init, i - init).str(); in readInt() 73 static std::int64_t readInt(llvm::StringRef uniq, std::size_t &i, in readInt() 75 for (i = init; i < end && uniq[i] >= '0' && uniq[i] <= '9'; ++i) { in readInt() 79 if (uniq.substr(init, i - init).getAsInteger(10, result)) in toLower() 247 fir::NameUniquer::deconstruct(llvm::StringRef uniq) { in deconstruct() 60 readName(llvm::StringRef uniq,std::size_t & i,std::size_t init,std::size_t end) readName() argument 68 readInt(llvm::StringRef uniq,std::size_t & i,std::size_t init,std::size_t end) readInt() argument 242 deconstruct(llvm::StringRef uniq) deconstruct() argument [all...] |
/llvm-project/compiler-rt/lib/dfsan/scripts/ |
H A D | check_custom_wrappers.sh | 27 | sed "s/.*__dfsw_\(.*\)(.*/\1/" | sort | uniq > $DIFF_B 38 | sed "s/.*__dfsw_\([^(]*\).*/\1/" | sort | uniq > $DIFF_A
|
/llvm-project/clang/utils/perf-training/ |
H A D | perf-helper.py | 374 def uniq(list): 385 return uniq(s for symbols in symbol_lists for s in symbols) 393 # First, uniq all the lists. 394 uniq_lists = [list(uniq(symbols)) for symbols in symbol_lists] 410 return uniq( 434 merged_symbols = uniq(s for symbols in symbol_lists for s in symbols) 372 def uniq(list): global() function
|
/llvm-project/llvm/test/Bitcode/ |
H A D | module-hash-strtab.ll | 4 ; RUN: sort %t | uniq | count 3
|
/llvm-project/compiler-rt/lib/tsan/tests/rtl/ |
H A D | tsan_test_util_posix.cpp | 79 static __tsan::atomic_uintptr_t uniq = {(uintptr_t)&foo}; // Some real address. in allocate_addr() local 83 uintptr_t addr = atomic_fetch_add(&uniq, size, __tsan::memory_order_relaxed); in allocate_addr()
|
/llvm-project/llvm/test/Transforms/SampleProfile/ |
H A D | uniqname.ll | 15 ; Check the callsite in inlined function with uniq suffix is annotated with 38 ; Check the indirect call target with uniq suffix is promoted and the inlined
|
/llvm-project/llvm/test/CodeGen/Thumb2/ |
H A D | 2010-01-06-TailDuplicateLabels.ll | 1 ; RUN: llc -relocation-model=pic < %s | grep -E ': ?\s*$' | sort | uniq -d | count 0
|
/llvm-project/compiler-rt/test/fuzzer/ |
H A D | only-some-bytes.test | 52 …low_trace=%t/C_DFT -runs=0 %t/C -jobs=100 2>&1 | grep AUTOFOCUS | sort | uniq -c | sort -g -r | h…
|
/llvm-project/flang/lib/Optimizer/Dialect/ |
H A D | FIRType.cpp | 98 llvm::StringSet<> uniq; in verifyDerived() local 100 if (!uniq.insert(p.first).second) { in verifyDerived() 105 if (!uniq.insert(p.first).second) { in verifyDerived()
|
/llvm-project/llvm/docs/ |
H A D | RemoveDIsDebugInfo.md | 124 $ cat manual-tests.txt | xargs ./get-checks.sh | sort | uniq | awk -F ',' '{ system("./substitute-checks.sh " $1 " " $2) }'
|