HomeSort by relevance Sort by last modified time
    Searched refs:array_length (Results 26 - 50 of 74) sorted by null

12 3

  /art/runtime/mirror/
array.cc 47 int32_t array_length = dimensions->Get(current_dimension); local
51 Array::Alloc<true>(self, array_class.Get(), array_length,
60 for (int32_t i = 0; i < array_length; i++) {
  /system/keymaster/
rsa_keymaster1_operation.cpp 152 *digest_count = array_length(supported_digests);
168 *padding_mode_count = array_length(supported_sig_padding);
172 *padding_mode_count = array_length(supported_crypt_padding);
keymaster_enforcement_test.cpp 100 AuthorizationSet single_auth_set(params, array_length(params));
112 AuthorizationSet auth_set(params, array_length(params));
126 AuthorizationSet auth_set(params, array_length(params));
138 AuthorizationSet auth_set(params, array_length(params));
152 AuthorizationSet auth_set(params, array_length(params));
165 AuthorizationSet auth_set(params, array_length(params));
179 AuthorizationSet auth_set(params, array_length(params));
193 AuthorizationSet auth_set(params, array_length(params));
207 AuthorizationSet auth_set(params, array_length(params));
220 AuthorizationSet auth_set(params, array_length(params))
    [all...]
ecdsa_keymaster1_operation.cpp 129 *digest_count = array_length(supported_digests);
symmetric_key.cpp 106 *format_count = array_length(supported_import_formats);
key_blob_test.cpp 43 : master_key_(master_key_data, array_length(master_key_data)),
44 key_material_(key_data, array_length(key_data)) {
193 KeymasterKeyBlob wrong_master(wrong_master_data, array_length(wrong_master_data));
hmac_operation.cpp 87 *digest_count = array_length(supported_digests);
authorization_set_test.cpp 36 AuthorizationSet set(params, array_length(params));
48 AuthorizationSet set(params, array_length(params));
62 AuthorizationSet set2(reinterpret_cast<keymaster_key_param_t*>(NULL), array_length(params));
216 AuthorizationSet deserialized(buf, array_length(buf));
220 EXPECT_FALSE(deserialized.Deserialize(&p, p + array_length(buf)));
  /external/v8/src/runtime/
runtime-liveedit.cc 210 int array_length = Smi::cast(old_shared_array->length())->value(); local
211 for (int i = 0; i < array_length; i++) {
245 uint32_t array_length = 0; local
246 CHECK(result->length()->ToArrayLength(&array_length));
247 if (array_length > 0) {
  /art/compiler/optimizing/
bounds_check_elimination.cc 809 HInstruction* array_length = bounds_check->InputAt(1); variable
810 DCHECK(array_length->IsIntConstant() ||
811 array_length->IsArrayLength() ||
812 array_length->IsPhi());
819 ValueBound upper = ValueBound(array_length, -1); // array_length - 1
839 } else if (array_length->IsIntConstant()) {
840 if (constant < array_length->AsIntConstant()->GetValue()) {
846 DCHECK(array_length->IsArrayLength());
847 ValueRange* existing_range = LookupValueRange(array_length, block)
1010 HInstruction* array_length = left->AsArrayLength(); variable
1200 HInstruction* array_length = bounds_check->InputAt(1); local
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/array_length/d/
T_array_length_1.d 16 .class public dot.junit.opcodes.array_length.d.T_array_length_1
T_array_length_2.d 16 .class public dot.junit.opcodes.array_length.d.T_array_length_2
T_array_length_3.d 16 .class public dot.junit.opcodes.array_length.d.T_array_length_3
T_array_length_4.d 16 .class public dot.junit.opcodes.array_length.d.T_array_length_4
T_array_length_5.d 16 .class public dot.junit.opcodes.array_length.d.T_array_length_5
  /external/v8/src/
layout-descriptor.cc 243 int array_length = GetSlowModeBackingStoreLength(layout_descriptor_length);
245 if (current_length != array_length) {
246 DCHECK_LT(array_length, current_length);
247 int delta = current_length - array_length;
string-builder.h 31 int array_length) {
34 for (int i = 0; i < array_length; i++) {
68 int array_length, bool* one_byte) {
71 for (int i = 0; i < array_length; i++) {
88 if (i >= array_length) return -1;
  /frameworks/opt/net/wifi/tests/wifitests/jni/
wifi_hal_mock.h 34 void put_byte_array(const char* name, u8* byte_array, int array_length);
wifi_hal_mock.cpp 78 int array_length) {
88 for (int i = 0; i < array_length; ++i) {
  /external/svox/pico/lib/
picodata.c 696 picoos_int8 array_length,
710 for (i = 0; i < array_length; i++) {
721 picoos_int8 array_length,
735 for (i=0; i < array_length; i++) {
739 transDurUniform(frame_duration_exp,array_length,inout,inputdur,targetdur,restdur);
750 for (i=0; i < array_length; i++) {
767 picoos_int8 array_length,
784 for (i=0; i < array_length; i++) {
809 transDurUniform(frame_duration_exp,array_length,inout,inputdur,targetdur,dur_rest);
811 transDurWeighted(frame_duration_exp,array_length,inout,weight,inputdur,targetdur,dur_rest)
    [all...]
  /system/bt/osi/src/
array.c 73 size_t array_length(const array_t *array) { function
  /bionic/linker/
linked_list.h 211 size_t copy_to_array(T* array[], size_t array_length) const {
213 for (LinkedListEntry<T>* e = head_; sz < array_length && e != nullptr; e = e->next) {
  /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) {
  /external/v8/test/cctest/heap/
test-mark-compact.cc 87 int array_length = local
89 Handle<FixedArray> array = isolate->factory()->NewFixedArray(array_length);
108 int array_length = local
110 Handle<FixedArray> array = isolate->factory()->NewFixedArray(array_length);
  /external/v8/test/cctest/
cctest.h 309 int array_length = i::StrLength(source) + 1; local
310 uint16_t* converted = i::NewArray<uint16_t>(array_length);
311 for (int i = 0; i < array_length; i++) converted[i] = source[i];

Completed in 633 milliseconds

12 3