/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
D | vktSpvAsmSpirvVersion1p4Tests.cpp | 71 void addTestsForAmberFiles (tcu::TestCaseGroup* tests, CaseGroup group) in addTestsForAmberFiles() argument 75 const std::string data_dir(group.data_dir); in addTestsForAmberFiles() 76 const std::string subdir(group.subdir); in addTestsForAmberFiles() 78 std::vector<Case> cases(group.cases); in addTestsForAmberFiles() 117 DE_UNREF(group); in addTestsForAmberFiles() 155 CaseGroup group(data_dir, "opcopylogical"); in createSpirvVersion1p4Group() local 156 group.add("different_matrix_layout","different matrix layout"); in createSpirvVersion1p4Group() 157 group.add("different_matrix_strides","different matrix strides"); in createSpirvVersion1p4Group() 158 group.add("nested_arrays_different_inner_stride","nested_arrays_different_inner_stride"); in createSpirvVersion1p4Group() 159 group.add("nested_arrays_different_outer_stride","nested_arrays_different_inner_stride"); in createSpirvVersion1p4Group() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmSpirvVersion1p4Tests.cpp | 71 void addTestsForAmberFiles (tcu::TestCaseGroup* tests, CaseGroup group) in addTestsForAmberFiles() argument 75 const std::string data_dir(group.data_dir); in addTestsForAmberFiles() 76 const std::string subdir(group.subdir); in addTestsForAmberFiles() 78 std::vector<Case> cases(group.cases); in addTestsForAmberFiles() 117 DE_UNREF(group); in addTestsForAmberFiles() 155 CaseGroup group(data_dir, "opcopylogical"); in createSpirvVersion1p4Group() local 156 group.add("different_matrix_layout","different matrix layout"); in createSpirvVersion1p4Group() 157 group.add("different_matrix_strides","different matrix strides"); in createSpirvVersion1p4Group() 158 group.add("nested_arrays_different_inner_stride","nested_arrays_different_inner_stride"); in createSpirvVersion1p4Group() 159 group.add("nested_arrays_different_outer_stride","nested_arrays_different_inner_stride"); in createSpirvVersion1p4Group() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/ec/ |
D | ec_lib.c | 88 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 …]
|
D | ecp_smpl.c | 98 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 …]
|
D | ec2_smpl.c | 28 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 …]
|
D | ecp_mont.c | 83 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/openssl/crypto/ec/ |
D | ec_lib.c | 88 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 …]
|
D | ecp_smpl.c | 98 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 …]
|
D | ec2_smpl.c | 28 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 …]
|
D | ecp_mont.c | 83 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/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/ |
D | p2p_group.c | 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() 67 group->beacon_update = 1; in p2p_group_init() 68 p2p_group_update_ies(group); in p2p_group_init() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/ |
D | p2p_group.c | 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() 67 group->beacon_update = 1; in p2p_group_init() 68 p2p_group_update_ies(group); in p2p_group_init() [all …]
|
/third_party/lwip/src/core/ipv6/ |
D | mld6.c | 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() 107 netif->mld_mac_filter(netif, &(group->group_address), NETIF_DEL_MAC_FILTER); in mld6_stop() 111 memp_free(MEMP_MLD6_GROUP, group); in mld6_stop() 114 group = next; in mld6_stop() 127 struct mld_group *group = netif_mld6_data(netif); in mld6_report_groups() local [all …]
|
/third_party/lwip/src/core/ipv4/ |
D | igmp.c | 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); 130 struct igmp_group *group; in igmp_start() local 134 group = igmp_lookup_group(netif, &allsystems); in igmp_start() 136 if (group != NULL) { in igmp_start() 137 group->group_state = IGMP_GROUP_IDLE_MEMBER; in igmp_start() 138 group->use++; in igmp_start() [all …]
|
/third_party/mesa3d/src/freedreno/perfcntrs/ |
D | fdperf.c | 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() 248 OUT_PKT0(ring, group->group->counters[ctr].clear, 1); in select_counter() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/ |
D | vktSubgroupUniformControlFlowTests.cpp | 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() 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() 249 group.add("subgroup_reconverge02", "while true with break", small, control, stage); in createSubgroupUniformControlFlowTests() 250 group.add("subgroup_reconverge03", "if/else diverge, volatile", small, control, stage); in createSubgroupUniformControlFlowTests() 251 group.add("subgroup_reconverge04", "early return and if/else diverge", small, control, stage); in createSubgroupUniformControlFlowTests() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/subgroups/ |
D | vktSubgroupUniformControlFlowTests.cpp | 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() 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() 249 group.add("subgroup_reconverge02", "while true with break", small, control, stage); in createSubgroupUniformControlFlowTests() 250 group.add("subgroup_reconverge03", "if/else diverge, volatile", small, control, stage); in createSubgroupUniformControlFlowTests() 251 group.add("subgroup_reconverge04", "early return and if/else diverge", small, control, stage); in createSubgroupUniformControlFlowTests() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
D | vktPipelineTests.cpp | 83 void createChildren (tcu::TestCaseGroup* group, PipelineConstructionType pipelineConstructionType) in createChildren() argument 85 tcu::TestContext& testCtx = group->getTestContext(); in createChildren() 87 group->addChild(createDynamicControlPointTests (testCtx, pipelineConstructionType)); in createChildren() 88 group->addChild(createStencilTests (testCtx, pipelineConstructionType)); in createChildren() 89 group->addChild(createBlendTests (testCtx, pipelineConstructionType)); in createChildren() 90 group->addChild(createDepthTests (testCtx, pipelineConstructionType)); in createChildren() 91 group->addChild(createDescriptorLimitsTests (testCtx, pipelineConstructionType)); in createChildren() 92 group->addChild(createDynamicOffsetTests (testCtx, pipelineConstructionType)); in createChildren() 94 group->addChild(createEarlyDestroyTests (testCtx, pipelineConstructionType)); in createChildren() 96 group->addChild(createImageTests (testCtx, pipelineConstructionType)); in createChildren() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineTests.cpp | 83 void createChildren (tcu::TestCaseGroup* group, PipelineConstructionType pipelineConstructionType) in createChildren() argument 85 tcu::TestContext& testCtx = group->getTestContext(); in createChildren() 87 group->addChild(createDynamicControlPointTests (testCtx, pipelineConstructionType)); in createChildren() 88 group->addChild(createStencilTests (testCtx, pipelineConstructionType)); in createChildren() 89 group->addChild(createBlendTests (testCtx, pipelineConstructionType)); in createChildren() 90 group->addChild(createDepthTests (testCtx, pipelineConstructionType)); in createChildren() 91 group->addChild(createDescriptorLimitsTests (testCtx, pipelineConstructionType)); in createChildren() 92 group->addChild(createDynamicOffsetTests (testCtx, pipelineConstructionType)); in createChildren() 94 group->addChild(createEarlyDestroyTests (testCtx, pipelineConstructionType)); in createChildren() 96 group->addChild(createImageTests (testCtx, pipelineConstructionType)); in createChildren() [all …]
|
/third_party/skia/third_party/externals/tint/test/bug/tint/ |
D | 959.wgsl.expected.wgsl | 6 [[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 …]
|
D | 959.wgsl | 11 [[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/cJSON/tests/unity/extras/fixture/src/ |
D | unity_fixture.h | 19 #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 …]
|
/third_party/unity/extras/fixture/src/ |
D | unity_fixture.h | 29 #define TEST_GROUP(group)\ argument 30 static const char* TEST_GROUP_##group = #group 32 #define TEST_SETUP(group) void TEST_##group##_SETUP(void);\ argument 33 void TEST_##group##_SETUP(void) 35 #define TEST_TEAR_DOWN(group) void TEST_##group##_TEAR_DOWN(void);\ argument 36 void TEST_##group##_TEAR_DOWN(void) 39 #define TEST(group, name) \ argument 40 void TEST_##group##_##name##_(void);\ 41 void TEST_##group##_##name##_run(void);\ 42 void TEST_##group##_##name##_run(void)\ [all …]
|
/third_party/libinput/src/ |
D | evdev-tablet-pad-leds.c | 55 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 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() 171 struct pad_led_group *group; in pad_group_new_basic() local [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/ |
D | vktRayTracingTests.cpp | 61 …de::MovePtr<tcu::TestCaseGroup> group(new tcu::TestCaseGroup(testCtx, "ray_tracing_pipeline", "Ray… in createTests() local 63 group->addChild(createBuiltinTests(testCtx)); in createTests() 64 group->addChild(createSpecConstantTests(testCtx)); in createTests() 65 group->addChild(createBuildLargeShaderSetTests(testCtx)); in createTests() 66 group->addChild(createBuildTests(testCtx)); in createTests() 67 group->addChild(createCallableShadersTests(testCtx)); in createTests() 68 group->addChild(createTraceRaysTests(testCtx)); in createTests() 69 group->addChild(createTraceRaysMaintenance1Tests(testCtx)); in createTests() 70 group->addChild(createShaderBindingTableTests(testCtx)); in createTests() 71 group->addChild(createTraversalControlTests(testCtx)); in createTests() [all …]
|