/external/llvm-project/clang/test/Sema/ |
D | aarch64-neon-ranges.c | 6 void test_vext_8bit(int8x8_t small, int8x16_t big) { in test_vext_8bit() argument 7 vext_s8(small, small, 7); in test_vext_8bit() 8 vext_u8(small, small, 7); in test_vext_8bit() 9 vext_p8(small, small, 7); in test_vext_8bit() 14 …vext_s8(small, small, 8); // expected-error-re {{argument value {{.*}} is outside the valid range}} in test_vext_8bit() 15 …vext_u8(small, small, 8); // expected-error-re {{argument value {{.*}} is outside the valid range}} in test_vext_8bit() 16 …vext_p8(small, small, 8); // expected-error-re {{argument value {{.*}} is outside the valid range}} in test_vext_8bit() 22 void test_mul_lane_f64(float64x1_t small, float64x2_t big, float64x2_t rhs) { in test_mul_lane_f64() argument 23 vmul_lane_f64(small, small, 0); in test_mul_lane_f64() 24 vmul_laneq_f64(small, big, 1); in test_mul_lane_f64() [all …]
|
/external/clang/test/Sema/ |
D | aarch64-neon-ranges.c | 6 void test_vext_8bit(int8x8_t small, int8x16_t big) { in test_vext_8bit() argument 7 vext_s8(small, small, 7); in test_vext_8bit() 8 vext_u8(small, small, 7); in test_vext_8bit() 9 vext_p8(small, small, 7); in test_vext_8bit() 14 vext_s8(small, small, 8); // expected-error {{argument should be a value from 0 to 7}} in test_vext_8bit() 15 vext_u8(small, small, 8); // expected-error {{argument should be a value from 0 to 7}} in test_vext_8bit() 16 vext_p8(small, small, 8); // expected-error {{argument should be a value from 0 to 7}} in test_vext_8bit() 22 void test_mul_lane_f64(float64x1_t small, float64x2_t big, float64x2_t rhs) { in test_mul_lane_f64() argument 23 vmul_lane_f64(small, small, 0); in test_mul_lane_f64() 24 vmul_laneq_f64(small, big, 1); in test_mul_lane_f64() [all …]
|
/external/jackson-databind/src/test/java/perf/ |
D | ManualWritePerfWithAllTypes.java | 85 AllTypes small = new AllTypes(); in _small() local 86 small.ignoreMe = "THIS WILL NOT PASS"; in _small() 87 small.ignoreMe2 = "THIS WILL NOT PASS EITHER"; in _small() 88 small.ignoreMe3 = "THIS WILL NOT PASS TOO"; in _small() 89 small.bigDecimal = new BigDecimal("1.235678900"); in _small() 90 small.date = new Date(); in _small() 91 small.bar = FooEnum.BAR; in _small() 92 small.foo = FooEnum.FOO; in _small() 93 small.string = "Hi Mom"; in _small() 94 small.myDouble = 1.2345d; in _small() [all …]
|
/external/openssh/ |
D | sntrup4591761.c | 67 typedef crypto_int8 small; typedef 69 static void small_encode(unsigned char *,const small *); 71 static void small_decode(small *,const unsigned char *); 74 static void small_random(small *); 76 static void small_random_weightw(small *); 86 static inline int mod3_nonzero_mask(small x) in mod3_nonzero_mask() 93 static inline small mod3_freeze(crypto_int32 a) in mod3_freeze() 100 static inline small mod3_minusproduct(small a,small b,small c) in mod3_minusproduct() 108 static inline small mod3_plusproduct(small a,small b,small c) in mod3_plusproduct() 116 static inline small mod3_product(small a,small b) in mod3_product() [all …]
|
/external/zstd/tests/regression/ |
D | results.csv | 36 silesia, small window log, compress cctx, … 37 silesia, small hash log, compress cctx, … 38 silesia, small chain log, compress cctx, … 75 github, small window log, compress cctx, … 76 github, small hash log, compress cctx, … 77 github, small chain log, compress cctx, … 100 silesia, small window log, zstdcli, … 101 silesia, small hash log, zstdcli, … 102 silesia, small chain log, zstdcli, … 126 silesia.tar, small window log, zstdcli, … [all …]
|
/external/harfbuzz_ng/test/shaping/data/in-house/tests/ |
D | automatic-fractions.tests | 1 …+600|two.numr=1+600|three.numr=2+600|fraction=3+252|four.small=4+600|five.small=5+600|six.small=6+… 2 …+600|two.numr=1+600|three.numr=2+600|fraction=3+252|four.small=4+600|five.small=5+600|six.small=6+… 3 ….numr=1+600|uni0663.numr=2+600|fraction=3+252|uni0664.small=4+600|uni0665.small=5+600|uni0666.smal…
|
/external/python/cpython3/Objects/ |
D | accu.c | 22 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 = NULL; in _PyAccu_Finish() [all …]
|
/external/skqp/tests/ |
D | InfRectTest.cpp | 26 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()
|
/external/skia/tests/ |
D | InfRectTest.cpp | 26 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()
|
/external/skqp/gm/ |
D | bigmatrix.cpp | 35 SkScalar small = 1 / (500 * SK_Scalar1); variable 38 path.addCircle(pt.fX, pt.fY, small); 43 SkRect rect = {pt.fX - small, pt.fY - small, 44 pt.fX + small, pt.fY + small}; 63 rect.setLTRB(pt.fX - small, pt.fY - small, 64 pt.fX + small, pt.fY + small);
|
/external/skia/gm/ |
D | bigmatrix.cpp | 42 SkScalar small = 1 / (500 * SK_Scalar1); variable 45 canvas->drawCircle(pt.fX, pt.fY, small, paint); 49 SkRect rect = {pt.fX - small, pt.fY - small, pt.fX + small, pt.fY + small}; 67 rect.setLTRB(pt.fX - small, pt.fY - small, pt.fX + small, pt.fY + small);
|
/external/webrtc/api/units/ |
D | data_size_unittest.cc | 57 const DataSize small = DataSize::Bytes(kSmall); in TEST() local 62 EXPECT_EQ(small, small); in TEST() 63 EXPECT_LE(small, small); in TEST() 64 EXPECT_GE(small, small); in TEST() 65 EXPECT_NE(small, large); in TEST() 66 EXPECT_LE(small, large); in TEST() 67 EXPECT_LT(small, large); in TEST() 68 EXPECT_GE(large, small); in TEST() 69 EXPECT_GT(large, small); in TEST() 70 EXPECT_LT(DataSize::Zero(), small); in TEST()
|
/external/skqp/bench/ |
D | LightingBench.cpp | 19 LightingBaseBench(bool small) : fIsSmall(small) { } in LightingBaseBench() argument 100 LightingPointLitDiffuseBench(bool small) : INHERITED(small) { } in LightingPointLitDiffuseBench() argument 121 LightingDistantLitDiffuseBench(bool small) : INHERITED(small) { } in LightingDistantLitDiffuseBench() argument 142 LightingSpotLitDiffuseBench(bool small) : INHERITED(small) { } in LightingSpotLitDiffuseBench() argument 166 LightingPointLitSpecularBench(bool small) : INHERITED(small) { } in LightingPointLitSpecularBench() argument 188 LightingDistantLitSpecularBench(bool small) : INHERITED(small) { } in LightingDistantLitSpecularBench() argument 210 LightingSpotLitSpecularBench(bool small) : INHERITED(small) { } in LightingSpotLitSpecularBench() argument
|
D | ColorFilterBench.cpp | 47 ColorFilterBaseBench(bool small) : fIsSmall(small) { } in ColorFilterBaseBench() argument 66 ColorFilterDimBrightBench(bool small) : INHERITED(small) { } in ColorFilterDimBrightBench() argument 94 ColorFilterBrightGrayBench(bool small) : INHERITED(small) { } in ColorFilterBrightGrayBench() argument 119 ColorFilterGrayBrightBench(bool small) : INHERITED(small) { } in ColorFilterGrayBrightBench() argument 144 ColorFilterBlueBrightBench(bool small) : INHERITED(small) { } in ColorFilterBlueBrightBench() argument 169 ColorFilterBrightBlueBench(bool small) : INHERITED(small) { } in ColorFilterBrightBlueBench() argument 194 ColorFilterBrightBench(bool small) : INHERITED(small) { } in ColorFilterBrightBench() argument 218 ColorFilterBlueBench(bool small) : INHERITED(small) { } in ColorFilterBlueBench() argument 242 ColorFilterGrayBench(bool small) : INHERITED(small) { } in ColorFilterGrayBench() argument
|
/external/skia/bench/ |
D | LightingBench.cpp | 19 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) : INHERITED(small) { } in LightingDistantLitSpecularBench() argument 193 LightingSpotLitSpecularBench(bool small) : INHERITED(small) { } in LightingSpotLitSpecularBench() argument
|
/external/llvm-project/llvm/test/Transforms/SafeStack/X86/ |
D | phi-cycle.ll | 4 %struct.small = type { i8 } 17 %tmp = alloca %struct.small*, align 8 18 %tmp1 = call i32 (...) @dummy(%struct.small** %tmp) nounwind 19 %tmp2 = load %struct.small*, %struct.small** %tmp, align 8 20 %tmp3 = ptrtoint %struct.small* %tmp2 to i64 26 %tmp7 = phi %struct.small* [ %tmp19, %bb17 ], [ %tmp2, %bb ] 29 %tmp10 = getelementptr inbounds %struct.small, %struct.small* %tmp7, i64 0, i32 0 39 %tmp18 = getelementptr inbounds %struct.small*, %struct.small** %tmp, i64 %tmp8 40 %tmp19 = load %struct.small*, %struct.small** %tmp18, align 8
|
/external/llvm/test/Transforms/SafeStack/ |
D | phi-cycle.ll | 4 %struct.small = type { i8 } 17 %tmp = alloca %struct.small*, align 8 18 %tmp1 = call i32 (...) @dummy(%struct.small** %tmp) nounwind 19 %tmp2 = load %struct.small*, %struct.small** %tmp, align 8 20 %tmp3 = ptrtoint %struct.small* %tmp2 to i64 26 %tmp7 = phi %struct.small* [ %tmp19, %bb17 ], [ %tmp2, %bb ] 29 %tmp10 = getelementptr inbounds %struct.small, %struct.small* %tmp7, i64 0, i32 0 39 %tmp18 = getelementptr inbounds %struct.small*, %struct.small** %tmp, i64 %tmp8 40 %tmp19 = load %struct.small*, %struct.small** %tmp18, align 8
|
/external/tensorflow/tensorflow/lite/kernels/ |
D | BUILD | 117 size = "small", 275 size = "small", 489 size = "small", 505 size = "small", 516 size = "small", 719 size = "small", 836 size = "small", 850 size = "small", 864 size = "small", 878 size = "small", [all …]
|
/external/libcxx/test/std/utilities/any/any.class/any.assign/ |
D | copy.pass.cpp | 113 any a((small(1))); in test_copy_assign_self() 114 assert(small::count == 1); in test_copy_assign_self() 118 assert(small::count == 1); in test_copy_assign_self() 119 assertContains<small>(a, 1); in test_copy_assign_self() 122 assert(small::count == 0); in test_copy_assign_self() 167 any lhs((small(2))); in test_copy_assign_throws() 169 assert(small::count == 1); in test_copy_assign_throws() 174 assert(small::count == 1); in test_copy_assign_throws() 176 assertContains<small>(lhs, 2); in test_copy_assign_throws() 198 test_copy_assign<small, large>(); in main() [all …]
|
/external/llvm-project/libcxx/test/std/utilities/any/any.class/any.assign/ |
D | copy.pass.cpp | 110 any a((small(1))); in test_copy_assign_self() 111 assert(small::count == 1); in test_copy_assign_self() 115 assert(small::count == 1); in test_copy_assign_self() 116 assertContains<small>(a, 1); in test_copy_assign_self() 119 assert(small::count == 0); in test_copy_assign_self() 164 any lhs((small(2))); in test_copy_assign_throws() 166 assert(small::count == 1); in test_copy_assign_throws() 171 assert(small::count == 1); in test_copy_assign_throws() 173 assertContains<small>(lhs, 2); in test_copy_assign_throws() 196 test_copy_assign<small, large>(); in main() [all …]
|
/external/fmtlib/doc/bootstrap/ |
D | type.less | 16 small, 17 .small { 20 color: @headings-small-color; 30 small, 31 .small { 41 small, 42 .small { 77 // Ex: (12px small font / 14px base font) * 100% = about 85% 78 small, 79 .small { [all …]
|
/external/llvm-project/clang/test/CodeGen/RISCV/ |
D | riscv64-lp64-lp64f-lp64d-abi.c | 101 struct small { struct 106 void f_agg_small(struct small x) { in f_agg_small() argument 112 struct small f_agg_small_ret() { in f_agg_small_ret() 113 return (struct small){1, 0}; in f_agg_small_ret() 190 int f_scalar_stack_1(struct tiny a, struct small b, struct small_aligned c, in f_scalar_stack_1() 222 (struct small){10, NULL}, (struct small_aligned){11}, in f_va_caller() 229 f_va_callee(1, 2, 3, 4, (struct small){5, NULL}, 6, 7, 8, 9); in f_va_caller() 235 f_va_callee(1, 2, 3, 4, 5, (struct small){6, NULL}, 7, 8, 9); in f_va_caller() 241 f_va_callee(1, 2, 3, 4, 5, 6, (struct small){7, NULL}, 8, 9); in f_va_caller() 422 struct small ss = __builtin_va_arg(va, struct small); in f_va_4()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | check_ops_test.py | 159 small = constant_op.constant([1, 2], name="small") 160 with ops.control_dependencies([check_ops.assert_equal(small, small)]): 161 out = array_ops.identity(small) 173 small = constant_op.constant([1, 2], name="small") 174 x = check_ops.assert_equal(small, small) 189 small = array_ops.placeholder(dtypes.int32, name="small") 192 [check_ops.assert_equal(big, small, message="fail")]): 193 out = array_ops.identity(small) 195 out.eval(feed_dict={small: [1, 2], big: [3, 4]}) 241 small = constant_op.constant([[20, 2], [3, 30], [60, 6]]) [all …]
|
/external/pdfium/xfa/fgas/crt/ |
D | cfgas_decimal_unittest.cpp | 20 CFGAS_Decimal small(std::numeric_limits<int32_t>::min()); in TEST() local 22 EXPECT_STREQ(L"-2147483648", small.ToWideString().c_str()); in TEST() 27 CFGAS_Decimal small(std::numeric_limits<uint32_t>::min()); in TEST() local 29 EXPECT_STREQ(L"0", small.ToWideString().c_str()); in TEST() 34 CFGAS_Decimal small(std::numeric_limits<uint64_t>::min()); in TEST() local 36 EXPECT_STREQ(L"0", small.ToWideString().c_str()); in TEST() 69 CFGAS_Decimal small(L"-1000000000000000000000000"); in TEST() local 71 EXPECT_STREQ(L"-1000000000000000000000000", small.ToWideString().c_str()); in TEST()
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/ |
D | BUILD | 130 size = "small", 137 size = "small", 144 size = "small", 151 size = "small", 158 size = "small", 165 size = "small", 172 size = "small", 179 size = "small", 186 size = "small", 193 size = "small", [all …]
|