Home
last modified time | relevance | path

Searched refs:cap (Results 1 – 25 of 42) sorted by relevance

12

/llvm-project-15.0.7/flang/test/Semantics/
H A Dmodfile17.f9020 type(capture(n1,n2,n4,n8)) :: cap component
47 integer(kind=x1248%cap%j1%kind) :: res17_1
48 integer(kind=x1248%cap%j2%kind) :: res18_2
49 integer(kind=x1248%cap%j4%kind) :: res19_4
50 integer(kind=x1248%cap%j8%kind) :: res20_8
52 integer(kind=x2484%cap%j1%kind) :: res21_2
53 integer(kind=x2484%cap%j2%kind) :: res22_4
54 integer(kind=x2484%cap%j4%kind) :: res23_8
55 integer(kind=x2484%cap%j8%kind) :: res24_4
57 integer(kind=x1242%cap%j1%kind) :: res25_1
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/IR/
H A DTargetAndABI.cpp32 for (spirv::Capability cap : targetAttr.getCapabilities()) { in TargetEnv() local
33 givenCapabilities.insert(cap); in TargetEnv()
52 return givenCapabilities.count(cap); in allows()
111 if (cap == spirv::Capability::Kernel) in needsInterfaceVarABIAttrs()
113 if (cap == spirv::Capability::Shader) in needsInterfaceVarABIAttrs()
207 if (cap == Capability::Kernel) in getAddressingModel()
212 if (cap == Capability::PhysicalStorageBufferAddresses) in getAddressingModel()
222 if (cap == spirv::Capability::Kernel) in getExecutionModel()
224 if (cap == spirv::Capability::Shader) in getExecutionModel()
233 if (cap == spirv::Capability::Addresses) in getMemoryModel()
[all …]
H A DSPIRVEnums.cpp84 spirv::getRecursiveImpliedCapabilities(spirv::Capability cap) { in getRecursiveImpliedCapabilities() argument
85 ArrayRef<spirv::Capability> directCaps = getDirectImpliedCapabilities(cap); in getRecursiveImpliedCapabilities()
H A DSPIRVAttributes.cpp196 for (spirv::Capability cap : capabilities) in get() local
197 capAttrs.push_back(b.getI32IntegerAttr(static_cast<uint32_t>(cap))); in get()
608 [&](spirv::Capability cap) { os << spirv::stringifyCapability(cap); }); in print() argument
/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/func.memfn/
H A Dmember_function_const_volatile.pass.cpp35 const volatile A* cap = &a; in test0() local
36 assert(f(cap) == 'a'); in test0()
51 const volatile A* cap = &a; in test1() local
52 assert(f(cap, 2) == 'b'); in test1()
67 const volatile A* cap = &a; in test2() local
68 assert(f(cap, 2, 3.5) == 'c'); in test2()
H A Dmember_function_volatile.pass.cpp35 volatile A* cap = &a; in test0() local
36 assert(f(cap) == 'a'); in test0()
51 volatile A* cap = &a; in test1() local
52 assert(f(cap, 2) == 'b'); in test1()
67 volatile A* cap = &a; in test2() local
68 assert(f(cap, 2, 3.5) == 'c'); in test2()
H A Dmember_function_const.pass.cpp35 const A* cap = &a; in test0() local
36 assert(f(cap) == 'a'); in test0()
52 const A* cap = &a; in test1() local
53 assert(f(cap, 2) == 'b'); in test1()
69 const A* cap = &a; in test2() local
70 assert(f(cap, 2, 3.5) == 'c'); in test2()
H A Dmember_data.compile.fail.cpp33 const A* cap = ap; in test() local
34 assert(f(cap) == f(ap)); in test()
35 f(cap) = 7; in test()
H A Dmember_data.pass.cpp34 const A* cap = ap; in test() local
35 assert(f(cap) == f(ap)); in test()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_vector.h104 uptr cap = cap0 * 5 / 4; // 25% growth in EnsureSize() local
105 if (cap == 0) in EnsureSize()
106 cap = 16; in EnsureSize()
107 if (cap < size) in EnsureSize()
108 cap = size; in EnsureSize()
109 T *p = (T*)InternalAlloc(cap * sizeof(T)); in EnsureSize()
116 last_ = begin_ + cap; in EnsureSize()
H A Dsanitizer_addrhashmap.h56 uptr cap; member
308 add->cap = (kInitSize - sizeof(*add)) / sizeof(add->cells[0]) + 1; in acquire()
312 if (add->size == add->cap) { in acquire()
314 uptr oldsize = sizeof(*add) + (add->cap - 1) * sizeof(add->cells[0]); in acquire()
318 add1->cap = (newsize - sizeof(*add)) / sizeof(add->cells[0]) + 1; in acquire()
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Darc-compound-stmt.m22 NSString *cap;
24 cap = [cap stringByAppendingString:[propName substringFromIndex:1]];
25 cap;
/llvm-project-15.0.7/mlir/utils/spirv/
H A Dgen_spirv_dialect.py475 for cap in caps:
477 cap_to_inst[cap] = []
512 for cap in rem_cap_to_instr:
514 rem_cap_to_cov[cap] = 0.0
516 rem_cap_to_cov[cap] = \
517 (len(ex_cap_to_instr[cap]) / (len(ex_cap_to_instr[cap]) \
523 for cap in rem_cap_to_instr:
524 report[cap] = {}
526 ex_cap_to_instr[cap] if cap in ex_cap_to_instr else []
527 report[cap]['Unsupported Instructions'] = rem_cap_to_instr[cap]
[all …]
/llvm-project-15.0.7/llvm/test/Analysis/BasicAA/
H A Dnoalias-param.ll3 declare i32* @captures(i32* %cap) nounwind readonly
10 %cap = call i32* @captures(i32* %a) nounwind readonly
20 %cap = call i32* @captures(i32* %c) nounwind readonly
31 %cap = call i32* @captures(i32* %a) nounwind readonly
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/
H A Dmain.cpp26 uint64_t cap = 5; member
39 uint64_t cap = 3; member
47 uint64_t cap = 5; member
55 uint64_t cap = 5; member
/llvm-project-15.0.7/llvm/utils/lit/lit/
H A DProgressBar.py146 cap = curses.tigetstr(cap_name)
147 if cap is None:
148 cap = ''
150 cap = cap.decode('utf-8')
151 return re.sub(r'\$<\d+>[/*]?', '', cap)
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVEnums.h47 ArrayRef<Capability> getDirectImpliedCapabilities(Capability cap);
53 SmallVector<Capability, 0> getRecursiveImpliedCapabilities(Capability cap);
/llvm-project-15.0.7/libcxx/test/libcxx/strings/basic.string/string.modifiers/
H A Dclear_and_shrink.pass.cpp31 std::string::size_type cap = l.capacity(); in main() local
35 assert(l.capacity() < cap); in main()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DIntelPTSingleBufferTrace.cpp117 Expected<uint32_t> cap = in CheckPsbPeriod() local
119 if (!cap) in CheckPsbPeriod()
120 return cap.takeError(); in CheckPsbPeriod()
121 if (*cap == 0) in CheckPsbPeriod()
/llvm-project-15.0.7/libcxx/src/include/
H A Drefstring.h42 std::size_t cap; member
87 rep->cap = len; in __libcpp_refstring()
/llvm-project-15.0.7/libcxx/utils/ci/
H A Drun-buildbot-container30 docker run -it --volume "${MONOREPO_ROOT}:/llvm" --workdir "/llvm" --cap-add=SYS_PTRACE ldionne/lib…
/llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/Transforms/
H A DUpdateVCEPass.cpp80 for (spirv::Capability cap : ors) in checkAndUpdateCapabilityRequirements() local
81 capStrings.push_back(spirv::stringifyCapability(cap)); in checkAndUpdateCapabilityRequirements()
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DTypeSummary.cpp43 TypeSummaryOptions::SetCapping(lldb::TypeSummaryCapping cap) { in SetCapping() argument
44 m_capping = cap; in SetCapping()
/llvm-project-15.0.7/mlir/test/lib/Dialect/SPIRV/
H A DTestAvailability.cpp83 llvm::interleaveComma(caps, os, [&](spirv::Capability cap) { in runOnOperation() argument
84 os << spirv::stringifyCapability(cap); in runOnOperation()
/llvm-project-15.0.7/llvm/test/Bitcode/
H A Dvalue-with-long-name.ll5 ; Then check we correctly cap the size of newly generated non-global values name

12