Searched defs:array (Results 126 - 150 of 1079) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DUint8Array.h39 static inline PassRefPtr<Uint8Array> create(const unsigned char* array, unsigned length);
42 // Should only be used when it is known the entire array will be filled. Do
70 PassRefPtr<Uint8Array> Uint8Array::create(const unsigned char* array, unsigned length) argument
72 return TypedArrayBase<unsigned char>::create<Uint8Array>(array, length);
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dwrite_bits.h15 // Write bits into a byte array.
53 uint8_t * __restrict array) {
63 uint8_t *p = &array[*pos >> 3];
70 uint8_t *array_pos = &array[*pos >> 3];
85 inline void WriteBitsPrepareStorage(int pos, uint8_t *array) { argument
90 array[pos >> 3] = 0;
50 WriteBits(int n_bits, uint64_t bits, int * __restrict pos, uint8_t * __restrict array) argument
/external/chromium_org/third_party/icu/source/common/unicode/
H A Duset.h224 const uint16_t *array; member in struct:USerializedSet
226 * The length of the array that contains BMP characters.
231 * The total length of the array.
236 * A small buffer for the array to reduce memory allocations.
1012 * Serializes this set into an array of 16-bit integers. Serialization
1016 * The array
1033 * The array starts with a header. After the header are n bmp
1064 * Given a serialized array, fill in the given serialized set object.
1066 * @param src pointer to start of array
1067 * @param srcLength length of array
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_fifo.h56 void **array = (void**)&fifo[1]; local
63 array[fifo->head] = ptr;
73 void **array = (void**)&fifo[1]; local
81 *ptr = array[fifo->tail];
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dclientattrib.c40 do_enable_disable(GLenum array, GLboolean val) argument
46 if (array == GL_TEXTURE_COORD_ARRAY) {
50 if (!__glXSetArrayEnable(state, array, index, val)) {
56 __indirect_glEnableClientState(GLenum array) argument
58 do_enable_disable(array, GL_TRUE);
62 __indirect_glDisableClientState(GLenum array) argument
64 do_enable_disable(array, GL_FALSE);
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dgrowable_memory_byte_array.h34 virtual int32_t CopyTo(ByteArray* array) { return ByteArray::CopyTo(array); } argument
35 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length) { argument
36 return ByteArray::CopyTo(array, offset, length);
39 ByteArray* array,
42 return ByteArray::CopyTo(dst_offset, array, src_offset, length);
38 CopyTo(int32_t dst_offset, ByteArray* array, int32_t src_offset, int32_t length) argument
H A Dmemory_byte_array.h26 // Construct a new MemoryByteArray with a new array of the size given. It is
27 // assumed that none of the array is filled and readable.
33 // Construct a new MemoryByteArray using byte array.
34 // @param b the byte array that provides the actual storage
35 // @param filled_length the index of the last byte in the array has data
46 virtual int32_t CopyTo(ByteArray* array) { return ByteArray::CopyTo(array); } argument
47 virtual int32_t CopyTo(ByteArray* array, int32_t offset, int32_t length) { argument
48 return ByteArray::CopyTo(array, offset, length);
51 ByteArray* array,
50 CopyTo(int32_t dst_offset, ByteArray* array, int32_t src_offset, int32_t length) argument
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dopen_type_data_test.cc31 ByteArrayPtr array = new MemoryByteArray(&(bytes[0]), bytes.size()); local
32 ReadableFontDataPtr data = new ReadableFontData(array);
/external/chromium_org/third_party/skia/include/effects/
H A DSkColorMatrixFilter.h19 static SkColorMatrixFilter* Create(const SkScalar array[20]) { argument
20 return SkNEW_ARGS(SkColorMatrixFilter, (array));
43 explicit SkColorMatrixFilter(const SkScalar array[20]);
59 void initState(const SkScalar array[20]);
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimateField.cpp90 SkTypedArray* array = (SkTypedArray*) fFieldInfo->memberData(fTarget); local
91 int count = array->count();
/external/chromium_org/third_party/skia/tests/
H A DSortTest.cpp18 static void rand_array(SkRandom& rand, int array[], int n) { argument
20 array[j] = rand.nextS() & 0xFF;
25 const int array[], const int reference[], int n) {
27 if (array[j] != reference[j]) {
29 label, n, array[j], reference[j]);
35 /** An array of random numbers to be sorted. */
39 /** The random numbers are copied into this array, sorted by an SkSort,
40 then this array is compared against the reference sort. */
24 check_sort(skiatest::Reporter* reporter, const char label[], const int array[], const int reference[], int n) argument
/external/clang/test/CXX/expr/expr.unary/expr.sizeof/
H A Dp5-0x.cpp23 any array[sizeof...(inits)] = { inits... }; local
/external/clang/test/CodeGenCXX/
H A Dglobal-llvm-constant.cpp27 X1 array[3]; member in struct:X2
H A Dmicrosoft-abi-array-cookies.cpp11 ClassWithoutDtor *array = new ClassWithoutDtor[42]; local
14 delete [] array;
26 ClassWithDtor *array = new ClassWithDtor[42]; local
34 delete [] array;
48 ClassWithAlignment *array = new ClassWithAlignment[42]; local
56 delete [] array;
/external/clang/test/PCH/
H A Dstmts.h67 // variable-length array
68 int array[x * 17 + 3]; local
/external/clang/test/Sema/
H A Dwarn-char-subscripts.c4 int array[1] = { 0 }; local
6 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}}
10 int array[1] = { 0 }; local
12 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}}
16 int *array = 0; local
18 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}}
22 int *array local
29 int *array = 0; local
34 int array[1] = { 0 }; local
40 int array[1] = { 0 }; local
47 int array[1] = { 0 }; local
54 int array[1] = { 0 }; local
61 int array[1] = { 0 }; local
[all...]
/external/clang/test/SemaTemplate/
H A Dfunction-template-specialization.cpp4 void f0(int (&array)[N]); // expected-note {{candidate template ignored: could not match 'int' against 'char'}}
7 template<> void f0(int (&array)[1]);
15 template<> void f0(char (&array)[1]); // expected-error{{no function template matches}}
16 template<> void f0<2>(int (&array)[2]) { } argument
19 template<typename T, int N> void f1(T (&array)[N]); // expected-note{{matches}}
20 template<int N> void f1(int (&array)[N]); // expected-note{{matches}}
22 template<> void f1(float (&array)[1]);
23 template<> void f1(int (&array)[1]);
26 template<typename T> void f1(T (&array)[17]); // expected-note{{matches}}
27 template<> void f1(int (&array)[1
[all...]
H A Dinstantiate-decl-init.cpp45 NonTrivial array[N]; local
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dsancov.py6 import array namespace
27 s = set(array.array('I', f.read(size)))
48 a = array.array('I', s)
104 pcs = array.array(typecode, f.read(size))
122 arr = array.array('I')
/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/compiler-rt/test/asan/TestCases/Posix/
H A Dasan-symbolize-sanity-test.cc34 int *array = (int*)malloc(40); local
35 inc2(array, 1);
36 inc2(array, -1); // BOOM
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DShortArrayCodeInput.java26 /** source array to read from */
27 private final short[] array; field in class:ShortArrayCodeInput
32 public ShortArrayCodeInput(short[] array) { argument
33 if (array == null) {
34 throw new NullPointerException("array == null");
37 this.array = array;
42 return cursor() < array.length;
48 int value = array[cursor()];
/external/eigen/demos/mix_eigen_and_c/
H A Dexample.c34 // this helper function takes a plain C array and prints it in one line
35 void print_array(double *array, int n) argument
37 struct C_Map_MatrixXd *m = Map_MatrixXd_new(array, 1, n);
45 double array[5]; local
49 for(i = 0; i < 5; ++i) array[i] = i;
50 printf("Initially, the array is:\n");
51 print_array(array, 5);
53 map = Map_MatrixXd_new(array, 5, 1);
57 printf("Now the array is:\n");
58 print_array(array,
[all...]
/external/eigen/test/
H A Ddontalign.cpp43 Scalar* array = internal::aligned_new<Scalar>(rows); local
44 v = VectorType::MapAligned(array, rows);
45 internal::aligned_delete(array, rows);
/external/eigen/test/eigen2/
H A Deigen2_first_aligned.cpp13 void test_eigen2_first_aligned_helper(Scalar *array, int size) argument
16 VERIFY(((std::size_t(array) + sizeof(Scalar) * ei_alignmentOffset(array, size)) % packet_size) == 0);
20 void test_eigen2_none_aligned_helper(Scalar *array, int size) argument
22 VERIFY(ei_packet_traits<Scalar>::size == 1 || ei_alignmentOffset(array, size) == size);

Completed in 4648 milliseconds

1234567891011>>