Searched defs:array (Results 276 - 300 of 1079) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtp_packet_history_unittest.cc43 uint32_t timestamp, uint8_t* array, uint16_t* cur_pos) {
44 array[(*cur_pos)++] = 0x80;
45 array[(*cur_pos)++] = payload;
46 array[(*cur_pos)++] = seq_num >> 8;
47 array[(*cur_pos)++] = seq_num;
48 array[(*cur_pos)++] = timestamp >> 24;
49 array[(*cur_pos)++] = timestamp >> 16;
50 array[(*cur_pos)++] = timestamp >> 8;
51 array[(*cur_pos)++] = timestamp;
52 array[(*cur_po
42 CreateRtpPacket(uint16_t seq_num, uint32_t ssrc, uint8_t payload, uint32_t timestamp, uint8_t* array, uint16_t* cur_pos) argument
[all...]
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/android/gen/org/webrtc/vieautotest/
H A DR.java11 public static final class array { class in class:R
/external/chromium_org/v8/src/
H A Ddateparser.cc107 array[][DateParser::KeywordTable::kEntrySize] = { member in class:v8::internal::DateParser::KeywordTable
142 for (i = 0; array[i][kTypeOffset] != INVALID; i++) {
145 pre[j] == static_cast<uint32_t>(array[i][j])) {
151 (len <= kPrefixLength || array[i][kTypeOffset] == MONTH_NAME)) {
H A Dtransitions.cc17 Handle<FixedArray> array = local
19 array->set(kPrototypeTransitionsIndex, Smi::FromInt(0));
20 return Handle<TransitionArray>::cast(array);
26 Handle<FixedArray> array = local
28 array->set(kSimpleTransitionTarget, *target);
29 return Handle<TransitionArray>::cast(array);
70 // A transition array may shrink during GC.
104 // The map's transition array may grown smaller during the allocation above as
109 TransitionArray* array = map->transitions(); local
110 if (array
[all...]
/external/clang/test/Analysis/
H A Dmisc-ps-cxx0x.cpp52 int array[2] = { 1, 2 }; local
54 for ( int i : array )
61 int array[2] = { 1, 2 }; local
63 for (int i : array)
H A Dstack-addr-ps.c25 int* array[] = {}; local
/external/clang/test/CXX/class.access/class.access.dcl/
H A Dp1.cpp66 char array[sizeof(union_member) == sizeof(double) ? 1 : -1]; local
109 char array[sizeof(union_member) == sizeof(double) ? 1 : -1]; local
154 char array[sizeof(union_member) == sizeof(double) ? 1 : -1]; local
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp4.cpp63 char array[sizeof(union_member) == sizeof(double) ? 1 : -1]; local
106 char array[sizeof(union_member) == sizeof(double) ? 1 : -1]; local
151 char array[sizeof(union_member) == sizeof(double) ? 1 : -1]; local
/external/clang/test/CodeGen/
H A Dvector.c29 int array[16] = { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 }; local
30 __m64 *p = (__m64 *)array;
/external/clang/test/CodeGenCXX/
H A Drvalue-references.cpp5 struct A { double array[2]; }; member in struct:A
/external/clang/test/Index/
H A Dindex-templates.cpp37 struct array { }; struct
39 template<template<typename, unsigned> class DataStructure = array>
54 f<Unsigned, OneDimension, array>(array<Unsigned, OneDimension>());
139 // CHECK-LOAD: index-templates.cpp:37:8: ClassTemplate=array:37:8 (Definition) Extent=[36:1 - 37:17]
147 // CHECK-LOAD: index-templates.cpp:39:61: TemplateRef=array:37:8 Extent=[39:61 - 39:66]
163 // CHECK-LOAD: index-templates.cpp:54:29: TemplateRef=array:37:8 Extent=[54:29 - 54:34]
/external/clang/test/Sema/
H A Dcompound-literal.c38 int array[(sizeof(int[3]) == sizeof( (int[]) {0,1,2} )) ? 1 : -1]; variable
/external/clang/test/SemaCXX/
H A Dcast-conversion.cpp33 const char array[2] = { 'a', 'b' }; local
34 make_X0(array);
/external/clang/test/SemaTemplate/
H A Dinstantiate-c99.cpp46 T array = { local
48 [Subscript2] = val2 // expected-error{{exceeds array bounds}}
62 T array = { local
H A Dinstantiate-expr-5.cpp9 static const int a = __builtin_offsetof(T, a.array[5].m); // expected-error{{no member named 'a' in 'HasM'}}
16 HasM array[10]; member in struct:PR5880::ArrayOfHasM
/external/compiler-rt/lib/asan/tests/
H A Dasan_mem_test.cc19 T *array = Ident((T*)malloc(size)); local
23 // memset interval inside array
24 MEMSET(array, element, size);
25 MEMSET(array, element, size - 1);
26 MEMSET(array + length - 1, element, sizeof(T));
27 MEMSET(array, element, 1);
30 MEMSET(array - 10, element, zero);
31 MEMSET(array - 1, element, zero);
32 MEMSET(array, element, zero);
33 MEMSET(array
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DEncodedArrayItem.java24 * Encoded array of constant values.
30 /** {@code non-null;} the array to represent */
31 private final CstArray array; field in class:EncodedArrayItem
42 * @param array {@code non-null;} array to represent
44 public EncodedArrayItem(CstArray array) { argument
51 if (array == null) {
52 throw new NullPointerException("array == null");
55 this.array = array;
[all...]
/external/eigen/Eigen/src/Core/
H A DArrayBase.h20 * \brief Base class for all 1D and 2D array, and related expressions
22 * An array is similar to a dense vector or matrix. While matrices are mathematical
23 * objects with well defined linear algebra operators, an array is just a collection
25 * all operations applied to an array are performed coefficient wise. Furthermore,
30 * This class is the base that is inherited by all array expression types.
32 * \tparam Derived is the derived type, e.g., an array or an expression type.
143 ArrayBase<Derived>& array() { return *this; } function in class:Eigen::ArrayBase
144 const ArrayBase<Derived>& array() const { return *this; } function in class:Eigen::ArrayBase
146 /** \returns an \link Eigen::MatrixBase Matrix \endlink expression of this array
147 * \sa MatrixBase::array() */
[all...]
H A DDenseStorage.h36 * Static array. If the MatrixOrArrayOptions require auto-alignment, the array will be automatically aligned:
45 T array[Size]; member in struct:Eigen::internal::plain_array
61 // GCC 4.7 is too aggressive in its optimizations and remove the alignement test based on the fact the array is declared to be aligned.
63 // Hiding the origin of the array pointer behind a function argument seems to do the trick even if the function is inlined:
65 EIGEN_ALWAYS_INLINE PtrType eigen_unaligned_array_assert_workaround_gcc47(PtrType array) { return array; } argument
67 eigen_assert((reinterpret_cast<size_t>(eigen_unaligned_array_assert_workaround_gcc47(array)) & sizemask) == 0 \
73 eigen_assert((reinterpret_cast<size_t>(array) & sizemask) == 0 \
82 EIGEN_USER_ALIGN16 T array[Siz member in struct:Eigen::internal::plain_array
99 EIGEN_USER_ALIGN16 T array[1]; member in struct:Eigen::internal::plain_array
[all...]
/external/eigen/test/eigen2/
H A Deigen2_triangular.cpp140 int array[] = {1, 2, 3, 4}; local
141 Matrix2i::Map(array).part<SelfAdjoint>() = Matrix2i::Random().part<LowerTriangular>();
143 std::cout << "hello\n" << array << std::endl;
/external/guava/guava/src/com/google/common/collect/
H A DImmutableEnumSet.java77 @Override public <T> T[] toArray(T[] array) { argument
78 return delegate.toArray(array);
H A DObjectArrays.java37 * Returns a new array of the given length with the specified component type.
40 * @param length the length of the new array
48 * Returns a new array of the given length with the same type as a reference
49 * array.
51 * @param reference any array of the desired type
52 * @param length the length of the new array
59 * Returns a new array that contains the concatenated contents of two arrays.
61 * @param first the first array of elements to concatenate
62 * @param second the second array of elements to concatenate
63 * @param type the component type of the returned array
82 concat(@ullable T element, T[] array) argument
98 concat(T[] array, @Nullable T element) argument
136 toArrayImpl(Collection<?> c, T[] array) argument
166 fillArray(Iterable<?> elements, Object[] array) argument
177 swap(Object[] array, int i, int j) argument
[all...]
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...]
H A DSingletonImmutableList.java158 @Override public <T> T[] toArray(T[] array) { argument
159 if (array.length == 0) {
160 array = ObjectArrays.newArray(array, 1);
161 } else if (array.length > 1) {
162 array[1] = null;
165 Object[] objectArray = array;
167 return array;
H A DTransformedImmutableList.java121 @Override public <T> T[] toArray(T[] array) { argument
122 return ObjectArrays.toArrayImpl(this, array);

Completed in 1896 milliseconds

<<11121314151617181920>>