/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmSpirvVersion1p4Tests.cpp | 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() 146 CaseGroup group(data_dir, "opcopylogical"); in createSpirvVersion1p4Group() local 147 group.add("different_matrix_layout","different matrix layout"); in createSpirvVersion1p4Group() 148 group.add("different_matrix_strides","different matrix strides"); in createSpirvVersion1p4Group() 149 group.add("nested_arrays_different_inner_stride","nested_arrays_different_inner_stride"); in createSpirvVersion1p4Group() 150 group.add("nested_arrays_different_outer_stride","nested_arrays_different_inner_stride"); in createSpirvVersion1p4Group() 151 group.add("nested_arrays_different_strides","nested_arrays_different_strides"); in createSpirvVersion1p4Group() [all …]
|
/external/boringssl/src/crypto/fipsmodule/ec/ |
D | ec_montgomery.c | 79 int ec_GFp_mont_group_init(EC_GROUP *group) { in ec_GFp_mont_group_init() argument 82 ok = ec_GFp_simple_group_init(group); in ec_GFp_mont_group_init() 83 group->mont = NULL; in ec_GFp_mont_group_init() 87 void ec_GFp_mont_group_finish(EC_GROUP *group) { in ec_GFp_mont_group_finish() argument 88 BN_MONT_CTX_free(group->mont); in ec_GFp_mont_group_finish() 89 group->mont = NULL; in ec_GFp_mont_group_finish() 90 ec_GFp_simple_group_finish(group); in ec_GFp_mont_group_finish() 93 int ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, in ec_GFp_mont_group_set_curve() argument 95 BN_MONT_CTX_free(group->mont); in ec_GFp_mont_group_set_curve() 96 group->mont = BN_MONT_CTX_new_for_modulus(p, ctx); in ec_GFp_mont_group_set_curve() [all …]
|
D | ec.c | 304 static int ec_group_set_generator(EC_GROUP *group, const EC_AFFINE *generator, in ec_group_set_generator() argument 306 assert(group->generator == NULL); in ec_group_set_generator() 308 if (!BN_copy(&group->order, order)) { in ec_group_set_generator() 312 bn_set_minimal_width(&group->order); in ec_group_set_generator() 314 BN_MONT_CTX_free(group->order_mont); in ec_group_set_generator() 315 group->order_mont = BN_MONT_CTX_new_for_modulus(&group->order, NULL); in ec_group_set_generator() 316 if (group->order_mont == NULL) { in ec_group_set_generator() 320 group->field_greater_than_order = BN_cmp(&group->field, order) > 0; in ec_group_set_generator() 321 if (group->field_greater_than_order) { in ec_group_set_generator() 325 BN_sub(&tmp, &group->field, order) && in ec_group_set_generator() [all …]
|
D | simple.c | 91 int ec_GFp_simple_group_init(EC_GROUP *group) { in ec_GFp_simple_group_init() argument 92 BN_init(&group->field); in ec_GFp_simple_group_init() 93 group->a_is_minus3 = 0; in ec_GFp_simple_group_init() 97 void ec_GFp_simple_group_finish(EC_GROUP *group) { in ec_GFp_simple_group_finish() argument 98 BN_free(&group->field); in ec_GFp_simple_group_finish() 101 int ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, in ec_GFp_simple_group_set_curve() argument 118 if (!BN_copy(&group->field, p)) { in ec_GFp_simple_group_set_curve() 121 BN_set_negative(&group->field, 0); in ec_GFp_simple_group_set_curve() 123 bn_set_minimal_width(&group->field); in ec_GFp_simple_group_set_curve() 125 if (!ec_bignum_to_felem(group, &group->a, a) || in ec_GFp_simple_group_set_curve() [all …]
|
D | scalar.c | 24 int ec_bignum_to_scalar(const EC_GROUP *group, EC_SCALAR *out, in ec_bignum_to_scalar() argument 26 if (!bn_copy_words(out->words, group->order.width, in) || in ec_bignum_to_scalar() 27 !bn_less_than_words(out->words, group->order.d, group->order.width)) { in ec_bignum_to_scalar() 34 int ec_scalar_equal_vartime(const EC_GROUP *group, const EC_SCALAR *a, in ec_scalar_equal_vartime() argument 37 group->order.width * sizeof(BN_ULONG)) == 0; in ec_scalar_equal_vartime() 40 int ec_scalar_is_zero(const EC_GROUP *group, const EC_SCALAR *a) { in ec_scalar_is_zero() argument 42 for (int i = 0; i < group->order.width; i++) { in ec_scalar_is_zero() 48 int ec_random_nonzero_scalar(const EC_GROUP *group, EC_SCALAR *out, in ec_random_nonzero_scalar() argument 50 return bn_rand_range_words(out->words, 1, group->order.d, group->order.width, in ec_random_nonzero_scalar() 54 void ec_scalar_to_bytes(const EC_GROUP *group, uint8_t *out, size_t *out_len, in ec_scalar_to_bytes() argument [all …]
|
D | simple_mul.c | 24 void ec_GFp_mont_mul(const EC_GROUP *group, EC_RAW_POINT *r, in ec_GFp_mont_mul() argument 32 ec_GFp_simple_point_set_to_infinity(group, &precomp[0]); in ec_GFp_mont_mul() 36 ec_GFp_mont_add(group, &precomp[j], &precomp[1], &precomp[j - 1]); in ec_GFp_mont_mul() 38 ec_GFp_mont_dbl(group, &precomp[j], &precomp[j / 2]); in ec_GFp_mont_mul() 43 unsigned bits = BN_num_bits(&group->order); in ec_GFp_mont_mul() 47 ec_GFp_mont_dbl(group, r, r); in ec_GFp_mont_mul() 51 const size_t width = group->order.width; in ec_GFp_mont_mul() 63 ec_point_select(group, &tmp, mask, &precomp[j], &tmp); in ec_GFp_mont_mul() 70 ec_GFp_mont_add(group, r, r, &tmp); in ec_GFp_mont_mul() 75 ec_GFp_simple_point_set_to_infinity(group, r); in ec_GFp_mont_mul() [all …]
|
D | internal.h | 111 OPENSSL_EXPORT int ec_bignum_to_scalar(const EC_GROUP *group, EC_SCALAR *out, 117 OPENSSL_EXPORT void ec_scalar_to_bytes(const EC_GROUP *group, uint8_t *out, 123 int ec_scalar_from_bytes(const EC_GROUP *group, EC_SCALAR *out, 129 void ec_scalar_reduce(const EC_GROUP *group, EC_SCALAR *out, 134 int ec_random_nonzero_scalar(const EC_GROUP *group, EC_SCALAR *out, 139 int ec_scalar_equal_vartime(const EC_GROUP *group, const EC_SCALAR *a, 143 int ec_scalar_is_zero(const EC_GROUP *group, const EC_SCALAR *a); 146 void ec_scalar_add(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a, 150 void ec_scalar_sub(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a, 154 void ec_scalar_neg(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a); [all …]
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/ec/ |
D | ec_montgomery.c | 79 int ec_GFp_mont_group_init(EC_GROUP *group) { in ec_GFp_mont_group_init() argument 82 ok = ec_GFp_simple_group_init(group); in ec_GFp_mont_group_init() 83 group->mont = NULL; in ec_GFp_mont_group_init() 87 void ec_GFp_mont_group_finish(EC_GROUP *group) { in ec_GFp_mont_group_finish() argument 88 BN_MONT_CTX_free(group->mont); in ec_GFp_mont_group_finish() 89 group->mont = NULL; in ec_GFp_mont_group_finish() 90 ec_GFp_simple_group_finish(group); in ec_GFp_mont_group_finish() 93 int ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, in ec_GFp_mont_group_set_curve() argument 95 BN_MONT_CTX_free(group->mont); in ec_GFp_mont_group_set_curve() 96 group->mont = BN_MONT_CTX_new_for_modulus(p, ctx); in ec_GFp_mont_group_set_curve() [all …]
|
D | ec.c | 304 static int ec_group_set_generator(EC_GROUP *group, const EC_AFFINE *generator, in ec_group_set_generator() argument 306 assert(group->generator == NULL); in ec_group_set_generator() 308 if (!BN_copy(&group->order, order)) { in ec_group_set_generator() 312 bn_set_minimal_width(&group->order); in ec_group_set_generator() 314 BN_MONT_CTX_free(group->order_mont); in ec_group_set_generator() 315 group->order_mont = BN_MONT_CTX_new_for_modulus(&group->order, NULL); in ec_group_set_generator() 316 if (group->order_mont == NULL) { in ec_group_set_generator() 320 group->field_greater_than_order = BN_cmp(&group->field, order) > 0; in ec_group_set_generator() 321 if (group->field_greater_than_order) { in ec_group_set_generator() 325 BN_sub(&tmp, &group->field, order) && in ec_group_set_generator() [all …]
|
D | simple.c | 91 int ec_GFp_simple_group_init(EC_GROUP *group) { in ec_GFp_simple_group_init() argument 92 BN_init(&group->field); in ec_GFp_simple_group_init() 93 group->a_is_minus3 = 0; in ec_GFp_simple_group_init() 97 void ec_GFp_simple_group_finish(EC_GROUP *group) { in ec_GFp_simple_group_finish() argument 98 BN_free(&group->field); in ec_GFp_simple_group_finish() 101 int ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, in ec_GFp_simple_group_set_curve() argument 118 if (!BN_copy(&group->field, p)) { in ec_GFp_simple_group_set_curve() 121 BN_set_negative(&group->field, 0); in ec_GFp_simple_group_set_curve() 123 bn_set_minimal_width(&group->field); in ec_GFp_simple_group_set_curve() 125 if (!ec_bignum_to_felem(group, &group->a, a) || in ec_GFp_simple_group_set_curve() [all …]
|
D | scalar.c | 24 int ec_bignum_to_scalar(const EC_GROUP *group, EC_SCALAR *out, in ec_bignum_to_scalar() argument 26 if (!bn_copy_words(out->words, group->order.width, in) || in ec_bignum_to_scalar() 27 !bn_less_than_words(out->words, group->order.d, group->order.width)) { in ec_bignum_to_scalar() 34 int ec_scalar_equal_vartime(const EC_GROUP *group, const EC_SCALAR *a, in ec_scalar_equal_vartime() argument 37 group->order.width * sizeof(BN_ULONG)) == 0; in ec_scalar_equal_vartime() 40 int ec_scalar_is_zero(const EC_GROUP *group, const EC_SCALAR *a) { in ec_scalar_is_zero() argument 42 for (int i = 0; i < group->order.width; i++) { in ec_scalar_is_zero() 48 int ec_random_nonzero_scalar(const EC_GROUP *group, EC_SCALAR *out, in ec_random_nonzero_scalar() argument 50 return bn_rand_range_words(out->words, 1, group->order.d, group->order.width, in ec_random_nonzero_scalar() 54 void ec_scalar_to_bytes(const EC_GROUP *group, uint8_t *out, size_t *out_len, in ec_scalar_to_bytes() argument [all …]
|
D | simple_mul.c | 24 void ec_GFp_mont_mul(const EC_GROUP *group, EC_RAW_POINT *r, in ec_GFp_mont_mul() argument 32 ec_GFp_simple_point_set_to_infinity(group, &precomp[0]); in ec_GFp_mont_mul() 36 ec_GFp_mont_add(group, &precomp[j], &precomp[1], &precomp[j - 1]); in ec_GFp_mont_mul() 38 ec_GFp_mont_dbl(group, &precomp[j], &precomp[j / 2]); in ec_GFp_mont_mul() 43 unsigned bits = BN_num_bits(&group->order); in ec_GFp_mont_mul() 47 ec_GFp_mont_dbl(group, r, r); in ec_GFp_mont_mul() 51 const size_t width = group->order.width; in ec_GFp_mont_mul() 63 ec_point_select(group, &tmp, mask, &precomp[j], &tmp); in ec_GFp_mont_mul() 70 ec_GFp_mont_add(group, r, r, &tmp); in ec_GFp_mont_mul() 75 ec_GFp_simple_point_set_to_infinity(group, r); in ec_GFp_mont_mul() [all …]
|
D | internal.h | 111 OPENSSL_EXPORT int ec_bignum_to_scalar(const EC_GROUP *group, EC_SCALAR *out, 117 OPENSSL_EXPORT void ec_scalar_to_bytes(const EC_GROUP *group, uint8_t *out, 123 int ec_scalar_from_bytes(const EC_GROUP *group, EC_SCALAR *out, 129 void ec_scalar_reduce(const EC_GROUP *group, EC_SCALAR *out, 134 int ec_random_nonzero_scalar(const EC_GROUP *group, EC_SCALAR *out, 139 int ec_scalar_equal_vartime(const EC_GROUP *group, const EC_SCALAR *a, 143 int ec_scalar_is_zero(const EC_GROUP *group, const EC_SCALAR *a); 146 void ec_scalar_add(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a, 150 void ec_scalar_sub(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a, 154 void ec_scalar_neg(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a); [all …]
|
/external/wpa_supplicant_8/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 …]
|
/external/llvm-project/lldb/packages/Python/lldbsuite/test/ |
D | dotest_args.py | 18 group = None 22 X = lambda optstr, helpstr, **kwargs: group.add_argument( 25 group = parser.add_argument_group('Help') 26 group.add_argument( 34 group = parser.add_argument_group('Toolchain options') 35 group.add_argument( 41 … group.add_argument('-C', '--compiler', metavar='compiler', dest='compiler', help=textwrap.dedent( 44 …group.add_argument('--apple-sdk', metavar='apple_sdk', dest='apple_sdk', default="", help=textwrap… 47 group.add_argument( 53 …group.add_argument('--dsymutil', metavar='dsymutil', dest='dsymutil', help=textwrap.dedent('Specif… [all …]
|
/external/boringssl/src/crypto/ec_extra/ |
D | hash_to_curve.c | 171 static int hash_to_field2(const EC_GROUP *group, const EVP_MD *md, in hash_to_field2() argument 177 if (!num_bytes_to_derive(&L, &group->field, k) || in hash_to_field2() 182 size_t num_words = 2 * group->field.width; in hash_to_field2() 184 group->meth->felem_reduce(group, out1, words, num_words); in hash_to_field2() 186 group->meth->felem_reduce(group, out2, words, num_words); in hash_to_field2() 192 static int hash_to_scalar(const EC_GROUP *group, const EVP_MD *md, in hash_to_scalar() argument 197 if (!num_bytes_to_derive(&L, &group->order, k) || in hash_to_scalar() 203 size_t num_words = 2 * group->order.width; in hash_to_scalar() 205 ec_scalar_reduce(group, out, words, num_words); in hash_to_scalar() 209 static inline void mul_A(const EC_GROUP *group, EC_FELEM *out, in mul_A() argument [all …]
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowPreferenceGroupTest.java | 22 private TestPreferenceGroup group; field in ShadowPreferenceGroupTest 33 group = new TestPreferenceGroup(activity, attrs); in setUp() 34 shadow = shadowOf(group); in setUp() 51 assertThat(group.getPreferenceCount()).isEqualTo(0); in shouldAddPreferences() 54 assertThat(group.addPreference(pref1)).isTrue(); in shouldAddPreferences() 55 assertThat(group.getPreferenceCount()).isEqualTo(1); in shouldAddPreferences() 58 assertThat(group.addPreference(pref1)).isTrue(); in shouldAddPreferences() 59 assertThat(group.getPreferenceCount()).isEqualTo(1); in shouldAddPreferences() 62 assertThat(group.addPreference(pref2)).isTrue(); in shouldAddPreferences() 63 assertThat(group.getPreferenceCount()).isEqualTo(2); in shouldAddPreferences() [all …]
|
/external/tcpdump/tests/ |
D | hsrp_1.out | 1 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 2 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 3 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 4 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 5 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 6 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 7 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 8 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp] 9 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 10 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 [all …]
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/ec_extra/ |
D | hash_to_curve.c | 175 static int hash_to_field2(const EC_GROUP *group, const EVP_MD *md, in hash_to_field2() argument 181 if (!num_bytes_to_derive(&L, &group->field, k) || in hash_to_field2() 187 size_t num_words = 2 * group->field.width; in hash_to_field2() 189 group->meth->felem_reduce(group, out1, words, num_words); in hash_to_field2() 191 group->meth->felem_reduce(group, out2, words, num_words); in hash_to_field2() 197 static int hash_to_scalar(const EC_GROUP *group, const EVP_MD *md, in hash_to_scalar() argument 203 if (!num_bytes_to_derive(&L, &group->order, k) || in hash_to_scalar() 209 size_t num_words = 2 * group->order.width; in hash_to_scalar() 211 ec_scalar_reduce(group, out, words, num_words); in hash_to_scalar() 215 static inline void mul_A(const EC_GROUP *group, EC_FELEM *out, in mul_A() argument [all …]
|
/external/boringssl/src/crypto/trust_token/ |
D | pmbtoken.c | 33 typedef int (*hash_t_func_t)(const EC_GROUP *group, EC_RAW_POINT *out, 35 typedef int (*hash_s_func_t)(const EC_GROUP *group, EC_RAW_POINT *out, 38 typedef int (*hash_c_func_t)(const EC_GROUP *group, EC_SCALAR *out, 42 const EC_GROUP *group; member 64 method->group = EC_GROUP_new_by_curve_name(curve_nid); in pmbtoken_init_method() 65 if (method->group == NULL) { in pmbtoken_init_method() 75 if (!ec_point_from_uncompressed(method->group, &h, h_bytes, h_len)) { in pmbtoken_init_method() 78 ec_affine_to_jacobian(method->group, &method->h, &h); in pmbtoken_init_method() 80 if (!ec_init_precomp(method->group, &method->g_precomp, in pmbtoken_init_method() 81 &method->group->generator->raw) || in pmbtoken_init_method() [all …]
|
D | voprf.c | 31 typedef int (*hash_to_group_func_t)(const EC_GROUP *group, EC_RAW_POINT *out, 33 typedef int (*hash_to_scalar_func_t)(const EC_GROUP *group, EC_SCALAR *out, 37 const EC_GROUP *group; member 52 method->group = EC_GROUP_new_by_curve_name(curve_nid); in voprf_init_method() 53 if (method->group == NULL) { in voprf_init_method() 63 static int cbb_add_point(CBB *out, const EC_GROUP *group, in cbb_add_point() argument 66 ec_point_to_bytes(group, point, POINT_CONVERSION_UNCOMPRESSED, NULL, 0); in cbb_add_point() 73 ec_point_to_bytes(group, point, POINT_CONVERSION_UNCOMPRESSED, p, in cbb_add_point() 78 static int cbs_get_point(CBS *cbs, const EC_GROUP *group, EC_AFFINE *out) { in cbs_get_point() argument 80 size_t plen = 1 + 2 * BN_num_bytes(&group->field); in cbs_get_point() [all …]
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/trust_token/ |
D | pmbtoken.c | 33 typedef int (*hash_t_func_t)(const EC_GROUP *group, EC_RAW_POINT *out, 35 typedef int (*hash_s_func_t)(const EC_GROUP *group, EC_RAW_POINT *out, 38 typedef int (*hash_c_func_t)(const EC_GROUP *group, EC_SCALAR *out, 42 const EC_GROUP *group; member 66 method->group = EC_GROUP_new_by_curve_name(curve_nid); in pmbtoken_init_method() 67 if (method->group == NULL) { in pmbtoken_init_method() 77 if (!ec_point_from_uncompressed(method->group, &h, h_bytes, h_len)) { in pmbtoken_init_method() 80 ec_affine_to_jacobian(method->group, &method->h, &h); in pmbtoken_init_method() 82 if (!ec_init_precomp(method->group, &method->g_precomp, in pmbtoken_init_method() 83 &method->group->generator->raw) || in pmbtoken_init_method() [all …]
|
/external/mesa3d/src/freedreno/perfcntrs/ |
D | fdperf.c | 58 const struct fd_perfcntr_group *group; member 394 select_counter(struct counter_group *group, int ctr, int n) in select_counter() argument 396 assert(n < group->group->num_countables); in select_counter() 397 assert(ctr < group->group->num_counters); in select_counter() 399 group->label[ctr] = group->group->countables[n].name; in select_counter() 400 group->counter[ctr].select_val = n; in select_counter() 423 if (group->group->counters[ctr].enable) { in select_counter() 424 OUT_PKT0(ring, group->group->counters[ctr].enable, 1); in select_counter() 428 if (group->group->counters[ctr].clear) { in select_counter() 429 OUT_PKT0(ring, group->group->counters[ctr].clear, 1); in select_counter() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/ray_tracing/ |
D | vktRayTracingTests.cpp | 58 …de::MovePtr<tcu::TestCaseGroup> group(new tcu::TestCaseGroup(testCtx, "ray_tracing_pipeline", "Ray… in createTests() local 60 group->addChild(createBuiltinTests(testCtx)); in createTests() 61 group->addChild(createSpecConstantTests(testCtx)); in createTests() 62 group->addChild(createBuildLargeShaderSetTests(testCtx)); in createTests() 63 group->addChild(createBuildTests(testCtx)); in createTests() 64 group->addChild(createCallableShadersTests(testCtx)); in createTests() 65 group->addChild(createTraceRaysTests(testCtx)); in createTests() 66 group->addChild(createShaderBindingTableTests(testCtx)); in createTests() 67 group->addChild(createTraversalControlTests(testCtx)); in createTests() 68 group->addChild(createAccelerationStructuresTests(testCtx)); in createTests() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawTests.cpp | 57 void createChildren (tcu::TestCaseGroup* group) in createChildren() argument 59 tcu::TestContext& testCtx = group->getTestContext(); in createChildren() 61 group->addChild(new ConcurrentDrawTests (testCtx)); in createChildren() 62 group->addChild(new SimpleDrawTests (testCtx)); in createChildren() 63 group->addChild(new DrawIndexedTests (testCtx)); in createChildren() 64 group->addChild(new IndirectDrawTests (testCtx)); in createChildren() 65 group->addChild(createBasicDrawTests (testCtx)); in createChildren() 66 group->addChild(new InstancedTests (testCtx)); in createChildren() 67 group->addChild(new ShaderDrawParametersTests (testCtx)); in createChildren() 68 group->addChild(createNegativeViewportHeightTests (testCtx)); in createChildren() [all …]
|