HomeSort by relevance Sort by last modified time
    Searched refs:new_array (Results 1 - 25 of 66) sorted by null

1 2 3

  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/new_array/
TestStubs.java 17 package dot.junit.opcodes.new_array;
Test_new_array.java 17 package dot.junit.opcodes.new_array;
21 import dot.junit.opcodes.new_array.d.T_new_array_1;
22 import dot.junit.opcodes.new_array.d.T_new_array_10;
23 import dot.junit.opcodes.new_array.d.T_new_array_11;
24 import dot.junit.opcodes.new_array.d.T_new_array_2;
25 import dot.junit.opcodes.new_array.d.T_new_array_3;
89 loadAndRun("dot.junit.opcodes.new_array.d.T_new_array_2", NegativeArraySizeException.class,
99 load("dot.junit.opcodes.new_array.d.T_new_array_4", VerifyError.class);
108 load("dot.junit.opcodes.new_array.d.T_new_array_5", VerifyError.class);
117 load("dot.junit.opcodes.new_array.d.T_new_array_9", VerifyError.class)
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/new_array/d/
T_new_array_1.java 17 package dot.junit.opcodes.new_array.d;
T_new_array_10.java 17 package dot.junit.opcodes.new_array.d;
T_new_array_11.java 17 package dot.junit.opcodes.new_array.d;
T_new_array_2.java 17 package dot.junit.opcodes.new_array.d;
T_new_array_3.java 17 package dot.junit.opcodes.new_array.d;
T_new_array_10.d 16 .class public dot.junit.opcodes.new_array.d.T_new_array_10
31 new-array v0, v0, [Ldot/junit/opcodes/new_array/TestStubs;
  /art/test/573-checker-checkcast-regression/src/
Main.java 28 // converts `new_array` to an `Object[]`), so as to produce code
42 static public int test(Object new_array, int index1, int index2) {
43 Object[] objectArray = (Object[]) new_array;
  /art/runtime/mirror/
array.cc 50 Handle<Array> new_array(
55 if (UNLIKELY(new_array == nullptr)) {
71 new_array->AsObjectArray<Array>()->Set<false, false>(i, sub_array);
74 return new_array.Get();
114 ObjPtr<Array> new_array = RecursiveCreateMultiArray(self, array_class, 0, dimensions); local
115 if (UNLIKELY(new_array == nullptr)) {
118 return new_array.Ptr();
140 ObjPtr<Array> new_array = Alloc<true>(self, GetClass(), new_length, component_shift, allocator_type); local
141 if (LIKELY(new_array != nullptr)) {
142 memcpy(new_array->GetRawData(component_size, 0)
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_vector_unittest.cc 184 int16_t new_array[kNewLength]; local
187 new_array[i] = 100 + i;
190 vec.InsertAt(new_array, kNewLength, insert_position);
200 EXPECT_EQ(new_array[i], vec[pos]);
219 int16_t new_array[kNewLength] = {0}; // All zero elements. local
220 vec_ref.InsertAt(new_array, kNewLength, insert_position);
233 int16_t new_array[kNewLength]; local
236 new_array[i] = 100 + i;
239 vec.InsertAt(new_array, kNewLength, insert_position);
245 EXPECT_EQ(new_array[i], vec[pos])
259 int16_t new_array[kNewLength]; local
288 int16_t new_array[kNewLength]; local
314 int16_t new_array[kNewLength]; local
344 int16_t new_array[kNewLength]; local
    [all...]
  /art/runtime/native/
java_lang_reflect_Array.cc 44 mirror::Array* new_array = mirror::Array::CreateMultiArray(soa.Self(), local
47 return soa.AddLocalReference<jobject>(new_array);
66 ObjPtr<mirror::Array> new_array = mirror::ObjectArray<mirror::Object*>::Alloc( local
71 return soa.AddLocalReference<jobject>(new_array);
  /art/test/527-checker-array-access-split/src/
Main.java 311 int[] new_array = new int[1]; local
313 return new_array;
  /external/libpng/
pngmem.c 145 png_voidp new_array = png_malloc_array_checked(png_ptr, local
148 if (new_array != NULL)
154 memcpy(new_array, old_array, element_size*(unsigned)old_elements);
156 memset((char*)new_array + element_size*(unsigned)old_elements, 0,
159 return new_array;
  /external/pdfium/third_party/libpng16/
pngmem.c 148 png_voidp new_array = png_malloc_array_checked(png_ptr, local
151 if (new_array != NULL)
157 memcpy(new_array, old_array, element_size*(unsigned)old_elements);
159 memset((char*)new_array + element_size*(unsigned)old_elements, 0,
162 return new_array;
  /external/skia/third_party/libpng/
pngmem.c 145 png_voidp new_array = png_malloc_array_checked(png_ptr, local
148 if (new_array != NULL)
154 memcpy(new_array, old_array, element_size*(unsigned)old_elements);
156 memset((char*)new_array + element_size*(unsigned)old_elements, 0,
159 return new_array;
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
tclwstrings.swg 23 char *dst = %new_array(dstLen, char);
51 char *dst = %new_array(dstLen, char);
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
carrays.swg 24 return %new_array(nelements, TYPE);
81 return %new_array(nelements, TYPE);
swigmacros.swg 46 %new_array(size,Type) Allocate a new array with given size and Type
162 # define %new_array(size,Type...) (new Type[size])
163 # define %new_copy_array(ptr,size,Type...) %reinterpret_cast(memcpy(%new_array(size,Type), ptr, sizeof(Type)*(size)), Type*)
169 # define %new_array(size,Type...) (Type *)malloc((size)*sizeof(Type))
170 # define %new_copy_array(ptr,size,Type...) (Type *)memcpy(%new_array(size,Type), ptr, sizeof(Type)*(size))
cstrings.swg 158 $1 = %new_array(n+expansion, $*1_ltype);
188 buff= %new_array(size+1, Char);
219 buff= %new_array(n+1, Char);
  /prebuilts/misc/common/swig/include/2.0.11/python/
carrays.i 16 arr->el = %new_array(nelements, TYPE);
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/src/
ios.cpp 99 PODType* new_array local
101 if (new_array) {
102 fill(new_array + N, new_array + new_N, PODType());
103 return pair<PODType*, size_t>(new_array, new_N);
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/src/
ios.cpp 99 PODType* new_array local
101 if (new_array) {
102 fill(new_array + N, new_array + new_N, PODType());
103 return pair<PODType*, size_t>(new_array, new_N);
  /external/v8/src/
bootstrapper.h 47 Handle<FixedArray> new_array = factory->NewFixedArray(length + 2, TENURED); local
48 cache_->CopyTo(0, *new_array, 0, cache_->length());
49 cache_ = *new_array;
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
jstring.i 31 char *tmp = %new_array(len, char);

Completed in 510 milliseconds

1 2 3