Home
last modified time | relevance | path

Searched refs:group (Results 551 - 575 of 3901) sorted by relevance

1...<<21222324252627282930>>...157

/third_party/littlefs/scripts/
H A Dstructs.py170 if not m.group('dir'):
172 dirs[int(m.group('no'))] = m.group('path')
175 dir = int(m.group('dir'))
177 files[int(m.group('no'))] = os.path.join(
179 m.group('path'))
181 files[int(m.group('no'))] = m.group('path')
209 if m.group('tag'):
213 is_struct = (m.group('ta
[all...]
/third_party/pcre2/pcre2/src/
H A Dpcre2_substitute.c538 int group, n; in pcre2_substitute() local
553 group = -1; in pcre2_substitute()
574 group = next - CHAR_0; in pcre2_substitute()
579 group = group * 10 + next - CHAR_0; in pcre2_substitute()
581 /* A check for a number greater than the hightest captured group in pcre2_substitute()
586 if (group > code->top_bracket) in pcre2_substitute()
656 /* Have found a syntactically correct group number or name, or *name. in pcre2_substitute()
675 /* Substitute the contents of a group. We don't use substring_copy in pcre2_substitute()
682 /* Find a number for a named group in pcre2_substitute()
[all...]
/kernel/linux/linux-5.10/tools/perf/
H A Dperf-with-kcore.sh114 find "$USER_HOME/.debug" -xdev -type d ! -group "$SUDO_GID" -ls -exec chgrp "$SUDO_GID" \{\} \;
115 find "$USER_HOME/.debug" -xdev -type f -links 1 ! -group "$SUDO_GID" -ls -exec chgrp "$SUDO_GID" \{\} \;
116 find "$USER_HOME/.debug" -xdev -type l ! -group "$SUDO_GID" -ls -exec chgrp -h "$SUDO_GID" \{\} \;
132 PERMISSIONS_OK+=$(find "$HOME/.debug" -xdev -type d ! -group "$GROUPS" -print -quit)
133 PERMISSIONS_OK+=$(find "$HOME/.debug" -xdev -type f -links 1 ! -group "$GROUPS" -print -quit)
134 PERMISSIONS_OK+=$(find "$HOME/.debug" -xdev -type l ! -group "$GROUPS" -print -quit)
/kernel/linux/linux-6.6/tools/objtool/
H A Dspecial.c22 bool group, jump_or_nop; member
24 unsigned char orig_len, new_len; /* group only */
32 .group = true,
77 alt->group = entry->group; in get_alt_entry()
80 if (alt->group) { in get_alt_entry()
105 if (!entry->group || alt->new_len) { in get_alt_entry()
/third_party/gn/src/gn/
H A Dc_include_iterator_unittest.cc131 for (size_t group = 0; group < kGroupCount; group++) { in TEST()
143 for (size_t group = 0; group < kGroupCount; group++) { in TEST()
/third_party/ltp/testcases/kernel/syscalls/utils/
H A Dcompat_16.h154 int FCHOWN(void (cleanup)(void), unsigned int fd, UID_T owner, GID_T group) in FCHOWN() argument
156 LTP_CREATE_SYSCALL(fchown, cleanup, fd, owner, group); in FCHOWN()
159 int LCHOWN(void (cleanup)(void), const char *path, UID_T owner, GID_T group) in LCHOWN() argument
161 LTP_CREATE_SYSCALL(lchown, cleanup, path, owner, group); in LCHOWN()
164 int CHOWN(void (cleanup)(void), const char *path, UID_T owner, GID_T group) in CHOWN() argument
166 LTP_CREATE_SYSCALL(chown, cleanup, path, owner, group); in CHOWN()
/third_party/ltp/testcases/network/multicast/mc_member/
H A Dmc_member_test.c65 printf("Unabled to read group file %s\n", group_list); in main()
79 fprintf(stderr, "bad group address\n"); in main()
114 char group[40], itf[40]; in join_group() local
122 fprintf(stderr, "bad group address\n"); in join_group()
132 perror("can't join group"); in join_group()
135 strcpy(group, inet_ntoa(imr->imr_multiaddr)); in join_group()
137 printf("IPM group: %s added to interface: %s\n", group, in join_group()
149 char group[40], itf[40]; in leave_group() local
157 fprintf(stderr, "leave_group: bad group addres in leave_group()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiDriverPropertiesTests.cpp211 void createTestCases (tcu::TestCaseGroup* group) in createTestCases() argument
213 addFunctionCase(group, "driver_id_match", "Check driverID is supported", checkSupport, testQueryProperties, TEST_TYPE_DRIVER_ID_MATCH); in createTestCases()
214 addFunctionCase(group, "name_is_not_empty", "Check name field is not empty", checkSupport, testQueryProperties, TEST_TYPE_NAME_IS_NOT_EMPTY); in createTestCases()
215 addFunctionCase(group, "name_zero_terminated", "Check name field is zero-terminated", checkSupport, testQueryProperties, TEST_TYPE_NAME_ZERO_TERMINATED); in createTestCases()
216 addFunctionCase(group, "info_zero_terminated", "Check info field is zero-terminated", checkSupport, testQueryProperties, TEST_TYPE_INFO_ZERO_TERMINATED); in createTestCases()
217 addFunctionCase(group, "conformance_version", "Check conformanceVersion reported by driver", checkSupport, testQueryProperties, TEST_TYPE_VERSION); in createTestCases()
/third_party/toybox/toys/net/
H A Dsntp.c93 struct ip_mreq group; in sntp_main() local
95 // subscribe to multicast group in sntp_main()
96 memset(&group, 0, sizeof(group)); in sntp_main()
97 group.imr_multiaddr.s_addr = inet_addr(TT.m); in sntp_main()
98 xsetsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, &group, sizeof(group)); in sntp_main()
/third_party/unity/extras/fixture/src/
H A Dunity_fixture.c61 static int groupSelected(const char* group) in groupSelected() argument
63 return selected(UnityFixture.GroupFilter, group); in groupSelected()
70 const char* group, in UnityTestRunner()
75 if (testSelected(name) && groupSelected(group)) in UnityTestRunner()
118 void UnityIgnoreTest(const char* printableName, const char* group, const char* name) in UnityIgnoreTest() argument
120 if (testSelected(name) && groupSelected(group)) in UnityIgnoreTest()
66 UnityTestRunner(unityfunction* setup, unityfunction* testBody, unityfunction* teardown, const char* printableName, const char* group, const char* name, const char* file, unsigned int line) UnityTestRunner() argument
/kernel/linux/linux-5.10/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp6000_pcie.c164 struct mutex mutex; /* Lock access to this explicit group */
172 } group[4]; member
677 nfp->expl.group[i].bitsize = 0; in enable_bars()
690 nfp->expl.group[i].bitsize = bar->bitsize; in enable_bars()
691 nfp->expl.group[i].addr = bar->iomem; in enable_bars()
695 nfp->expl.group[i].free[j] = true; in enable_bars()
1056 int group; member
1071 for (i = 0; i < ARRAY_SIZE(nfp->expl.group); i++) { in nfp6000_explicit_acquire()
1072 if (!nfp->expl.group[i].bitsize) in nfp6000_explicit_acquire()
1075 for (j = 0; j < ARRAY_SIZE(nfp->expl.group[ in nfp6000_explicit_acquire()
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp6000_pcie.c162 struct mutex mutex; /* Lock access to this explicit group */
170 } group[4]; member
673 nfp->expl.group[i].bitsize = 0; in enable_bars()
686 nfp->expl.group[i].bitsize = bar->bitsize; in enable_bars()
687 nfp->expl.group[i].addr = bar->iomem; in enable_bars()
691 nfp->expl.group[i].free[j] = true; in enable_bars()
1052 int group; member
1067 for (i = 0; i < ARRAY_SIZE(nfp->expl.group); i++) { in nfp6000_explicit_acquire()
1068 if (!nfp->expl.group[i].bitsize) in nfp6000_explicit_acquire()
1071 for (j = 0; j < ARRAY_SIZE(nfp->expl.group[ in nfp6000_explicit_acquire()
[all...]
/kernel/liteos_a/net/lwip-2.1/porting/src/
H A Dsockets.c408 static u8_t lwip_ioctl_internal_SIOCADDRT(struct rtentry *rmten, struct net_group *group) argument
437 for (netif = group->netif_list; netif != NULL; netif = netif->next) {
462 if ((group->netif_default != NULL) && (group->netif_default != netif)) {
463 ip_addr_set_zero(&group->netif_default->gw);
464 (void)netif_set_default(netif, group);
480 static u8_t lwip_ioctl_internal_SIOCGIFCONF(struct ifreq *ifr, struct net_group *group) argument
500 for (netif = group->netif_list; netif != NULL; netif = netif->next) {
579 static u8_t lwip_ioctl_internal_SIOCSIFADDR(struct ifreq *ifr, struct net_group *group) argument
620 if (netif == group
675 lwip_ioctl_internal_SIOCDIFADDR(struct ifreq *ifr, struct net_group *group) global() argument
755 lwip_ioctl_internal_SIOCSIFNETMASK(struct ifreq *ifr, struct net_group *group) global() argument
1066 lwip_ioctl_internal_SIOCGIFNAME(struct ifreq *ifr, struct net_group *group) global() argument
1396 struct net_group *group = get_net_group_from_ippcb(sock->conn->pcb.ip); global() local
[all...]
/third_party/musl/src/passwd/
H A Dfgetgrent.c4 struct group *fgetgrent(FILE *f) in fgetgrent()
7 static struct group gr; in fgetgrent()
8 struct group *res; in fgetgrent()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/amber/
H A DvktAmberGraphicsFuzzTests.cpp37 void createAmberTests (tcu::TestCaseGroup* group) in createAmberTests() argument
39 tcu::TestContext& testCtx = group->getTestContext(); in createAmberTests()
41 createAmberTestsFromIndexFile(testCtx, group, "index.txt", "graphicsfuzz"); in createAmberTests()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiGetDeviceProcAddrTests.cpp40 de::MovePtr<tcu::TestCaseGroup> group( in createGetDeviceProcAddrTests()
42 addGetDeviceProcAddrTests(group.get()); in createGetDeviceProcAddrTests()
43 return group.release(); in createGetDeviceProcAddrTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/amber/
H A DvktAmberGraphicsFuzzTests.cpp37 void createAmberTests (tcu::TestCaseGroup* group) in createAmberTests() argument
39 tcu::TestContext& testCtx = group->getTestContext(); in createAmberTests()
41 createAmberTestsFromIndexFile(testCtx, group, "index.txt", "graphicsfuzz"); in createAmberTests()
/third_party/vk-gl-cts/modules/internal/
H A DditVulkanTests.cpp36 de::MovePtr<tcu::TestCaseGroup> group (new tcu::TestCaseGroup(testCtx, "vulkan", "Vulkan Framework Tests")); in createVulkanTests()
38 group->addChild(new SelfCheckCase(testCtx, "image_util", "ImageUtil self-check tests", vk::imageUtilSelfTest)); in createVulkanTests()
40 return group.release(); in createVulkanTests()
/kernel/linux/linux-6.6/drivers/net/ethernet/microchip/sparx5/
H A Dsparx5_psfp.c190 int (*sparx5_sdlb_group_action)(struct sparx5 *sparx5, u32 group, in sparx5_sdlb_conf_set()
200 return sparx5_sdlb_group_action(sparx5, fm->pol.group, fm->pol.idx); in sparx5_sdlb_conf_set()
284 fm->pol.group = ret; in sparx5_psfp_fm_add()
301 /* Find the group that this lb belongs to */ in sparx5_psfp_fm_del()
302 ret = sparx5_sdlb_group_get_by_index(sparx5, id, &fm.pol.group); in sparx5_psfp_fm_del()
318 const struct sparx5_sdlb_group *group; in sparx5_psfp_init() local
322 group = &sdlb_groups[i]; in sparx5_psfp_init()
323 sparx5_sdlb_group_init(sparx5, group->max_rate, in sparx5_psfp_init()
324 group->min_burst, group in sparx5_psfp_init()
[all...]
/third_party/PyYAML/examples/pygments-lexer/
H A Dyaml.py35 text = match.group()
45 text = match.group()
57 text = match.group()
79 text = match.group()
92 text = match.group()
96 increment = match.group(1)
109 text = match.group()
126 text = match.group()
146 text = match.group()
/third_party/icu/tools/unicodetools/com/ibm/rbm/
H A DBundle.java55 private TreeSet groups; // A vector of groups of NLS items, the key is the group name
169 * Checks all items in the untranslated items set. If they belong to a group whose name
205 * Returns the boolean of wether a group of a given name exists in the bundle
211 BundleGroup group = (BundleGroup)iter.next(); in hasGroup()
212 if (group.getName().equals(groupName)) in hasGroup()
219 * Creates a group of the given name and optionally associates a comment with
220 * that group.
230 * Removes the group of the given name if it exists in the bundle
265 // Remove from item's group in removeItem()
267 BundleGroup group in removeItem()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/
H A Doperand.cpp62 const auto& group = table->types[typeIndex]; in spvOperandTableNameLookup() local
63 if (type != group.type) continue; in spvOperandTableNameLookup()
64 for (uint64_t index = 0; index < group.count; ++index) { in spvOperandTableNameLookup()
65 const auto& entry = group.entries[index]; in spvOperandTableNameLookup()
103 const auto& group = table->types[typeIndex]; in spvOperandTableValueLookup() local
104 if (type != group.type) continue; in spvOperandTableValueLookup()
106 const auto beg = group.entries; in spvOperandTableValueLookup()
107 const auto end = group.entries + group.count; in spvOperandTableValueLookup()
217 return "group operatio in spvOperandTypeStr()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
H A Doperand.cpp62 const auto& group = table->types[typeIndex]; in spvOperandTableNameLookup() local
63 if (type != group.type) continue; in spvOperandTableNameLookup()
64 for (uint64_t index = 0; index < group.count; ++index) { in spvOperandTableNameLookup()
65 const auto& entry = group.entries[index]; in spvOperandTableNameLookup()
103 const auto& group = table->types[typeIndex]; in spvOperandTableValueLookup() local
104 if (type != group.type) continue; in spvOperandTableValueLookup()
106 const auto beg = group.entries; in spvOperandTableValueLookup()
107 const auto end = group.entries + group.count; in spvOperandTableValueLookup()
217 return "group operatio in spvOperandTypeStr()
[all...]
/third_party/python/Lib/test/test_importlib/
H A Dtest_metadata_api.py79 entries = eps.select(group='entries')
86 entries = entry_points(group='entries')
112 entries = entry_points(group='entries')
122 entry_points(group='entries')['missing']
125 assert entry_points(group='missing') == ()
134 eps = dict(entry_points(group='entries'))
137 assert eps['main'] == entry_points(group='entries')['main']
167 entry_points()['entries'] == entry_points(group='entries')
184 ep = entry_points().select(group='entries', name='main')
/third_party/spirv-tools/source/
H A Doperand.cpp60 const auto& group = table->types[typeIndex]; in spvOperandTableNameLookup() local
61 if (type != group.type) continue; in spvOperandTableNameLookup()
62 for (uint64_t index = 0; index < group.count; ++index) { in spvOperandTableNameLookup()
63 const auto& entry = group.entries[index]; in spvOperandTableNameLookup()
93 const auto& group = table->types[typeIndex]; in spvOperandTableValueLookup() local
94 if (type != group.type) continue; in spvOperandTableValueLookup()
96 const auto beg = group.entries; in spvOperandTableValueLookup()
97 const auto end = group.entries + group.count; in spvOperandTableValueLookup()
190 return "group operatio in spvOperandTypeStr()
[all...]

Completed in 15 milliseconds

1...<<21222324252627282930>>...157