HomeSort by relevance Sort by last modified time
    Searched refs:array (Results 326 - 350 of 7929) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGen/
2007-04-05-PadBeforeZeroLengthField.c 8 void foo(union A * objects, struct B *array, unsigned long k)
9 { array->objects[k] = objects[k]; }
  /external/clang/test/CodeGenCXX/
vla.cpp 18 void test0(void *array, int n) {
20 // CHECK: [[ARRAY:%.*]] = alloca i8*, align 8
35 // CHECK-NEXT: [[T0:%.*]] = load i8*, i8** [[ARRAY]], align 8
38 array_t &ref = *(array_t*) array;
volatile.cpp 12 volatile A *array; member in namespace:test0
20 array[0] = t;
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/
GwtPlatform.java 20 import com.google.gwt.lang.Array;
35 public static <T> T[] clone(T[] array) {
36 return (T[]) Array.clone(array);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UCharacterUtility.java 52 * Retrieves a null terminated substring from an array of bytes.
58 * @param array byte array
60 * @return the end position of the substring within the character array
62 static int getNullTermByteSubString(StringBuffer str, byte[] array,
69 b = array[index];
79 * Compares a null terminated substring from an array of bytes.
84 * @param array byte array
86 * @param aindex array index to start in byte coun
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UCharacterUtility.java 51 * Retrieves a null terminated substring from an array of bytes.
57 * @param array byte array
59 * @return the end position of the substring within the character array
61 static int getNullTermByteSubString(StringBuffer str, byte[] array,
68 b = array[index];
78 * Compares a null terminated substring from an array of bytes.
83 * @param array byte array
85 * @param aindex array index to start in byte coun
    [all...]
  /external/libcxx/test/std/containers/sequences/array/array.tuple/
get_rv.pass.cpp 10 // <array>
12 // template <size_t I, class T, size_t N> T&& get(array<T, N>&& a);
16 #include <array>
21 // std::array is explicitly allowed to be initialized with A a = { init-list };.
30 typedef std::array<T, 1> C;
  /external/libcxx/test/std/containers/sequences/array/
contiguous.pass.cpp 10 // <array>
12 // An array is a contiguous container
14 #include <array>
28 typedef std::array<T, 3> C;
  /external/replicaisland/src/com/replica/replicaisland/
StandardSorter.java 25 public void sort(Object[] array, int count, Comparator comparator) {
26 Arrays.sort(array, 0, count, comparator);
  /external/tensorflow/tensorflow/compiler/tests/
ternary_ops_test.py 48 expected=np.array([1], dtype=np.float32))
54 expected=np.array([1, 2.5, 4], dtype=np.float32))
62 expected=np.array([1], dtype=np.int32))
68 expected=np.array([1, 3, 5], dtype=np.int32))
73 np.array(0, dtype=np.bool),
74 np.array(2, dtype=np.float32),
75 np.array(7, dtype=np.float32),
76 expected=np.array(7, dtype=np.float32))
80 np.array(1, dtype=np.bool),
81 np.array([1, 2, 3, 4], dtype=np.float32)
    [all...]
  /external/walt/pywalt/
plothist.py 13 dt_down = array(dt_down)
14 dt_up = array(dt_up)
  /frameworks/av/drm/mediadrm/plugins/clearkey/common/
Utils.cpp 27 return memcmp((void *)lhs.array(), (void *)rhs.array(), rhs.size()) < 0;
  /frameworks/base/libs/androidfw/tests/data/appaslib/
