HomeSort by relevance Sort by last modified time
    Searched defs:array_length (Results 1 - 25 of 32) sorted by null

1 2

  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/array_length/d/
T_array_length_1.java 17 package dot.junit.opcodes.array_length.d;
T_array_length_4.java 17 package dot.junit.opcodes.array_length.d;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/array_length/
Test_array_length.java 17 package dot.junit.opcodes.array_length;
21 import dot.junit.opcodes.array_length.d.T_array_length_1;
22 import dot.junit.opcodes.array_length.d.T_array_length_4;
48 loadAndRun("dot.junit.opcodes.array_length.d.T_array_length_1", NullPointerException.class,
57 load("dot.junit.opcodes.array_length.d.T_array_length_2", VerifyError.class);
65 load("dot.junit.opcodes.array_length.d.T_array_length_3", VerifyError.class);
73 load("dot.junit.opcodes.array_length.d.T_array_length_5", VerifyError.class);
  /art/runtime/mirror/
array.cc 48 int32_t array_length = dimensions->Get(current_dimension); local
52 Array::Alloc<true>(self, array_class.Get(), array_length,
61 for (int32_t i = 0; i < array_length; i++) {
  /external/v8/src/runtime/
runtime-liveedit.cc 226 int array_length = Smi::cast(old_shared_array->length())->value(); local
227 for (int i = 0; i < array_length; i++) {
260 uint32_t array_length = 0; local
261 CHECK(result->length()->ToArrayLength(&array_length));
262 if (array_length > 0) {
runtime-strings.cc 261 int32_t array_length; local
262 if (!args[1]->ToInt32(&array_length)) {
269 CHECK(array_length >= 0);
270 CHECK(static_cast<size_t>(array_length) <= actual_array_length);
289 if (fixed_array->length() < array_length) {
290 array_length = fixed_array->length();
293 if (array_length == 0) {
295 } else if (array_length == 1) {
300 array_length, &one_byte);
316 array_length);
334 int32_t array_length; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_multi_vector_unittest.cc 35 interleaved_length_(num_channels_ * array_length()) {
36 array_interleaved_ = new int16_t[num_channels_ * array_length()];
45 for (size_t i = 0; i < array_length(); ++i) {
52 for (size_t i = 0; i < array_length(); ++i) {
60 size_t array_length() const { function in class:webrtc::AudioMultiVectorTest
87 AudioMultiVector vec(num_channels_, array_length());
89 for (size_t i = 0; i < array_length(); ++i) {
106 ASSERT_EQ(array_length(), vec.Size());
108 ASSERT_EQ(array_length(), vec_copy.Size());
110 for (size_t i = 0; i < array_length(); ++i)
    [all...]
audio_vector_unittest.cc 27 for (size_t i = 0; i < array_length(); ++i) {
32 size_t array_length() const { function in class:webrtc::AudioVectorTest
54 AudioVector vec(array_length());
55 for (size_t i = 0; i < array_length(); ++i) {
67 vec.PushBack(array_, array_length());
69 ASSERT_EQ(array_length(), vec.Size());
70 ASSERT_EQ(array_length(), vec_copy.Size());
71 for (size_t i = 0; i < array_length(); ++i) {
89 vec.PushBack(array_, array_length());
115 vec.PushFront(array_, array_length());
    [all...]
  /system/bt/osi/src/
array.cc 70 size_t array_length(const array_t* array) { function
  /system/gatekeeper/tests/
gatekeeper_messages_test.cpp 297 uint32_t array_length = sizeof(msgbuf) / sizeof(msgbuf[0]); local
298 const uint8_t* end = msgbuf + array_length;
299 for (uint32_t i = 0; i < array_length; ++i) {
  /art/test/944-transform-classloaders/src/art/
Test944.java 155 // int array_length = elementArrayValue.length;
156 // for (int i = 0; i < array_length; i++) {
207 // int array_length = elementArrayValue.length;
208 int array_length = Array.getLength(elementArrayValue); local
209 for (int i = 0; i < array_length; i++) {
  /external/cmockery/cmockery_0_1_2/src/example/
calculator_test.c 27 #define array_length(x) (sizeof(x) / sizeof((x)[0])) macro
136 array_length(operator_functions), operator_functions, NULL));
155 array_length(operator_functions), operator_functions, "test"),
168 array_length(operator_functions), operator_functions, "-"),
181 1, NULL, array_length(operator_functions), operator_functions,
196 array_length(args), args, 1, NULL, &number_of_intermediate_values,
212 array_length(args), args, 1, operator_functions, NULL,
228 array_length(args), args, array_length(operator_functions),
261 array_length(args), args, array_length(operator_functions)
    [all...]
  /art/compiler/optimizing/
bounds_check_elimination_test.cc 93 HArrayLength* array_length = new (&allocator_) HArrayLength(null_check, 0); local
95 HBoundsCheck(parameter2, array_length, 0);
99 block2->AddInstruction(array_length);
106 array_length = new (&allocator_) HArrayLength(null_check, 0);
107 cmp = new (&allocator_) HLessThan(parameter2, array_length);
110 block3->AddInstruction(array_length);
117 array_length = new (&allocator_) HArrayLength(null_check, 0);
119 HBoundsCheck(parameter2, array_length, 0);
123 block4->AddInstruction(array_length);
130 array_length = new (&allocator_) HArrayLength(null_check, 0)
192 HArrayLength* array_length = new (&allocator_) HArrayLength(null_check, 0); local
247 HArrayLength* array_length = new (&allocator_) HArrayLength(null_check, 0); local
311 HArrayLength* array_length = new (&allocator_) HArrayLength(null_check, 0); local
393 HInstruction* array_length = new (allocator) HArrayLength(null_check, 0); local
494 HInstruction* array_length = new (allocator) HArrayLength(null_check, 0); local
634 HArrayLength* array_length = new (allocator) HArrayLength(null_check, 0); local
720 HInstruction* array_length = new (allocator) HArrayLength(null_check, 0); local
816 HArrayLength* array_length = new (&allocator_) HArrayLength(null_check, 0); local
    [all...]
induction_var_range_test.cc 708 HInstruction* array_length = new (&allocator_) HArrayLength(new_array, 0); local
    [all...]
bounds_check_elimination.cc 818 HInstruction* array_length = bounds_check->InputAt(1); variable
819 DCHECK(array_length->IsIntConstant() ||
820 array_length->IsArrayLength() ||
821 array_length->IsPhi());
827 ValueBound upper = ValueBound(array_length, -1); // array_length - 1
847 } else if (array_length->IsIntConstant()) {
848 if (constant < array_length->AsIntConstant()->GetValue()) {
854 DCHECK(array_length->IsArrayLength())
1023 HInstruction* array_length = left->AsArrayLength(); variable
1219 HInstruction* array_length = bounds_check->InputAt(1); local
1342 HInstruction* array_length = bounds_check->InputAt(1); local
    [all...]
code_generator_x86_64.cc 190 HInstruction* array_length = instruction_->InputAt(1); variable
193 if (array_length->IsArrayLength() && array_length->IsEmittedAtUseSite()) {
195 uint32_t len_offset = CodeGenerator::GetArrayLengthOffset(array_length->AsArrayLength());
196 Location array_loc = array_length->GetLocations()->InAt(0);
5111 HInstruction* array_length = instruction->InputAt(1); local
    [all...]
  /external/mesa3d/src/compiler/spirv/
vtn_variables.c 1403 int array_length = -1; local
1602 nir_ssa_def *array_length = local
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_batch_chain.c 56 list->array_length = other_list->array_length;
59 list->array_length = 256;
63 vk_alloc(alloc, list->array_length * sizeof(*list->relocs), 8,
70 vk_alloc(alloc, list->array_length * sizeof(*list->reloc_bos), 8,
80 list->array_length * sizeof(*list->relocs));
82 list->array_length * sizeof(*list->reloc_bos));
108 if (list->num_relocs + num_additional_relocs <= list->array_length)
111 size_t new_length = list->array_length * 2;
136 list->array_length = new_length
937 uint32_t array_length; member in struct:anv_execbuf
    [all...]
  /art/runtime/openjdkjvmti/
ti_heap.cc 124 int32_t array_length = array->GetLength(); local
143 if (array_length == 0) {
154 array_length * component_size,
163 memcpy(data.get(), array->GetRawData(component_size, 0), array_length * component_size);
168 array_length,
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Packet.java 1171 int array_length = this.getNextValueAsInt(); local
    [all...]
  /bionic/tests/
pthread_test.cpp 2030 size_t array_length; member in struct:BarrierOrderingTestHelperArg
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
arraymodule.c 591 array_length(arrayobject *a) function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
arraymodule.c 591 array_length(arrayobject *a) function
    [all...]
  /external/python/cpython2/Modules/
arraymodule.c 591 array_length(arrayobject *a) function
    [all...]
  /external/v8/src/
objects-debug.cc 812 uint32_t array_length; local
813 CHECK(length()->ToArrayLength(&array_length));
814 if (array_length == 0xffffffff) {
815 CHECK(length()->ToArrayLength(&array_length));
817 if (array_length != 0) {
824 CHECK_LE(nof_elements, array_length);
    [all...]

Completed in 1785 milliseconds

1 2