Searched refs:array (Results 201 - 225 of 2467) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/src/gpu/
H A DGrTBSearch.h14 int GrTBSearch(const ELEM array[], int count, KEY target) { argument
25 if (LT(array[index], target)) {
33 if (EQ(array[high], target)) {
38 if (LT(array[high], target)) {
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dnearest_neighbor.h25 * Find index in array such that the array element with said
26 * index is the element of said array closest to "value"
31 int16_t *index, /* (o) index of array element closest to value */
32 int16_t *array, /* (i) data array (Q2) */
34 int16_t arlength /* (i) dimension of data array (==8) */
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-222893.js34 var array = ["a", "b", "c"]; variable
39 assertArrayEquals(array,
55 f.apply(this, array);
62 g.apply(this, array);
/external/chromium_org/v8/test/webkit/
H A Darray-constructor-host-call.js25 "This tests that array construction via a host call works."
33 var array = constructArray(Array);
34 shouldBeTrue("array instanceof Array");
35 shouldBe("array.length", "100");
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp9.cpp14 int array[NumElements]; member in class:N::Y
/external/clang/test/Index/
H A Dload-exprs.c24 struct X array[3]; member in struct:Y
30 struct Y y0 = { .array[StartIndex].b = bval, .array[StartIndex].a = aval };
31 __builtin_offsetof(struct Y, array[StartIndex].b);
69 // CHECK: load-exprs.c:30:20: MemberRef=array:24:12 Extent=[30:20 - 30:25]
73 // CHECK: load-exprs.c:30:49: MemberRef=array:24:12 Extent=[30:49 - 30:54]
78 // CHECK: load-exprs.c:31:32: MemberRef=array:24:12 Extent=[31:32 - 31:37]
/external/clang/test/Sema/
H A Daddress-constant.c8 int *array[] = {&i, a, &s.i}; variable
/external/clang/test/SemaCXX/
H A Darray-bounds-system-header.cpp2 #include <array-bounds-system-header.h>
6 BAD_MACRO_2(a, 3); // expected-warning {{array index 3}}
8 NOP(a[3] = 5); // expected-warning {{array index 3}}
H A Dnon-empty-class-size-zero.cpp5 int array[0]; member in struct:X
/external/compiler-rt/test/BlocksRuntime/
H A Dbyrefcopyint.c57 voidVoid array[100]; local
59 array[i] = testRoutine(argv[0]);
60 array[i]();
63 Block_release(array[i]);
/external/eigen/doc/snippets/
H A DMatrixBase_select.cpp5 m = (m.array() >= 5).select(-m, m);
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedBytes.java116 * Returns the least value present in {@code array}.
118 * @param array a <i>nonempty</i> array of {@code byte} values
119 * @return the value present in {@code array} that is less than or equal to
120 * every other value in the array
121 * @throws IllegalArgumentException if {@code array} is empty
123 public static byte min(byte... array) { argument
124 checkArgument(array.length > 0);
125 int min = toInt(array[0]);
126 for (int i = 1; i < array
143 max(byte... array) argument
164 join(String separator, byte... array) argument
[all...]
H A DUnsignedInts.java75 * Returns the least value present in {@code array}, treating values as unsigned.
77 * @param array a <i>nonempty</i> array of unsigned {@code int} values
78 * @return the value present in {@code array} that is less than or equal to every other value in
79 * the array according to {@link #compare}
80 * @throws IllegalArgumentException if {@code array} is empty
82 public static int min(int... array) { argument
83 checkArgument(array.length > 0);
84 int min = flip(array[0]);
85 for (int i = 1; i < array
102 max(int... array) argument
122 join(String separator, int... array) argument
[all...]
/external/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.fill/
H A DAndroid.mk17 test_makefile := external/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.fill/Android.mk
19 test_name := numerics/numarray/template.gslice.array/gslice.array.fill/assign_value
/external/libcxx/test/numerics/numarray/template.indirect.array/indirect.array.fill/
H A DAndroid.mk17 test_makefile := external/libcxx/test/numerics/numarray/template.indirect.array/indirect.array.fill/Android.mk
19 test_name := numerics/numarray/template.indirect.array/indirect.array.fill/assign_value
/external/libcxx/test/numerics/numarray/template.mask.array/mask.array.fill/
H A DAndroid.mk17 test_makefile := external/libcxx/test/numerics/numarray/template.mask.array/mask.array.fill/Android.mk
19 test_name := numerics/numarray/template.mask.array/mask.array.fill/assign_value
/external/skia/src/gpu/
H A DGrTBSearch.h14 int GrTBSearch(const ELEM array[], int count, KEY target) { argument
25 if (LT(array[index], target)) {
33 if (EQ(array[high], target)) {
38 if (LT(array[high], target)) {
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DNonCopyingSort.h35 inline void siftDown(RandomAccessIterator array, ptrdiff_t start, ptrdiff_t end, Predicate compareLess) argument
41 if (child < end && compareLess(array[child], array[child + 1]))
44 if (compareLess(array[root], array[child])) {
45 swap(array[root], array[child]);
53 inline void heapify(RandomAccessIterator array, ptrdiff_t count, Predicate compareLess) argument
58 siftDown(array, start, count - 1, compareLess);
/external/libcxx/test/algorithms/alg.sorting/alg.sort/partial.sort/
H A Dpartial_sort.pass.cpp25 int* array = new int[N]; local
27 array[i] = i;
28 std::random_shuffle(array, array+N);
29 std::partial_sort(array, array+M, array+N);
31 assert(array[i] == i);
32 delete [] array;
/external/stlport/test/unit/
H A Dreviter_test.cpp35 int array [] = { 1, 5, 2, 3 }; local
37 vector<int> v(array, array + 4);
50 int array [] = { 1, 5, 2, 3 }; local
52 vector<int> v(array, array + 4);
63 int array [] = { 1, 5, 2, 3 }; local
65 list<int> v(array, array + 4);
/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableList.java36 private final transient Object[] array; field in class:RegularImmutableList
38 RegularImmutableList(Object[] array, int offset, int size) { argument
41 this.array = array;
44 RegularImmutableList(Object[] array) { argument
45 this(array, 0, array.length);
58 return offset != 0 || size != array.length;
68 return (UnmodifiableIterator<E>) Iterators.forArray(array, offset, size);
73 System.arraycopy(array, offse
[all...]
/external/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.comp.assign/
H A DAndroid.mk17 test_makefile := external/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.comp.assign/Android.mk
19 test_name := numerics/numarray/template.gslice.array/gslice.array.comp.assign/and
23 test_name := numerics/numarray/template.gslice.array/gslice.array.comp.assign/multiply
27 test_name := numerics/numarray/template.gslice.array/gslice.array.comp.assign/addition
31 test_name := numerics/numarray/template.gslice.array/gslice.array
[all...]
/external/libcxx/test/numerics/numarray/template.indirect.array/indirect.array.comp.assign/
H A DAndroid.mk17 test_makefile := external/libcxx/test/numerics/numarray/template.indirect.array/indirect.array.comp.assign/Android.mk
19 test_name := numerics/numarray/template.indirect.array/indirect.array.comp.assign/and
23 test_name := numerics/numarray/template.indirect.array/indirect.array.comp.assign/multiply
27 test_name := numerics/numarray/template.indirect.array/indirect.array.comp.assign/addition
31 test_name := numerics/numarray/template.indirect.array/indirect.array
[all...]
/external/libcxx/test/numerics/numarray/template.mask.array/mask.array.comp.assign/
H A DAndroid.mk17 test_makefile := external/libcxx/test/numerics/numarray/template.mask.array/mask.array.comp.assign/Android.mk
19 test_name := numerics/numarray/template.mask.array/mask.array.comp.assign/and
23 test_name := numerics/numarray/template.mask.array/mask.array.comp.assign/multiply
27 test_name := numerics/numarray/template.mask.array/mask.array.comp.assign/addition
31 test_name := numerics/numarray/template.mask.array/mask.array
[all...]
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_l_o_c_a.py5 import array namespace
18 locations = array.array(format)
23 l = array.array("I")
38 locations = array.array("H")
43 locations = array.array("I", self.locations)
50 self.locations = array
[all...]

Completed in 2772 milliseconds

1234567891011>>