R.h 35 struct array { struct in namespace:com::android::appaslib::lib
53 struct array { struct in namespace:com::app
  /frameworks/opt/net/wifi/libwifi_system_iface/include/wifi_system/
interface_tool.h 20 #include <array>
48 const std::array<uint8_t, ETH_ALEN>& address);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
WrappedDoubleBufferTest.java 39 double array[] = new double[20]; local
41 DoubleBuffer.wrap(array, -1, 0);
47 DoubleBuffer.wrap(array, 21, 0);
53 DoubleBuffer.wrap(array, 0, -1);
59 DoubleBuffer.wrap(array, 0, 21);
65 DoubleBuffer.wrap(array, Integer.MAX_VALUE, 1);
71 DoubleBuffer.wrap(array, 1, Integer.MAX_VALUE);
82 DoubleBuffer buf = DoubleBuffer.wrap(array, 2, 16);
WrappedFloatBufferTest.java 39 float array[] = new float[20]; local
41 FloatBuffer.wrap(array, -1, 0);
47 FloatBuffer.wrap(array, 21, 0);
53 FloatBuffer.wrap(array, 0, -1);
59 FloatBuffer.wrap(array, 0, 21);
65 FloatBuffer.wrap(array, Integer.MAX_VALUE, 1);
71 FloatBuffer.wrap(array, 1, Integer.MAX_VALUE);
82 FloatBuffer buf = FloatBuffer.wrap(array, 2, 16);
WrappedIntBufferTest.java 39 int array[] = new int[20]; local
41 IntBuffer.wrap(array, -1, 0);
47 IntBuffer.wrap(array, 21, 0);
53 IntBuffer.wrap(array, 0, -1);
59 IntBuffer.wrap(array, 0, 21);
65 IntBuffer.wrap(array, Integer.MAX_VALUE, 1);
71 IntBuffer.wrap(array, 1, Integer.MAX_VALUE);
82 IntBuffer buf = IntBuffer.wrap(array, 2, 16);
WrappedLongBufferTest.java 39 long array[] = new long[20]; local
41 LongBuffer.wrap(array, -1, 0);
47 LongBuffer.wrap(array, 21, 0);
53 LongBuffer.wrap(array, 0, -1);
59 LongBuffer.wrap(array, 0, 21);
65 LongBuffer.wrap(array, Integer.MAX_VALUE, 1);
71 LongBuffer.wrap(array, 1, Integer.MAX_VALUE);
82 LongBuffer buf = LongBuffer.wrap(array, 2, 16);
WrappedShortBufferTest.java 39 short array[] = new short[20]; local
41 ShortBuffer.wrap(array, -1, 0);
47 ShortBuffer.wrap(array, 21, 0);
53 ShortBuffer.wrap(array, 0, -1);
59 ShortBuffer.wrap(array, 0, 21);
65 ShortBuffer.wrap(array, Integer.MAX_VALUE, 1);
71 ShortBuffer.wrap(array, 1, Integer.MAX_VALUE);
82 ShortBuffer buf = ShortBuffer.wrap(array, 2, 16);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue5820.go 12 array := make([][]int, 2)
14 array[index] = nil
15 if array[1] != nil {
16 panic("array[1] != nil")
  /prebuilts/go/linux-x86/test/fixedbugs/
issue5820.go 12 array := make([][]int, 2)
14 array[index] = nil
15 if array[1] != nil {
16 panic("array[1] != nil")
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/array/array.tuple/
get_rv.pass.cpp 10 // <array>
12 // template <size_t I, class T, size_t N> T&& get(array<T, N>&& a);
16 #include <array>
21 // std::array is explicitly allowed to be initialized with A a = { init-list };.
30 typedef std::array<T, 1> C;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/array/
begin.pass.cpp 10 // <array>
14 #include <array>
17 // std::array is explicitly allowed to be initialized with A a = { init-list };.
25 typedef std::array<T, 3> C;
contiguous.pass.cpp 10 // <array>
12 // An array is a contiguous container
14 #include <array>
28 typedef std::array<T, 3> C;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SetCreationTester.java 44 E[] array = createArrayWithNullElement(); local
45 array[0] = null;
46 collection = getSubjectGenerator().create(array);
49 Arrays.asList(array).subList(1, getNumElements());
56 E[] array = createSamplesArray(); local
57 array[1] = samples.e0;
58 collection = getSubjectGenerator().create(array);
61 Arrays.asList(array).subList(1, getNumElements());
69 E[] array = createArrayWithNullElement(); local
70 array[0] = null
81 E[] array = createSamplesArray(); local
    [all...]

Completed in 849 milliseconds

<<11121314151617181920>>