Home
last modified time | relevance | path

Searched refs:small (Results 1 – 25 of 738) sorted by relevance

12345678910>>...30

/external/clang/test/Sema/
Daarch64-neon-ranges.c6 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/skia/bench/
DLightingBench.cpp20 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
DColorFilterBench.cpp23 ColorFilterBaseBench(bool small) : fIsSmall(small) {} in ColorFilterBaseBench() argument
69 ColorFilterDimBrightBench(bool small) : INHERITED(small) { in ColorFilterDimBrightBench() argument
99 ColorFilterBrightGrayBench(bool small) : INHERITED(small) { in ColorFilterBrightGrayBench() argument
126 ColorFilterGrayBrightBench(bool small) : INHERITED(small) { in ColorFilterGrayBrightBench() argument
153 ColorFilterBlueBrightBench(bool small) : INHERITED(small) { in ColorFilterBlueBrightBench() argument
180 ColorFilterBrightBlueBench(bool small) : INHERITED(small) { in ColorFilterBrightBlueBench() argument
207 ColorFilterBrightBench(bool small) : INHERITED(small) { in ColorFilterBrightBench() argument
233 ColorFilterBlueBench(bool small) : INHERITED(small) { in ColorFilterBlueBench() argument
259 ColorFilterGrayBench(bool small) : INHERITED(small) {} in ColorFilterGrayBench() argument
DDisplacementBench.cpp20 DisplacementBaseBench(bool small) : in DisplacementBaseBench() argument
21 fInitialized(false), fIsSmall(small) { in DisplacementBaseBench()
90 DisplacementZeroBench(bool small) : INHERITED(small) { in DisplacementZeroBench() argument
117 DisplacementAlphaBench(bool small) : INHERITED(small) { in DisplacementAlphaBench() argument
143 DisplacementFullBench(bool small) : INHERITED(small) { in DisplacementFullBench() argument
/external/skia/gm/
Dbigmatrix.cpp49 SkScalar small = 1 / (500 * SK_Scalar1); in onDraw() local
52 path.addCircle(pt.fX, pt.fY, small); in onDraw()
57 SkRect rect = {pt.fX - small, pt.fY - small, in onDraw()
58 pt.fX + small, pt.fY + small}; in onDraw()
81 rect.setLTRB(pt.fX - small, pt.fY - small, in onDraw()
82 pt.fX + small, pt.fY + small); in onDraw()
Dverylargebitmap.cpp75 int small = 150; in onDraw() local
82 show_bm(canvas, small, small, colors); in onDraw()
87 show_bm(canvas, big, small, colors); in onDraw()
99 show_bm(canvas, veryBig, small, colors); in onDraw()
/external/skia/tests/
DInfRectTest.cpp62 SkScalar small = SkIntToScalar(10); in DEF_TEST() local
67 SkRect rect = SkRect::MakeXYWH(small, small, big, big); in DEF_TEST()
72 check_invalid(reporter, small, small, big, invalid[i]); in DEF_TEST()
73 check_invalid(reporter, small, small, invalid[i], big); in DEF_TEST()
74 check_invalid(reporter, small, invalid[i], big, big); in DEF_TEST()
75 check_invalid(reporter, invalid[i], small, big, big); in DEF_TEST()
/external/valgrind/memcheck/tests/
Dbig_blocks_freed_list.c11 char *small = NULL; in main() local
27 small = malloc (10000); in main()
28 free(small); in main()
41 if (small[10] > 0x0) jumped(); in main()
55 if (small[10] > 0x0) jumped(); in main()
/external/icu/icu4c/source/test/cintltst/
Dsorttest.c30 uint16_t small[]={ 8, 1, 2, 5, 4, 3, 7, 6 }; in SortTest() local
40 …uprv_sortArray(small, UPRV_LENGTHOF(small), sizeof(small[0]), uprv_uint16Comparator, NULL, TRUE, &… in SortTest()
45 for(i=1; i<UPRV_LENGTHOF(small); ++i) { in SortTest()
46 if(small[i-1]>small[i]) { in SortTest()
47 … log_err("uprv_sortArray(small) mis-sorted [%d]=%u > [%d]=%u\n", i-1, small[i-1], i, small[i]); in SortTest()
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
DCorrelatedRandomVectorGenerator.java98 RealMatrix covariance, double small, in CorrelatedRandomVectorGenerator() argument
108 decompose(covariance, small); in CorrelatedRandomVectorGenerator()
126 public CorrelatedRandomVectorGenerator(RealMatrix covariance, double small, in CorrelatedRandomVectorGenerator() argument
136 decompose(covariance, small); in CorrelatedRandomVectorGenerator()
188 private void decompose(RealMatrix covariance, double small) in decompose() argument
224 if (c[ir][ir] < small) { in decompose()
232 if (c[index[i]][index[i]] < -small) { in decompose()
/external/boringssl/src/crypto/ec/
Dp256-64.c225 static void smallfelem_neg(felem out, const smallfelem small) { in smallfelem_neg() argument
227 out[0] = zero105[0] - small[0]; in smallfelem_neg()
228 out[1] = zero105[1] - small[1]; in smallfelem_neg()
229 out[2] = zero105[2] - small[2]; in smallfelem_neg()
230 out[3] = zero105[3] - small[3]; in smallfelem_neg()
419 static void smallfelem_square(longfelem out, const smallfelem small) { in smallfelem_square() argument
423 a = ((uint128_t)small[0]) * small[0]; in smallfelem_square()
429 a = ((uint128_t)small[0]) * small[1]; in smallfelem_square()
436 a = ((uint128_t)small[0]) * small[2]; in smallfelem_square()
443 a = ((uint128_t)small[0]) * small[3]; in smallfelem_square()
[all …]
/external/libvterm/src/
Drect.h39 static int rect_contains(VTermRect *big, VTermRect *small) in rect_contains() argument
41 if(small->start_row < big->start_row) return 0; in rect_contains()
42 if(small->start_col < big->start_col) return 0; in rect_contains()
43 if(small->end_row > big->end_row) return 0; in rect_contains()
44 if(small->end_col > big->end_col) return 0; in rect_contains()
/external/eigen/test/
Dstable_norm.cpp62 Scalar small = factor * ((std::numeric_limits<RealScalar>::min)() * RealScalar(1e4)); in stable_norm() local
70 vsmall.fill(small); in stable_norm()
91 VERIFY(isFinite(sqrt(size)*abs(small))); in stable_norm()
92 …VERIFY_IS_NOT_APPROX(sqrt(copy(vsmall.squaredNorm())), abs(sqrt(size)*small)); // here the defau… in stable_norm()
93 VERIFY_IS_APPROX(vsmall.stableNorm(), sqrt(size)*abs(small)); in stable_norm()
94 VERIFY_IS_APPROX(vsmall.blueNorm(), sqrt(size)*abs(small)); in stable_norm()
95 VERIFY_IS_APPROX(vsmall.hypotNorm(), sqrt(size)*abs(small)); in stable_norm()
/external/valgrind/none/tests/s390x/
Dmvcl.c174 uint8_t byte, buf[10], small[5], i; in main() local
205 memset(small, 's', sizeof small); in main()
206 run_test(buf, sizeof buf, small, sizeof small, 'a'); in main()
211 memset(small, 's', sizeof small); in main()
212 run_test(small, sizeof small, buf, sizeof buf, 'a'); in main()
/external/v8/test/cctest/
Dtest-constantpool.cc38 ConstantPoolArray::NumberOfEntries small(3, 1, 2, 1); in TEST() local
39 Handle<ConstantPoolArray> array = factory->NewConstantPoolArray(small); in TEST()
79 ConstantPoolArray::NumberOfEntries small(1, 2, 3, 4); in TEST() local
82 factory->NewExtendedConstantPoolArray(small, extended); in TEST()
195 ConstantPoolArray::NumberOfEntries small(1, 5, 2, 0); in TEST() local
196 Handle<ConstantPoolArray> array = factory->NewConstantPoolArray(small); in TEST()
215 ConstantPoolArray::NumberOfEntries small(1, 0, 0, 4); in TEST() local
218 factory->NewExtendedConstantPoolArray(small, extended); in TEST()
238 ConstantPoolArray::NumberOfEntries small(1, 0, 0, 1); in TEST() local
239 Handle<ConstantPoolArray> array = factory->NewConstantPoolArray(small); in TEST()
[all …]
/external/bzip2/
Dbzlib.h80 # ifdef small
82 # undef small
119 int small
143 int small,
219 int small,
/external/v8/test/mjsunit/es6/
Dstring-html.js117 assertEquals('_'.small(), '<small>_</small>');
118 assertEquals('<'.small(), '<small><</small>');
119 assertEquals(String.prototype.small.call(0x2A), '<small>42</small>');
121 String.prototype.small.call(undefined); method in String
124 String.prototype.small.call(null); method in String
126 assertEquals(String.prototype.small.length, 0);
/external/clang/test/CodeGen/
Dsparcv9-abi.c25 struct small { struct
30 struct small f_small(struct small x) { in f_small()
170 s += *va_arg(ap, struct small).a; in f_variable()
/external/llvm/test/CodeGen/Hexagon/
Dstruct_args.ll5 %struct.small = type { i32, i32 }
7 @s1 = common global %struct.small zeroinitializer, align 4
11 %0 = load i64, i64* bitcast (%struct.small* @s1 to i64*), align 1
/external/vixl/doc/
Dchangelog.md9 + Other small bug fixes and improvements.
19 + Other small bug fixes and improvements.
30 + Other small bug fixes and build system improvements.
44 + Other small bug fixes and build system improvements.
57 + Other small bug fixes.
74 + Other small bug fixes and improvements.
93 + Other small bug fixes.
/external/icu/icu4c/source/test/testdata/
Dtestdata.mak132 @"$(ICUTOOLS)\makeconv\$(CFG)\makeconv" --small -d"$(TESTDATABLD)" $**
136 @"$(ICUTOOLS)\makeconv\$(CFG)\makeconv" --small -d"$(TESTDATABLD)" $**
140 @"$(ICUTOOLS)\makeconv\$(CFG)\makeconv" --small -d"$(TESTDATABLD)" $**
144 @"$(ICUTOOLS)\makeconv\$(CFG)\makeconv" --small -d"$(TESTDATABLD)" $**
148 @"$(ICUTOOLS)\makeconv\$(CFG)\makeconv" --small -d"$(TESTDATABLD)" $**
152 @"$(ICUTOOLS)\makeconv\$(CFG)\makeconv" --small -d"$(TESTDATABLD)" $**
156 @"$(ICUTOOLS)\makeconv\$(CFG)\makeconv" --small -d"$(TESTDATABLD)" $**
160 @"$(ICUTOOLS)\makeconv\$(CFG)\makeconv" --small -d"$(TESTDATABLD)" $**
/external/llvm/test/Object/
Dmacho-invalid.test7 RUN: not llvm-objdump -private-headers %p/Inputs/macho-invalid-too-small-load-command 2>&1 \
9 RUN: not llvm-objdump -private-headers %p/Inputs/macho64-invalid-too-small-load-command 2>&1 \
12 RUN: not llvm-objdump -private-headers %p/Inputs/macho-invalid-too-small-segment-load-command 2>&1 \
14 RUN: not llvm-objdump -private-headers %p/Inputs/macho64-invalid-too-small-segment-load-command 2>&…
42 SMALL-SEGLOADC-SIZE: Segment load command size is too small
/external/clang/docs/tools/
Dmanpage.css23 color: #ffffff; font-size: xx-small;
27 color: #ffffff; font-size: xx-small;
50 color: #336699; font-size: small;
54 color: #336699; font-size: small;
58 font-family: Arial,Helvetica; font-size: small;
77 .smstd { font-family: Arial,Helvetica; color: #000000; font-size: x-small; }
80 font-family: sans-serif; font-size: x-small; color: black; }
88 .meerkatDate { font-family: sans-serif; font-size: xx-small; color: #336699; }
/external/jemalloc/include/jemalloc/internal/
Dsize_classes.sh206 * bin: 'yes' if a small bin size class, 'no' otherwise.
211 * NBINS: Number of small size class bins.
215 * SMALL_MAXCLASS: Maximum small size class.
255 * cannot support more than 256 small size classes. Further constrain NBINS to
256 * 255 since all small size classes, plus a "not small" size class must be
/external/chromium-trace/trace-viewer/tracing/tracing/ui/extras/chrome/cc/
Dpicture_ops_list_view.css19 font-size: small;
34 font-size: x-small;
43 font-size: small;

12345678910>>...30