Home
last modified time | relevance | path

Searched refs:groups (Results 1 – 25 of 257) sorted by relevance

1234567891011

/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dgetgrouplist.cpp8 gid_t *groups; in main() local
13 groups = (gid_t *)malloc(ngroups * sizeof(gid_t)); in main()
14 if (!groups) in main()
20 if (getgrouplist("root", root->gr_gid, groups, &ngroups) == -1) in main()
23 if (groups && ngroups) { in main()
24 free(groups); in main()
/llvm-project/compiler-rt/test/sanitizer_common/TestCases/NetBSD/
H A Dgetgroupmembership.cpp10 gid_t *groups; in main() local
16 groups = (gid_t *)malloc(maxgrp * sizeof(gid_t)); in main()
17 if (!groups) in main()
23 if (getgroupmembership("nobody", nobody, groups, maxgrp, &ngroups)) in main()
26 if (groups && ngroups) { in main()
27 free(groups); in main()
/llvm-project/clang/docs/tools/
H A Ddump_ast_matchers.py214 result, inner, name = m.groups()
232 inner, name = m.groups()
253 loc, name, results = m.groups()[0:3]
283 p, n, name, results = m.groups()[0:4]
284 args = m.groups()[4:]
311 name, results, arg_name = m.groups()[0:3]
339 p, n, result, name = m.groups()[0:4]
340 args = m.groups()[4:]
365 p, n, result, name = m.groups()[0:4]
366 args = m.groups()[
[all...]
/llvm-project/clang/test/CodeGenObjCXX/
H A Dcatch-id-type.mm21 id groups;
24 groups = Groups(); // throws on errors.
37 groups = [ns_array array];
41 groups = [ns_array array];
43 return groups;
/llvm-project/lldb/test/API/commands/command/script/add/
H A Dtest_commands.py57 groups=[1, 2],
67 groups=[1, [3, 4]],
86 groups=3,
100 groups=4,
164 groups=[1, 2],
174 groups=[1, 3],
/llvm-project/lldb/examples/python/templates/
H A Dparsed_cmd.py316 dest = None, required=False, groups = None,
327 groups: Which "option groups" does this option belong to. This can either be
354 if groups:
355 dict["groups"] = groups
359 def make_argument_element(self, arg_type, repeat = "optional", groups = None):
361 if groups:
362 element["groups"] = groups
243 add_option(self, short_option, long_option, help, default, dest = None, required=False, groups = None, value_type=lldb.eArgTypeNone, completion_type=None, enum_values=None) global() argument
284 make_argument_element(self, arg_type, repeat = "optional", groups = None) global() argument
[all...]
/llvm-project/llvm/test/tools/llvm-objcopy/ELF/
H A Dremove-section-in-group.test41 # RUN: llvm-readelf --section-groups %t | FileCheck %s --check-prefix=GROUP-REMOVED
63 # GROUP-REMOVED: There are no section groups in this file.
67 # RUN: llvm-readelf --section-groups %t | FileCheck %s --check-prefix=EMPTY-GROUP-REMOVED
85 # EMPTY-GROUP-REMOVED: There are no section groups in this file
H A Dgroup.test3 # RUN: llvm-readobj --section-groups %t1 | FileCheck %s
85 # RUN: llvm-readelf -s --section-groups %t5 | FileCheck %s --check-prefix=LOCAL-SIG
91 # RUN: llvm-readelf -s --section-groups %t1 | FileCheck %s --check-prefix=WEAK-SIG
97 # RUN: llvm-readelf -s --section-groups %t6 | FileCheck %s --check-prefix=GLOBAL-SIG
108 # RUN: llvm-readelf -s --section-groups %t.localsig.out | FileCheck %s --check-prefix=LOCAL-SIG
H A Dcompress-debug-sections-groups.test10 # RUN: llvm-readobj -S --section-groups %t-compressed.o | \
15 # RUN: llvm-readobj --section-groups %t-decompressed.o | \
/llvm-project/llvm/test/tools/llvm-readobj/ELF/
H A Ddemangle.test2 ## (including dynamic symbols), relocations (including dynamic relocations), and groups.
8 # RUN: --section-groups --cg-profile --addrsig \
11 # RUN: --section-groups --cg-profile --addrsig \
18 # RUN: --section-groups --cg-profile --addrsig \
21 # RUN: --section-groups --cg-profile --addrsig \
71 # RUN: --section-groups --addrsig --demangle %t.so > %t.gnu.long
73 # RUN: --section-groups --addrsig -C %t.so > %t.gnu.short
79 # RUN: --section-groups --addrsig %t.so > %t.gnu.default
81 # RUN: --section-groups --addrsig --no-demangle %t.so > %t.gnu.nodemangle
H A Dgroups.test6 # RUN: llvm-readobj --elf-section-groups %t.o | FileCheck %s
7 # RUN: llvm-readobj --elf-section-groups %t.o --elf-output-style=JSON --pretty-print | FileCheck %s…
152 # RUN: llvm-readobj --section-groups %t.dup.o 2>&1 | FileCheck %s -DFILE=%t.dup.o --check-prefix=DU…
153 # RUN: llvm-readelf --section-groups %t.dup.o 2>&1 | FileCheck %s -DFILE=%t.dup.o --check-prefix=DU…
198 # RUN: llvm-readobj --section-groups %t.symtab.o 2>&1 | \
200 # RUN: llvm-readelf --section-groups %t.symtab.o 2>&1 | \
251 # RUN: llvm-readobj --section-groups %t.symtab2.o 2>&1 | \
253 # RUN: llvm-readelf --section-groups %t.symtab2.o 2>&1 | \
302 # RUN: llvm-readobj --section-groups %t.secsize.o 2>&1 | \
304 # RUN: llvm-readelf --section-groups %t.secsize.o 2>&1 | \
[all …]
/llvm-project/lldb/examples/python/
H A Ddiagnose_unwind.py209 len(lldb_versions_match.groups()) >= 1
210 and lldb_versions_match.groups()[0]
212 lldb_major = int(lldb_versions_match.groups()[0])
214 len(lldb_versions_match.groups()) >= 5
215 and lldb_versions_match.groups()[4]
217 lldb_minor = int(lldb_versions_match.groups()[4])
H A Dcrashlog.py805 if len(frame_match.groups()) == 3:
807 (frame_id, frame_img_name, frame_addr) = frame_match.groups()
808 elif len(frame_match.groups()) == 5:
815 ) = frame_match.groups()
816 elif len(frame_match.groups()) == 7:
825 ) = frame_match.groups()
826 elif len(frame_match.groups()) == 8:
836 ) = frame_match.groups()
1056 exc_type, exc_signal = exception_type_match.groups()
1073 code, subcode = exception_codes_match.groups()
[all...]
/llvm-project/lld/test/ELF/
H A Dcomdat-local-signature.s2 ## COMDAT groups are deduplicated by the name of the signature symbol.
16 ## Non-GRP_COMDAT groups are never deduplicated.
20 ## GRP_COMDAT groups are deduplicated.
/llvm-project/llvm/utils/lit/lit/
H A Dmain.py351 groups = [(c.label, len(tests_by_code[c])) for c in codes]
352 groups = [(label, count) for label, count in groups if count]
353 if not groups:
356 max_label_len = max(len(label) for label, _ in groups)
357 max_count_len = max(len(str(count)) for _, count in groups)
359 for (label, count) in groups:
/llvm-project/mlir/test/mlir-tblgen/
H A Dop-format-verify.td71 // Test attribute followed by two optional groups and then a colon.
79 // Test attribute followed by two optional groups and then a colon in the else
88 // Test attribute followed by two optional groups with guarded colons but then a
97 // Test optional attribute followed by optional groups with a colon along one
107 // Test optional attribute followed by optional groups with a colon along one
143 // Test attribute followed by two optional groups with guarded colons.
150 // Test optional attribute followed by two optional groups with guarded colons.
/llvm-project/llvm/test/CodeGen/AMDGPU/
H A Dattr-amdgpu-num-workgroups.ll
/llvm-project/lldb/source/Commands/
H A DOptionsBase.td6 // Default value: LLDB_OPT_SET_ALL (Option allowed in all groups)
12 // - `GroupRange`: Sets an interval of groups. Start and end are inclusive.
113 // Moves the option into a list of option groups.
114 class Groups<list<int> groups> {
115 list<int> Groups = groups;
118 // Moves the option in all option groups in a range.
/llvm-project/llvm/utils/
H A Dconvert-constraint-log-to-z3.py48 groups = content.split("---")
52 for group in groups:
H A Dupdate_llc_test_checks.py81 triple_in_ir = m.groups()[0]
102 triple_in_cmd = m.groups()[0]
107 march_in_cmd = m.groups()[0]
110 if m and m.groups()[0] == "isel":
/llvm-project/bolt/test/
H A Dlink_fdata.py62 src_dst, execnt, mispred = fdata_match.groups()
72 loc, count = nolbr_match.groups()
82 exprs.append(("PREAGG", preagg_match.groups()))
/llvm-project/mlir/docs/Dialects/
H A DMesh.md18 ### Device groups
20 axes that partition the devices into disjoint groups.
26 axes list is `[0, 1]` then devices are partitioned into the groups
28 The device groups would be `{ (k, m) | 0<=k<4, 0<=m<5 }`.
/llvm-project/mlir/lib/Dialect/MemRef/Transforms/
H A DFoldMemRefAliasOps.cpp93 // Traverse all reassociation groups to determine the appropriate indices in resolveSourceIndicesExpandShape()
95 for (ArrayRef<int64_t> groups : expandShapeOp.getReassociationIndices()) { in resolveSourceIndicesExpandShape()
96 assert(!groups.empty() && "association indices groups cannot be empty"); in resolveSourceIndicesExpandShape()
99 int64_t groupSize = groups.size(); in resolveSourceIndicesExpandShape()
105 sizesVal[i] = (*outputShape)[groups[i]]; in resolveSourceIndicesExpandShape()
127 dynamicIndices[i] = indices[groups[i]]; in resolveSourceIndicesExpandShape()
173 for (ArrayRef<int64_t> groups : collapseShapeOp.getReassociationIndices()) { in resolveSourceIndicesCollapseShape()
174 assert(!groups.empty() && "association indices groups canno in resolveSourceIndicesCollapseShape()
[all...]
/llvm-project/llvm/tools/llvm-readobj/
H A DOpts.td19 "--section-groups and --histogram">;
57 def section_groups : FF<"section-groups", "Display section groups">, Group<grp_elf>;
117 def : FF<"elf-section-groups", "Alias for --section-groups">, Alias<section_groups>, Flags<[HelpHid…
129 def : F<"g", "Alias for --section-groups">, Alias<section_groups>, Group<grp_elf>;
/llvm-project/clang/include/clang/Basic/
H A DDiagnostic.td51 // Diagnostic Categories. These can be applied to groups or individual
67 // This defines documentation for diagnostic groups.
73 // This defines all of the named diagnostic groups.

1234567891011