Home
last modified time | relevance | path

Searched refs:small (Results 1 - 25 of 207) sorted by relevance

123456789

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/
H A DvktSubgroupUniformControlFlowTests.cpp161 // The are large and small variants of the tests. The large variants in checkSupport()
231 const char* small_dir = "small"; in createSubgroupUniformControlFlowTests()
239 bool small = false; in createSubgroupUniformControlFlowTests() local
245 group.add("subgroup_reconverge00", small, control, stage); in createSubgroupUniformControlFlowTests()
247 group.add("subgroup_reconverge01", small, control, stage); in createSubgroupUniformControlFlowTests()
249 group.add("subgroup_reconverge02", small, control, stage); in createSubgroupUniformControlFlowTests()
251 group.add("subgroup_reconverge03", small, control, stage); in createSubgroupUniformControlFlowTests()
253 group.add("subgroup_reconverge04", small, control, stage); in createSubgroupUniformControlFlowTests()
255 group.add("subgroup_reconverge05", small, control, stage); in createSubgroupUniformControlFlowTests()
257 group.add("subgroup_reconverge06", small, contro in createSubgroupUniformControlFlowTests()
342 bool small = true; createSubgroupUniformControlFlowTests() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/subgroups/
H A DvktSubgroupUniformControlFlowTests.cpp163 // The are large and small variants of the tests. The large variants in checkSupport()
234 const char* small_dir = "small"; in createSubgroupUniformControlFlowTests()
242 bool small = false; 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()
252 group.add("subgroup_reconverge05", "early return and if/else volatile", small, control, stage); in createSubgroupUniformControlFlowTests()
253 group.add("subgroup_reconverge06", "while true with volatile conditional break and early return", small, contro in createSubgroupUniformControlFlowTests()
305 bool small = true; createSubgroupUniformControlFlowTests() local
[all...]
/third_party/python/Objects/
H A Daccu.c22 acc->small = PyList_New(0); in _PyAccu_Init()
23 if (acc->small == NULL) in _PyAccu_Init()
31 Py_ssize_t nsmall = PyList_GET_SIZE(acc->small); in flush_accumulator()
40 joined = join_list_unicode(acc->small); in flush_accumulator()
43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
60 if (PyList_Append(acc->small, unicode)) in _PyAccu_Accumulate()
62 nsmall = PyList_GET_SIZE(acc->small); in _PyAccu_Accumulate()
82 Py_CLEAR(acc->small); in _PyAccu_FinishAsList()
97 list = acc->small; in _PyAccu_Finish()
98 acc->small in _PyAccu_Finish()
[all...]
/third_party/skia/tests/
H A DInfRectTest.cpp26 SkScalar small = SkIntToScalar(10); in DEF_TEST() local
31 SkRect rect = SkRect::MakeXYWH(small, small, big, big); in DEF_TEST()
36 check_invalid(reporter, small, small, big, invalid[i]); in DEF_TEST()
37 check_invalid(reporter, small, small, invalid[i], big); in DEF_TEST()
38 check_invalid(reporter, small, invalid[i], big, big); in DEF_TEST()
39 check_invalid(reporter, invalid[i], small, big, big); in DEF_TEST()
/third_party/skia/bench/
H A DLightingBench.cpp19 LightingBaseBench(bool small) : fIsSmall(small) { } in LightingBaseBench() argument
100 LightingPointLitDiffuseBench(bool small) : INHERITED(small) { } in LightingPointLitDiffuseBench() argument
118 LightingDistantLitDiffuseBench(bool small) : INHERITED(small) { } in LightingDistantLitDiffuseBench() argument
136 LightingSpotLitDiffuseBench(bool small) : INHERITED(small) { } in LightingSpotLitDiffuseBench() argument
155 LightingPointLitSpecularBench(bool small) : INHERITED(small) { } in LightingPointLitSpecularBench() argument
174 LightingDistantLitSpecularBench(bool small) LightingDistantLitSpecularBench() argument
193 LightingSpotLitSpecularBench(bool small) LightingSpotLitSpecularBench() argument
[all...]
H A DDisplacementBench.cpp22 DisplacementBaseBench(bool small) : fInitialized(false), fIsSmall(small) { } in DisplacementBaseBench() argument
90 DisplacementZeroBench(bool small) : INHERITED(small) { } in DisplacementZeroBench() argument
115 DisplacementAlphaBench(bool small) : INHERITED(small) { } in DisplacementAlphaBench() argument
139 DisplacementFullBench(bool small) : INHERITED(small) { } in DisplacementFullBench() argument
/third_party/skia/gm/
H A Dbigmatrix.cpp41 SkScalar small = 1 / (500 * SK_Scalar1); in DEF_SIMPLE_GM_BG() local
44 canvas->drawCircle(pt.fX, pt.fY, small, paint); in DEF_SIMPLE_GM_BG()
48 SkRect rect = {pt.fX - small, pt.fY - small, pt.fX + small, pt.fY + small}; in DEF_SIMPLE_GM_BG()
66 rect.setLTRB(pt.fX - small, pt.fY - small, pt.fX + small, pt.fY + small); in DEF_SIMPLE_GM_BG()
[all...]
H A Dverylargebitmap.cpp101 int small = 150; variable
108 show_image(canvas, small, small, colors, fProc);
113 show_image(canvas, big, small, colors, fProc);
124 show_image(canvas, veryBig, small, colors, fProc);
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dfixed_array_exception_safety_test.cc55 auto small = FixedArr(kSmallSize); in TEST() local
56 TestThrowingCtor<FixedArr>(small); in TEST()
63 auto small = FixedArrWithAlloc(kSmallSize); in TEST() local
64 TestThrowingCtor<FixedArrWithAlloc>(small); in TEST()
109 auto small = FixedArr(kSmallSize); in TEST() local
110 TestThrowingCtor<FixedArr>(small.begin(), small.end()); in TEST()
117 auto small = FixedArrWithAlloc(kSmallSize); in TEST() local
118 TestThrowingCtor<FixedArrWithAlloc>(small.begin(), small in TEST()
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dsorttest.c33 uint16_t small[]={ 8, 1, 2, 5, 4, 3, 7, 6 }; in SortTest() local
41 /* sort small array (stable) */ in SortTest()
43 uprv_sortArray(small, UPRV_LENGTHOF(small), sizeof(small[0]), uprv_uint16Comparator, NULL, true, &errorCode); in SortTest()
45 log_err("uprv_sortArray(small) failed - %s\n", u_errorName(errorCode)); in SortTest()
48 for(i=1; i<UPRV_LENGTHOF(small); ++i) { in SortTest()
49 if(small[i-1]>small[i]) { in SortTest()
50 log_err("uprv_sortArray(small) mi in SortTest()
[all...]
/third_party/skia/src/core/
H A DSkOpts_erms.cpp46 // so we use the previous best routine for small inputs. FSRM would make this moot.
55 static bool small(size_t bytes) { return bytes < 1024; } in small() function
60 return small(sizeof(v)*n) ? g_memset16_prev(dst, v, n) in memset16()
64 return small(sizeof(v)*n) ? g_memset32_prev(dst, v, n) in memset32()
68 return small(sizeof(v)*n) ? g_memset64_prev(dst, v, n) in memset64()
74 if (small(sizeof(v)*n)) { in rect_memset16()
83 if (small(sizeof(v)*n)) { in rect_memset32()
92 if (small(sizeof(v)*n)) { in rect_memset64()
/third_party/jerryscript/tests/jerry-test-suite/es2015/22/22.02/22.02.03/
H A D22.02.03-007.js18 "small":0,
25 this.small = this.small + k;
36 assert(o.small === 1); // 0+1
H A D22.02.03-014.js18 "small":0,
25 this.small = this.small + k;
36 assert(o.small === 1); // 0+1
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Decp_nistp256.c254 * smallfelem_neg sets |out| to |-small|
258 static void smallfelem_neg(felem out, const smallfelem small) in smallfelem_neg() argument
261 out[0] = zero105[0] - small[0]; in smallfelem_neg()
262 out[1] = zero105[1] - small[1]; in smallfelem_neg()
263 out[2] = zero105[2] - small[2]; in smallfelem_neg()
264 out[3] = zero105[3] - small[3]; in smallfelem_neg()
479 * smallfelem_square sets |out| = |small|^2
481 * small[i] < 2^64
485 static void smallfelem_square(longfelem out, const smallfelem small) in smallfelem_square() argument
490 a = ((uint128_t) small[ in smallfelem_square()
566 u64 small[4]; felem_square() local
935 smallfelem_is_zero(const smallfelem small) smallfelem_is_zero() argument
969 smallfelem_is_zero_int(const void *small) smallfelem_is_zero_int() argument
[all...]
/third_party/openssl/crypto/ec/
H A Decp_nistp256.c254 * smallfelem_neg sets |out| to |-small|
258 static void smallfelem_neg(felem out, const smallfelem small) in smallfelem_neg() argument
261 out[0] = zero105[0] - small[0]; in smallfelem_neg()
262 out[1] = zero105[1] - small[1]; in smallfelem_neg()
263 out[2] = zero105[2] - small[2]; in smallfelem_neg()
264 out[3] = zero105[3] - small[3]; in smallfelem_neg()
479 * smallfelem_square sets |out| = |small|^2
481 * small[i] < 2^64
485 static void smallfelem_square(longfelem out, const smallfelem small) in smallfelem_square() argument
490 a = ((uint128_t) small[ in smallfelem_square()
566 u64 small[4]; felem_square() local
935 smallfelem_is_zero(const smallfelem small) smallfelem_is_zero() argument
969 smallfelem_is_zero_int(const void *small) smallfelem_is_zero_int() argument
[all...]
/kernel/linux/linux-6.6/lib/test_fortify/
H A Dtest_fortify.h22 char small[__BUF_SMALL]; variable
31 memset(small, 0xA5, sizeof(small)); in do_fortify_tests()
H A Dread_overflow-memchr_inv.c3 memchr_inv(small, 0x7A, sizeof(small) + 1)
H A Dread_overflow2-memcmp.c3 memcmp(large, small, sizeof(small) + 1)
H A Dread_overflow-memscan.c3 memscan(small, 0x7A, sizeof(small) + 1)
H A Dread_overflow-memcmp.c3 memcmp(small, large, sizeof(small) + 1)
H A Dread_overflow-memchr.c3 memchr(small, 0x7A, sizeof(small) + 1)
H A Dwrite_overflow-strlcpy-src.c3 strlcpy(small, large_src, sizeof(small) + 1)
H A Dwrite_overflow-strncpy-src.c3 strncpy(small, large_src, sizeof(small) + 1)
/kernel/linux/linux-5.10/arch/arm/common/
H A Ddmabounce.c77 struct dmabounce_pool small; member
91 device_info->small.allocs, in dmabounce_show()
93 device_info->total_allocs - device_info->small.allocs - in dmabounce_show()
117 if (size <= device_info->small.size) { in alloc_safe_buffer()
118 pool = &device_info->small; in alloc_safe_buffer()
496 ret = dmabounce_init_pool(&device_info->small, dev, in dmabounce_register_dev()
537 dma_pool_destroy(device_info->small.pool); in dmabounce_register_dev()
564 if (device_info->small.pool) in dmabounce_unregister_dev()
565 dma_pool_destroy(device_info->small.pool); in dmabounce_unregister_dev()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_scale_fdiv.c41 nir_ssa_def *small = nir_flt(b, fabs, nir_imm_int(b, 0x00800000)); in nir_scale_fdiv_instr() local
50 (nir_bcsel(b, small, scaled_up_a, alu->src[0].src.ssa))); in nir_scale_fdiv_instr()
53 (nir_bcsel(b, small, scaled_up_b, alu->src[1].src.ssa))); in nir_scale_fdiv_instr()

Completed in 12 milliseconds

123456789