Searched defs:small (Results 1 - 25 of 59) sorted by relevance

123

/external/python/cpython3/Include/
H A Daccu.h11 * of keeping a huge number of small separate objects, and the quadratic
19 #undef small /* defined by some Windows headers */ macro
23 PyObject *small; /* Pending small strings */ member in struct:__anon19779
/external/clang/test/SemaCXX/
H A Dattr-print.cpp23 // CHECK: int small __attribute__((mode(byte)));
24 int small __attribute__((mode(byte))); variable
H A Dbuiltin-object-size-cxx14.cpp96 SmallStruct small; local
97 copy5CharsIntoStrict(small.buf); // expected-error{{no matching function for call}}
/external/valgrind/memcheck/tests/
H A Dbig_blocks_freed_list.c11 char *small = NULL; local
25 /* Then verify that dangling pointers for small blocks is not hampered
27 small = malloc (10000);
28 free(small);
32 with the malloc of small above. */
41 if (small[10] > 0x0) jumped();
55 if (small[10] > 0x0) jumped();
/external/libbrillo/brillo/
H A Dany_internal_impl_unittest.cc79 } small = {}; local
80 buffer.Assign(small);
/external/libvterm/src/
H A Drect.h38 /* True if small is contained entirely within big */
39 static int rect_contains(VTermRect *big, VTermRect *small) argument
41 if(small->start_row < big->start_row) return 0;
42 if(small->start_col < big->start_col) return 0;
43 if(small->end_row > big->end_row) return 0;
44 if(small->end_col > big->end_col) return 0;
/external/skia/bench/
H A DMagnifierBench.cpp21 MagnifierBench(bool small) : argument
22 fIsSmall(small), fInitialized(false) {
H A DMergeBench.cpp56 MergeBench(bool small) : fIsSmall(small), fInitialized(false) { } argument
H A DColorFilterBench.cpp47 ColorFilterBaseBench(bool small) : fIsSmall(small) { } argument
66 ColorFilterDimBrightBench(bool small) : INHERITED(small) { } argument
94 ColorFilterBrightGrayBench(bool small) : INHERITED(small) { } argument
119 ColorFilterGrayBrightBench(bool small) : INHERITED(small) { } argument
144 ColorFilterBlueBrightBench(bool small) : INHERITED(small) { } argument
169 ColorFilterBrightBlueBench(bool small) argument
194 ColorFilterBrightBench(bool small) argument
218 ColorFilterBlueBench(bool small) argument
242 ColorFilterGrayBench(bool small) argument
[all...]
H A DDisplacementBench.cpp21 DisplacementBaseBench(bool small) : fInitialized(false), fIsSmall(small) { } argument
93 DisplacementZeroBench(bool small) : INHERITED(small) { } argument
120 DisplacementAlphaBench(bool small) : INHERITED(small) { } argument
146 DisplacementFullBench(bool small) : INHERITED(small) { } argument
/external/skia/gm/
H A Dbigmatrix.cpp35 SkScalar small = 1 / (500 * SK_Scalar1); local
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);
[all...]
H A Dverylargebitmap.cpp93 int small = 150; variable
100 show_image(canvas, small, small, colors, fProc);
105 show_image(canvas, big, small, colors, fProc);
117 show_image(canvas, veryBig, small, colors, fProc);
/external/skqp/bench/
H A DMagnifierBench.cpp21 MagnifierBench(bool small) : argument
22 fIsSmall(small), fInitialized(false) {
H A DMergeBench.cpp56 MergeBench(bool small) : fIsSmall(small), fInitialized(false) { } argument
H A DColorFilterBench.cpp47 ColorFilterBaseBench(bool small) : fIsSmall(small) { } argument
66 ColorFilterDimBrightBench(bool small) : INHERITED(small) { } argument
94 ColorFilterBrightGrayBench(bool small) : INHERITED(small) { } argument
119 ColorFilterGrayBrightBench(bool small) : INHERITED(small) { } argument
144 ColorFilterBlueBrightBench(bool small) : INHERITED(small) { } argument
169 ColorFilterBrightBlueBench(bool small) argument
194 ColorFilterBrightBench(bool small) argument
218 ColorFilterBlueBench(bool small) argument
242 ColorFilterGrayBench(bool small) argument
[all...]
H A DDisplacementBench.cpp21 DisplacementBaseBench(bool small) : fInitialized(false), fIsSmall(small) { } argument
93 DisplacementZeroBench(bool small) : INHERITED(small) { } argument
120 DisplacementAlphaBench(bool small) : INHERITED(small) { } argument
146 DisplacementFullBench(bool small) : INHERITED(small) { } argument
/external/skqp/gm/
H A Dbigmatrix.cpp35 SkScalar small = 1 / (500 * SK_Scalar1); local
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);
[all...]
H A Dverylargebitmap.cpp93 int small = 150; variable
100 show_image(canvas, small, small, colors, fProc);
105 show_image(canvas, big, small, colors, fProc);
117 show_image(canvas, veryBig, small, colors, fProc);
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DCorrelatedRandomVectorGenerator.java86 * @param small diagonal elements threshold under which column are
98 RealMatrix covariance, double small,
108 decompose(covariance, small);
119 * @param small diagonal elements threshold under which column are
126 public CorrelatedRandomVectorGenerator(RealMatrix covariance, double small, argument
136 decompose(covariance, small);
176 * <li>columns with the too small diagonal element are discarded</li>
183 * @param small diagonal elements threshold under which column are
188 private void decompose(RealMatrix covariance, double small) argument
224 if (c[ir][ir] < small) {
97 CorrelatedRandomVectorGenerator(double[] mean, RealMatrix covariance, double small, NormalizedRandomGenerator generator) argument
[all...]
/external/clang/test/Sema/
H A Daarch64-neon-ranges.c6 void test_vext_8bit(int8x8_t small, int8x16_t big) { argument
7 vext_s8(small, small, 7);
8 vext_u8(small, small, 7);
9 vext_p8(small, small, 7);
14 vext_s8(small, small, 8); // expected-error {{argument should be a value from 0 to 7}}
15 vext_u8(small, smal
22 test_mul_lane_f64(float64x1_t small, float64x2_t big, float64x2_t rhs) argument
39 test_ld1st1(int8x8_t small, int8x16_t big, void *addr) argument
[all...]
/external/skia/tests/
H A DInfRectTest.cpp62 SkScalar small = SkIntToScalar(10); local
67 SkRect rect = SkRect::MakeXYWH(small, small, big, big);
72 check_invalid(reporter, small, small, big, invalid[i]);
73 check_invalid(reporter, small, small, invalid[i], big);
74 check_invalid(reporter, small, invalid[i], big, big);
75 check_invalid(reporter, invalid[i], small, big, big);
/external/skqp/tests/
H A DInfRectTest.cpp62 SkScalar small = SkIntToScalar(10); local
67 SkRect rect = SkRect::MakeXYWH(small, small, big, big);
72 check_invalid(reporter, small, small, big, invalid[i]);
73 check_invalid(reporter, small, small, invalid[i], big);
74 check_invalid(reporter, small, invalid[i], big, big);
75 check_invalid(reporter, invalid[i], small, big, big);
/external/bzip2/
H A Dbzlib.h80 # ifdef small
81 /* windows.h define small to char */
82 # undef small macro
119 int small
143 int small,
219 int small,
/external/clang/test/CodeGen/
H A Dsparcv9-abi.c25 struct small { struct
29 // CHECK-LABEL: define %struct.small @f_small(i32* %x.coerce0, i32* %x.coerce1)
30 struct small f_small(struct small x) {
167 // CHECK-DAG: %[[ADR:[^ ]+]] = bitcast i8* %[[CUR]] to %struct.small*
170 s += *va_arg(ap, struct small).a;
/external/eigen/bench/
H A Ddense_solvers.cpp103 const int small = 8; local
104 sizes.push_back(Array2i(small,small));
108 sizes.push_back(Array2i(10000,small));

Completed in 607 milliseconds

123