Home
last modified time | relevance | path

Searched full:group (Results 1 – 25 of 8367) sorted by relevance

12345678910>>...335

/third_party/icu/icu4c/source/test/depstest/
Ddependencies.txt29 group: PIC
33 group: system_misc
36 group: system_debug
39 group: malloc_functions
42 group: std_mutex
51 group: ubsan
55 group: c_strings
67 group: c_string_formatting
73 group: int_functions
76 group: floating_point
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/
Dp2p_group.c2 * Wi-Fi Direct - P2P group operations
32 * struct p2p_group - Internal P2P module per-group data
49 struct p2p_group *group, **groups; in p2p_group_init() local
51 group = os_zalloc(sizeof(*group)); in p2p_group_init()
52 if (group == NULL) in p2p_group_init()
58 os_free(group); in p2p_group_init()
61 groups[p2p->num_groups++] = group; in p2p_group_init()
64 group->p2p = p2p; in p2p_group_init()
65 group->cfg = config; in p2p_group_init()
66 group->group_formation = 1; in p2p_group_init()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/
Dp2p_group.c2 * Wi-Fi Direct - P2P group operations
32 * struct p2p_group - Internal P2P module per-group data
49 struct p2p_group *group, **groups; in p2p_group_init() local
51 group = os_zalloc(sizeof(*group)); in p2p_group_init()
52 if (group == NULL) in p2p_group_init()
58 os_free(group); in p2p_group_init()
61 groups[p2p->num_groups++] = group; in p2p_group_init()
64 group->p2p = p2p; in p2p_group_init()
65 group->cfg = config; in p2p_group_init()
66 group->group_formation = 1; in p2p_group_init()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmSpirvVersion1p4Tests.cpp6 * Copyright (c) 2019 The Khronos Group Inc.
71 void addTestsForAmberFiles (tcu::TestCaseGroup* tests, CaseGroup group) in addTestsForAmberFiles() argument
74 const std::string data_dir(group.data_dir); in addTestsForAmberFiles()
75 const std::string subdir(group.subdir); in addTestsForAmberFiles()
77 std::vector<Case> cases(group.cases); in addTestsForAmberFiles()
150 CaseGroup group(data_dir, "opcopylogical"); in createSpirvVersion1p4Group() local
151 group.add("different_matrix_layout","different matrix layout"); in createSpirvVersion1p4Group()
152 group.add("different_matrix_strides","different matrix strides"); in createSpirvVersion1p4Group()
153 group.add("nested_arrays_different_inner_stride","nested_arrays_different_inner_stride"); in createSpirvVersion1p4Group()
154 group.add("nested_arrays_different_outer_stride","nested_arrays_different_inner_stride"); in createSpirvVersion1p4Group()
[all …]
/third_party/openssl/crypto/ec/
Dec_lib.c88 void EC_pre_comp_free(EC_GROUP *group) in EC_pre_comp_free() argument
90 switch (group->pre_comp_type) { in EC_pre_comp_free()
95 EC_nistz256_pre_comp_free(group->pre_comp.nistz256); in EC_pre_comp_free()
100 EC_nistp224_pre_comp_free(group->pre_comp.nistp224); in EC_pre_comp_free()
103 EC_nistp256_pre_comp_free(group->pre_comp.nistp256); in EC_pre_comp_free()
106 EC_nistp521_pre_comp_free(group->pre_comp.nistp521); in EC_pre_comp_free()
115 EC_ec_pre_comp_free(group->pre_comp.ec); in EC_pre_comp_free()
118 group->pre_comp.ec = NULL; in EC_pre_comp_free()
121 void EC_GROUP_free(EC_GROUP *group) in EC_GROUP_free() argument
123 if (!group) in EC_GROUP_free()
[all …]
Decp_smpl.c98 int ossl_ec_GFp_simple_group_init(EC_GROUP *group) in ossl_ec_GFp_simple_group_init() argument
100 group->field = BN_new(); in ossl_ec_GFp_simple_group_init()
101 group->a = BN_new(); in ossl_ec_GFp_simple_group_init()
102 group->b = BN_new(); in ossl_ec_GFp_simple_group_init()
103 if (group->field == NULL || group->a == NULL || group->b == NULL) { in ossl_ec_GFp_simple_group_init()
104 BN_free(group->field); in ossl_ec_GFp_simple_group_init()
105 BN_free(group->a); in ossl_ec_GFp_simple_group_init()
106 BN_free(group->b); in ossl_ec_GFp_simple_group_init()
109 group->a_is_minus3 = 0; in ossl_ec_GFp_simple_group_init()
113 void ossl_ec_GFp_simple_group_finish(EC_GROUP *group) in ossl_ec_GFp_simple_group_finish() argument
[all …]
Dec2_smpl.c28 int ossl_ec_GF2m_simple_group_init(EC_GROUP *group) in ossl_ec_GF2m_simple_group_init() argument
30 group->field = BN_new(); in ossl_ec_GF2m_simple_group_init()
31 group->a = BN_new(); in ossl_ec_GF2m_simple_group_init()
32 group->b = BN_new(); in ossl_ec_GF2m_simple_group_init()
34 if (group->field == NULL || group->a == NULL || group->b == NULL) { in ossl_ec_GF2m_simple_group_init()
35 BN_free(group->field); in ossl_ec_GF2m_simple_group_init()
36 BN_free(group->a); in ossl_ec_GF2m_simple_group_init()
37 BN_free(group->b); in ossl_ec_GF2m_simple_group_init()
47 void ossl_ec_GF2m_simple_group_finish(EC_GROUP *group) in ossl_ec_GF2m_simple_group_finish() argument
49 BN_free(group->field); in ossl_ec_GF2m_simple_group_finish()
[all …]
Decp_mont.c83 int ossl_ec_GFp_mont_group_init(EC_GROUP *group) in ossl_ec_GFp_mont_group_init() argument
87 ok = ossl_ec_GFp_simple_group_init(group); in ossl_ec_GFp_mont_group_init()
88 group->field_data1 = NULL; in ossl_ec_GFp_mont_group_init()
89 group->field_data2 = NULL; in ossl_ec_GFp_mont_group_init()
93 void ossl_ec_GFp_mont_group_finish(EC_GROUP *group) in ossl_ec_GFp_mont_group_finish() argument
95 BN_MONT_CTX_free(group->field_data1); in ossl_ec_GFp_mont_group_finish()
96 group->field_data1 = NULL; in ossl_ec_GFp_mont_group_finish()
97 BN_free(group->field_data2); in ossl_ec_GFp_mont_group_finish()
98 group->field_data2 = NULL; in ossl_ec_GFp_mont_group_finish()
99 ossl_ec_GFp_simple_group_finish(group); in ossl_ec_GFp_mont_group_finish()
[all …]
/third_party/gstreamer/gstplugins_good/sys/v4l2/
Dgstv4l2allocator.c93 switch (mem->group->buffer.memory) { in _v4l2mem_map()
103 GST_WARNING ("Unknown memory type %i", mem->group->buffer.memory); in _v4l2mem_map()
114 switch (mem->group->buffer.memory) { in _v4l2mem_unmap()
124 GST_WARNING ("Unknown memory type %i", mem->group->buffer.memory); in _v4l2mem_unmap()
134 GstV4l2MemoryGroup *group = mem->group; in _v4l2mem_dispose() local
137 if (group->mem[mem->plane]) { in _v4l2mem_dispose()
139 group->mem[mem->plane] = gst_memory_ref ((GstMemory *) mem); in _v4l2mem_dispose()
153 gint plane, gpointer data, int dmafd, GstV4l2MemoryGroup * group) in _v4l2mem_new() argument
168 mem->group = group; in _v4l2mem_new()
190 -1, mem->group); in _v4l2mem_share()
[all …]
/third_party/lwip/src/core/ipv6/
Dmld6.c9 * Note: The allnodes (ff01::1, ff02::1) group is assumed be received by your
85 static err_t mld6_remove_group(struct netif *netif, struct mld_group *group);
86 static void mld6_delayed_report(struct mld_group *group, u16_t maxresp);
87 static void mld6_send(struct netif *netif, struct mld_group *group, u8_t type);
98 struct mld_group *group = netif_mld6_data(netif); in mld6_stop() local
102 while (group != NULL) { in mld6_stop()
103 struct mld_group *next = group->next; /* avoid use-after-free below */ in mld6_stop()
105 /* disable the group at the MAC level */ in mld6_stop()
107 netif->mld_mac_filter(netif, &(group->group_address), NETIF_DEL_MAC_FILTER); in mld6_stop()
110 /* free group */ in mld6_stop()
[all …]
/third_party/lwip/src/core/ipv4/
Digmp.c3 * IGMP - Internet Group Management Protocol
55 A query for a specific group address (as opposed to ALLHOSTS)
73 …* RFC 2236 - Internet Group Management Protocol, Version 2 - V2 <- this code is bas…
74 * RFC 3376 - Internet Group Management Protocol, Version 3 - V3
75 * RFC 4604 - Using Internet Group Management Protocol Version 3... - V3+
100 static err_t igmp_remove_group(struct netif *netif, struct igmp_group *group);
101 static void igmp_timeout(struct netif *netif, struct igmp_group *group);
102 static void igmp_start_timer(struct igmp_group *group, u8_t max_time);
103 static void igmp_delaying_member(struct igmp_group *group, u8_t maxresp);
105 static void igmp_send(struct netif *netif, struct igmp_group *group, u8_t type);
[all …]
/third_party/flutter/skia/third_party/externals/sdl/premake/Xcode/Xcode4/SDL.xcworkspace/
Dcontents.xcworkspacedata5 location = "group:tests/testjoystick/testjoystick.xcodeproj">
8 location = "group:tests/testfilesystem/testfilesystem.xcodeproj">
11 location = "group:tests/testsem/testsem.xcodeproj">
14 location = "group:tests/testnative/testnative.xcodeproj">
17 location = "group:tests/testscale/testscale.xcodeproj">
20 location = "group:tests/testgamecontroller/testgamecontroller.xcodeproj">
23 location = "group:tests/testrendertarget/testrendertarget.xcodeproj">
26 location = "group:tests/testver/testver.xcodeproj">
29 location = "group:tests/testkeys/testkeys.xcodeproj">
32 location = "group:tests/testloadso/testloadso.xcodeproj">
[all …]
/third_party/flutter/skia/third_party/externals/spirv-tools/test/opt/
Dflatten_decoration_test.cpp88 {"%group = OpDecorationGroup\n", ""},
93 {"OpName %group \"group\"\n"
94 "%group = OpDecorationGroup\n",
100 {"OpDecorate %group Flat\n"
101 "OpDecorate %group NoPerspective\n"
102 "%group = OpDecorationGroup\n",
109 {"OpName %group \"group\"\n"
110 "OpDecorate %group Flat\n"
111 "OpDecorate %group NoPerspective\n"
112 "%group = OpDecorationGroup\n"
[all …]
/third_party/skia/third_party/externals/tint/test/bug/tint/
D959.wgsl.expected.wgsl6 [[group(0), binding(0)]] var<storage> b0 : S;
8 [[group(1), binding(0)]] var<storage> b1 : S;
10 [[group(2), binding(0)]] var<storage> b2 : S;
12 [[group(3), binding(0)]] var<storage> b3 : S;
14 [[group(4), binding(0)]] var<storage> b4 : S;
16 [[group(5), binding(0)]] var<storage> b5 : S;
18 [[group(6), binding(0)]] var<storage> b6 : S;
20 [[group(7), binding(0)]] var<storage> b7 : S;
22 [[group(9), binding(1)]] var<uniform> b8 : S;
24 [[group(8), binding(1)]] var<uniform> b9 : S;
[all …]
D959.wgsl11 [[group(0), binding(0)]] var<storage> b0 : S;
12 [[group(1), binding(0)]] var<storage> b1 : S;
13 [[group(2), binding(0)]] var<storage> b2 : S;
14 [[group(3), binding(0)]] var<storage> b3 : S;
15 [[group(4), binding(0)]] var<storage> b4 : S;
16 [[group(5), binding(0)]] var<storage> b5 : S;
17 [[group(6), binding(0)]] var<storage> b6 : S;
18 [[group(7), binding(0)]] var<storage> b7 : S;
19 [[group(9), binding(1)]] var<uniform> b8 : S;
20 [[group(8), binding(1)]] var<uniform> b9 : S;
[all …]
/third_party/spirv-tools/test/opt/
Dflatten_decoration_test.cpp91 {"%group = OpDecorationGroup\n", ""},
96 {"OpName %group \"group\"\n"
97 "%group = OpDecorationGroup\n",
103 {"OpDecorate %group Flat\n"
104 "OpDecorate %group NoPerspective\n"
105 "%group = OpDecorationGroup\n",
112 {"OpName %group \"group\"\n"
113 "OpDecorate %group Flat\n"
114 "OpDecorate %group NoPerspective\n"
115 "%group = OpDecorationGroup\n"
[all …]
/third_party/skia/third_party/externals/spirv-tools/test/opt/
Dflatten_decoration_test.cpp91 {"%group = OpDecorationGroup\n", ""},
96 {"OpName %group \"group\"\n"
97 "%group = OpDecorationGroup\n",
103 {"OpDecorate %group Flat\n"
104 "OpDecorate %group NoPerspective\n"
105 "%group = OpDecorationGroup\n",
112 {"OpName %group \"group\"\n"
113 "OpDecorate %group Flat\n"
114 "OpDecorate %group NoPerspective\n"
115 "%group = OpDecorationGroup\n"
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
Dflatten_decoration_test.cpp91 {"%group = OpDecorationGroup\n", ""},
96 {"OpName %group \"group\"\n"
97 "%group = OpDecorationGroup\n",
103 {"OpDecorate %group Flat\n"
104 "OpDecorate %group NoPerspective\n"
105 "%group = OpDecorationGroup\n",
112 {"OpName %group \"group\"\n"
113 "OpDecorate %group Flat\n"
114 "OpDecorate %group NoPerspective\n"
115 "%group = OpDecorationGroup\n"
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/
DvktSubgroupUniformControlFlowTests.cpp6 * Copyright (c) 2020 The Khronos Group Inc.
176 template<bool requirements> void addTestsForAmberFiles(tcu::TestCaseGroup* tests, CaseGroup group) in addTestsForAmberFiles() argument
179 const std::string data_dir(group.data_dir); in addTestsForAmberFiles()
180 const std::string subdir(group.subdir); in addTestsForAmberFiles()
182 std::vector<Case> cases(group.cases); in addTestsForAmberFiles()
214 // There are four main groups of tests. Each group runs the same set of base in createSubgroupUniformControlFlowTests()
216 // subgroups and a larger or smaller number of invocations. For each group of in createSubgroupUniformControlFlowTests()
246 CaseGroup group(data_dir, subdir); in createSubgroupUniformControlFlowTests() local
247 group.add("subgroup_reconverge00", "if/else diverge", small, control, stage); in createSubgroupUniformControlFlowTests()
248 group.add("subgroup_reconverge01", "do while diverge", small, control, stage); in createSubgroupUniformControlFlowTests()
[all …]
/third_party/mesa3d/src/freedreno/perfcntrs/
Dfdperf.c58 /* NOTE first counter group should always be CP, since we unconditionally
63 const struct fd_perfcntr_group *group; member
213 select_counter(struct counter_group *group, int ctr, int n) in select_counter() argument
215 assert(n < group->group->num_countables); in select_counter()
216 assert(ctr < group->group->num_counters); in select_counter()
218 group->label[ctr] = group->group->countables[n].name; in select_counter()
219 group->counter[ctr].select_val = n; in select_counter()
242 if (group->group->counters[ctr].enable) { in select_counter()
243 OUT_PKT0(ring, group->group->counters[ctr].enable, 1); in select_counter()
247 if (group->group->counters[ctr].clear) { in select_counter()
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_compute_variable_group_size.txt21 Copyright (c) 2013 The Khronos Group Inc. Copyright terms at
54 fixed work group size in the compute shader, an application can use a
56 a variable work group size. When using such compute shaders, the new
58 group size and work group count.
60 In this extension, compute shaders with fixed group sizes must be
62 shaders with variable group sizes must be dispatched via
64 indirect dispatch of compute shaders with a variable group size.
119 variable in the active program for the compute shader stage. The group
128 The maximum size of a local work group may be determined by calling
131 MAX_COMPUTE_FIXED_GROUP_SIZE_ARB for compute shaders with fixed group
[all …]
/third_party/libinput/src/
Devdev-tablet-pad-leds.c55 struct libinput_tablet_pad_mode_group *group, in pad_mode_toggle_button_new() argument
74 pad_led_group_get_mode(struct pad_led_group *group) in pad_led_group_get_mode() argument
81 list_for_each(led, &group->led_list, link) { in pad_led_group_get_mode()
113 pad_led_new(struct libinput *libinput, const char *prefix, int group, int mode) in pad_led_new() argument
125 * where 0 and 1 are group and mode index. */ in pad_led_new()
130 group, in pad_led_new()
153 struct pad_led_group *group = (struct pad_led_group *)g; in pad_led_group_destroy() local
157 list_for_each_safe(button, &group->toggle_button_list, link) in pad_led_group_destroy()
160 list_for_each_safe(led, &group->led_list, link) in pad_led_group_destroy()
163 free(group); in pad_led_group_destroy()
[all …]
/third_party/unity/extras/fixture/src/
Dunity_fixture.h22 #define TEST_GROUP(group)\ argument
23 static const char* TEST_GROUP_##group = #group
25 #define TEST_SETUP(group) void TEST_##group##_SETUP(void);\ argument
26 void TEST_##group##_SETUP(void)
28 #define TEST_TEAR_DOWN(group) void TEST_##group##_TEAR_DOWN(void);\ argument
29 void TEST_##group##_TEAR_DOWN(void)
32 #define TEST(group, name) \ argument
33 void TEST_##group##_##name##_(void);\
34 void TEST_##group##_##name##_run(void);\
35 void TEST_##group##_##name##_run(void)\
[all …]
/third_party/iptables/
DOAT.xml24 …2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilt…
25 …<policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPol…
35 …m rule and group: These two fields are used together to merge policy results. "may" policyitems in…
74 …"compatibility" name="GPL-2.0+" path="include/libipq/libipq.h" rule="may" group="defaultGroup" fil…
75 …type="compatibility" name="GPL-2.0+" path="iptables/nft-cmd.c" rule="may" group="defaultGroup" fil…
76 …em type="compatibility" name="GPL-2.0+" path="libipq/libipq.c" rule="may" group="defaultGroup" fil…
77 …mpatibility" name="GPL-2.0+" path="iptables/xtables-monitor.c" rule="may" group="defaultGroup" fil…
78 …ype="compatibility" name="GPL-2.0+" path="iptables/nft-ipv4.c" rule="may" group="defaultGroup" fil…
79 …ype="compatibility" name="GPL-2.0+" path="iptables/nft-ipv6.c" rule="may" group="defaultGroup" fil…
80 …ibility" name="GPL-2.0+" path="iptables/iptables-standalone.c" rule="may" group="defaultGroup" fil…
[all …]
/third_party/cJSON/tests/unity/extras/fixture/src/
Dunity_fixture.h19 #define TEST_GROUP(group)\ argument
20 static const char* TEST_GROUP_##group = #group
22 #define TEST_SETUP(group) void TEST_##group##_SETUP(void);\ argument
23 void TEST_##group##_SETUP(void)
25 #define TEST_TEAR_DOWN(group) void TEST_##group##_TEAR_DOWN(void);\ argument
26 void TEST_##group##_TEAR_DOWN(void)
29 #define TEST(group, name) \ argument
30 void TEST_##group##_##name##_(void);\
31 void TEST_##group##_##name##_run(void);\
32 void TEST_##group##_##name##_run(void)\
[all …]

12345678910>>...335