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

1 2 3

  /art/runtime/
jni_env_ext-inl.h 39 size_t entry_count = locals_.Capacity(); local
40 if (entry_count > 16) {
42 << entry_count << " (most recent was a "
  /external/syslinux/com32/gplinclude/acpi/
rsdt.h 26 uint8_t entry_count; member in struct:__anon36928
xsdt.h 26 uint8_t entry_count; member in struct:__anon36939
  /device/linaro/bootloader/arm-trusted-firmware/include/drivers/partition/
partition.h 31 int entry_count; member in struct:partition_entry_list
  /system/libufdt/utils/src/
mkdtimg_create.c 57 int entry_count = calculate_args_entry_count(argc, argv, arg_start); local
58 struct dt_image_writer *writer = dt_image_writer_start(img_fp, entry_count);
mkdtimg_cfg_create.c 74 int entry_count = parse_config_entry_count(cfg_fp); local
75 struct dt_image_writer *writer = dt_image_writer_start(img_fp, entry_count);
mkdtimg_dump.c 161 uint32_t entry_count = fdt32_to_cpu(header.dt_entry_count); local
163 for (i = 0; i < entry_count; i++) {
mkdtimg_core.c 56 uint32_t entry_count; member in struct:dt_image_writer
176 uint32_t entry_count, uint32_t total_size,
180 header.dt_entry_count = cpu_to_fdt32(entry_count);
243 struct dt_image_writer *dt_image_writer_start(FILE *img_fp, uint32_t entry_count) {
250 fdt_infos = malloc(sizeof(struct dt_image_writer_fdt_info) * entry_count);
257 writer->entry_count = entry_count;
260 writer->entry_offset + sizeof(struct dt_table_entry) * entry_count;
391 writer->entry_count,
397 printf("Total %d entries.\n", writer->entry_count);
    [all...]
  /bionic/tests/
dirent_test.cpp 41 void ScanEntries(DirEntT** entries, int entry_count,
43 for (size_t i = 0; i < static_cast<size_t>(entry_count); ++i) {
54 int entry_count = scandir("/proc/self", &entries, NULL, alphasort); local
55 ASSERT_GE(entry_count, 0);
59 ASSERT_EQ(entry_count, entry_count64);
64 ScanEntries(entries, entry_count, name_set, unsorted_name_list);
87 int entry_count = scandir("/proc/self", &entries, NULL, alphasort); local
88 ASSERT_GE(entry_count, 0);
95 ASSERT_EQ(entry_count, entry_count_at);
99 ASSERT_EQ(entry_count, entry_count_at64)
    [all...]
  /frameworks/av/camera/ndk/impl/
ACameraMetadata.cpp 214 size_t entry_count = mData.entryCount(); local
215 mTags.setCapacity(entry_count);
217 for (size_t i = 0; i < entry_count; i++) {
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_compute.c 90 const int entry_count = (curbe_size + 31) / 32; local
94 assert(get_gen6_idrt_entry_count(dev) + entry_count <=
97 return entry_count;
ilo_state_urb.c 161 int row_count, entry_count; local
177 entry_count = conf->vs_urb_alloc_8kb * 8192 / (row_size * row_count);
178 if (entry_count > max_entry_count)
179 entry_count = max_entry_count;
180 entry_count &= ~3;
181 assert(entry_count >= 24);
184 conf->vs_entry_count = entry_count;
206 int row_count, entry_count; local
216 entry_count = conf->gs_urb_alloc_8kb * 8192 / (row_size * row_count);
217 if (entry_count > max_entry_count
258 int row_count, entry_count; local
342 int row_count, entry_count; local
411 int row_count, entry_count; local
486 int row_count, entry_count; local
623 int entry_count; member in struct:__anon29555
    [all...]
  /frameworks/base/libs/androidfw/include/androidfw/
AssetManager2.h 65 uint32_t entry_count; member in struct:android::ResolvedBag
412 return bag->entries + bag->entry_count;
  /frameworks/base/tools/aapt2/format/binary/
BinaryResourceParser.cpp 281 // The data portion of this chunk contains entry_count 32bit entries,
283 const size_t entry_count = dtohl(type_spec->entryCount); local
287 if (entry_count > std::numeric_limits<uint16_t>::max()) {
289 << "ResTable_typeSpec has too many entries (" << entry_count << ")");
295 if (entry_count * sizeof(uint32_t) > data_size) {
304 for (size_t i = 0; i < entry_count; i++) {
  /system/keymaster/android_keymaster/
android_keymaster_messages.cpp 482 for (size_t i = 0; i < certificate_chain.entry_count; ++i)
488 bool AttestKeyResponse::AllocateChain(size_t entry_count) {
489 if (entry_count > kMaxChainEntryCount)
493 for (size_t i = 0; i < certificate_chain.entry_count; ++i)
498 certificate_chain.entry_count = entry_count;
499 certificate_chain.entries = new (std::nothrow) keymaster_blob_t[entry_count];
501 certificate_chain.entry_count = 0;
505 memset(certificate_chain.entries, 0, sizeof(certificate_chain.entries[0]) * entry_count);
510 size_t result = sizeof(uint32_t); /* certificate_chain.entry_count */
528 size_t entry_count; local
    [all...]
  /external/avb/examples/uefi/
uefi_avb_ops.c 58 uint32_t entry_count; member in struct:__anon14235
157 for (int n = 0; n < gpt_header->entry_count; n++) {
  /frameworks/base/libs/androidfw/
LoadedArsc.cpp 100 const size_t entry_count = dtohl(header->entryCount); local
101 if (entry_count > std::numeric_limits<uint16_t>::max()) {
102 LOG(ERROR) << "RES_TABLE_TYPE_TYPE has too many entries (" << entry_count << ").";
109 const size_t offsets_length = sizeof(uint32_t) * entry_count;
218 const size_t entry_count = dtohl(type_chunk->entryCount); local
228 const ResTable_sparseTypeEntry* sparse_indices_end = sparse_indices + entry_count;
246 if (entry_index >= entry_count) {
341 size_t entry_count = dtohl(type->entryCount); local
342 for (size_t entry_idx = 0; entry_idx < entry_count; entry_idx++) {
464 // The data portion of this chunk contains entry_count 32bit entries
467 const size_t entry_count = dtohl(type_spec->entryCount); local
    [all...]
AssetManager2.cpp 613 const size_t entry_count = map_entry_end - map_entry; local
615 malloc(sizeof(ResolvedBag) + (entry_count * sizeof(ResolvedBag::Entry))))};
643 new_bag->entry_count = static_cast<uint32_t>(entry_count);
663 const size_t max_count = parent_bag->entry_count + dtohl(map->count);
669 const ResolvedBag::Entry* const parent_entry_end = parent_entry + parent_bag->entry_count;
753 new_bag->entry_count = static_cast<uint32_t>(actual_count);
890 int entry_count; member in struct:android::__anon45732::ThemeType
    [all...]
  /system/iot/attestation/atap/libatap/
atap_types.h 110 uint32_t entry_count; member in struct:__anon3046
  /external/v8/src/
perf-jit.cc 283 uint32_t entry_count = 0; local
286 entry_count++;
288 if (entry_count == 0) return;
296 debug_info.entry_count_ = entry_count;
300 size += entry_count * sizeof(PerfJitDebugEntry);
  /toolchain/binutils/binutils-2.27/include/mach-o/
unwind.h 199 unsigned char entry_count[2]; member in struct:mach_o_unwind_regular_second_level_page_header
214 unsigned char entry_count[2]; member in struct:mach_o_unwind_compressed_second_level_page_header
  /external/f2fs-tools/fsck/
fsck.c 1568 u32 entry_count; local
    [all...]
  /external/pdfium/third_party/libtiff/
tif_dirwrite.c 2668 uint64 entry_count = 0; local
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
cmap_table.cc 482 int32_t entry_count = EntryCount(high_byte); local
484 if (low_byte < first_code || low_byte >= first_code + entry_count) {
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
bnx2.c 1682 int j, entry_count, rc; local
    [all...]

Completed in 725 milliseconds

1 2 3