HomeSort by relevance Sort by last modified time
    Searched refs:num_entries (Results 51 - 75 of 418) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_zip.cpp 163 uint32_t num_entries = ReadUInt16( local
170 for (; n < num_entries && off < end_of_central_dir; ++n) {
221 if (n < num_entries) {
223 "Found %d but expected %d\n", __FUNCTION__, n, num_entries);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/
hash_policy.hpp 244 // in the table is num_entries.
246 notify_inserted(size_type num_entries);
249 notify_erased(size_type num_entries);
267 is_grow_needed(size_type size, size_type num_entries) const;
353 notify_inserted(size_type num_entries);
356 notify_erased(size_type num_entries);
373 is_grow_needed(size_type size, size_type num_entries) const;
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/
hash_policy.hpp 244 // in the table is num_entries.
246 notify_inserted(size_type num_entries);
249 notify_erased(size_type num_entries);
267 is_grow_needed(size_type size, size_type num_entries) const;
353 notify_inserted(size_type num_entries);
356 notify_erased(size_type num_entries);
373 is_grow_needed(size_type size, size_type num_entries) const;
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/
hash_policy.hpp 244 // in the table is num_entries.
246 notify_inserted(size_type num_entries);
249 notify_erased(size_type num_entries);
267 is_grow_needed(size_type size, size_type num_entries) const;
353 notify_inserted(size_type num_entries);
356 notify_erased(size_type num_entries);
373 is_grow_needed(size_type size, size_type num_entries) const;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/
hash_policy.hpp 244 // in the table is num_entries.
246 notify_inserted(size_type num_entries);
249 notify_erased(size_type num_entries);
267 is_grow_needed(size_type size, size_type num_entries) const;
353 notify_inserted(size_type num_entries);
356 notify_erased(size_type num_entries);
373 is_grow_needed(size_type size, size_type num_entries) const;
  /external/chromium_org/components/visitedlink/browser/
visitedlink_master.cc 547 int32 num_entries, used_count;
548 if (!ReadFileHeader(file_closer.get(), &num_entries, &used_count, salt_))
552 if (!CreateURLTable(num_entries, false))
555 hash_table_, num_entries * sizeof(Fingerprint))) {
601 int32* num_entries,
636 memcpy(num_entries, &header[kFileHeaderLengthOffset], sizeof(*num_entries));
637 if (*num_entries * sizeof(Fingerprint) + kFileHeaderSize != file_size)
642 if (*used_count > *num_entries)
669 bool VisitedLinkMaster::CreateURLTable(int32 num_entries, bool init_to_empty)
    [all...]
visitedlink_master.h 218 // Returns true on success and places the size of the table in num_entries
221 bool ReadFileHeader(FILE* hfile, int32* num_entries, int32* used_count,
277 bool CreateURLTable(int32 num_entries, bool init_to_empty);
288 bool BeginReplaceURLTable(int32 num_entries);
  /art/compiler/dex/
verified_method.cc 81 size_t num_entries, ref_bitmap_bits, pc_bits; local
82 ComputeGcMapSizes(method_verifier, &num_entries, &ref_bitmap_bits, &pc_bits);
92 if (num_entries >= 65536) {
93 LOG(WARNING) << "Cannot encode GC map for method with " << num_entries << " entries: "
113 size_t table_size = ((pc_bytes + ref_bitmap_bytes) * num_entries) + 4;
118 dex_gc_map_.push_back(num_entries & 0xFF);
119 dex_gc_map_.push_back((num_entries >> 8) & 0xFF);
  /hardware/libhardware/modules/usbaudio/
alsa_device_profile.c 231 unsigned num_entries = 0; local
235 num_entries < ARRAY_SIZE(profile->sample_rates) - 1;
239 profile->sample_rates[num_entries++] = std_sample_rates[index];
243 return num_entries; /* return # of supported rates */
466 int num_entries = 0; local
479 if (num_entries++ != 0) {
490 if (num_entries++ != 0) {
  /system/core/fs_mgr/
fs_mgr_fstab.c 223 fstab->num_entries = entries;
225 fstab->recs = calloc(fstab->num_entries, sizeof(struct fstab_rec));
321 for (i = 0; i < fstab->num_entries; i++) {
347 int n = fstab->num_entries;
365 fstab->num_entries++;
382 for (i = 0; i < fstab->num_entries; i++) {
391 for (; i < fstab->num_entries; i++) {
  /external/chromium_org/third_party/leveldatabase/src/table/
table_builder.cc 29 int64_t num_entries; member in struct:leveldb::TableBuilder::Rep
54 num_entries(0),
96 if (r->num_entries > 0) {
114 r->num_entries++;
263 return rep_->num_entries;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_keymap.c 51 unsigned num_entries; member in struct:keymap
124 map->num_entries = 0;
222 map->num_entries++;
281 map->num_entries--;
317 (void *) map, map->num_entries, map->max_entries);
  /external/mesa3d/src/gallium/auxiliary/util/
u_keymap.c 51 unsigned num_entries; member in struct:keymap
124 map->num_entries = 0;
222 map->num_entries++;
281 map->num_entries--;
317 (void *) map, map->num_entries, map->max_entries);
  /external/chromium_org/net/disk_cache/blockfile/
backend_impl.cc 238 if (!restarted_ && (create_files || !data_->header.num_entries))
990 static_cast<int>(data_->header.num_entries / use_time));
1004 data_->header.lru.sizes[0] * 100 / data_->header.num_entries);
1006 data_->header.lru.sizes[1] * 100 / data_->header.num_entries);
1008 data_->header.lru.sizes[2] * 100 / data_->header.num_entries);
1164 int num_entries = rankings_.SelfCheck(); local
2015 int num_entries = 0; local
    [all...]
block_files.cc 89 header_->num_entries++;
92 // the order of memory accesses between num_entries and allocation_map, we
93 // can assert that even if we crash here, num_entries will never be less
149 header_->num_entries--;
150 STRESS_DCHECK(header_->num_entries >= 0);
236 header_->num_entries < 0)
240 if (empty_blocks + header_->num_entries > header_->max_entries)
373 if (!file_header.Header()->num_entries) {
621 if (!next_header->num_entries) {
663 header->entry_size > kMaxBlockSize || header->num_entries < 0
677 int num_entries = (file_size - file_header.Size()) \/ header->entry_size; local
    [all...]
  /external/chromium_org/sync/internal_api/public/sessions/
sync_session_snapshot.cc 35 size_t num_entries,
47 num_entries_(num_entries),
137 size_t SyncSessionSnapshot::num_entries() const { function in class:syncer::sessions::SyncSessionSnapshot
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/
hash_policy.hpp 245 // in the table is num_entries.
247 notify_inserted(size_type num_entries);
250 notify_erased(size_type num_entries);
268 is_grow_needed(size_type size, size_type num_entries) const;
354 notify_inserted(size_type num_entries);
357 notify_erased(size_type num_entries);
374 is_grow_needed(size_type size, size_type num_entries) const;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
hash_policy.hpp 238 /// in the table is num_entries.
240 notify_inserted(size_type num_entries);
243 notify_erased(size_type num_entries);
261 is_grow_needed(size_type size, size_type num_entries) const;
360 notify_inserted(size_type num_entries);
364 notify_erased(size_type num_entries);
386 is_grow_needed(size_type size, size_type num_entries) const;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/
hash_policy.hpp 238 /// in the table is num_entries.
240 notify_inserted(size_type num_entries);
243 notify_erased(size_type num_entries);
261 is_grow_needed(size_type size, size_type num_entries) const;
360 notify_inserted(size_type num_entries);
364 notify_erased(size_type num_entries);
386 is_grow_needed(size_type size, size_type num_entries) const;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/
hash_policy.hpp 245 // in the table is num_entries.
247 notify_inserted(size_type num_entries);
250 notify_erased(size_type num_entries);
268 is_grow_needed(size_type size, size_type num_entries) const;
354 notify_inserted(size_type num_entries);
357 notify_erased(size_type num_entries);
374 is_grow_needed(size_type size, size_type num_entries) const;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/
hash_policy.hpp 238 /// in the table is num_entries.
240 notify_inserted(size_type num_entries);
243 notify_erased(size_type num_entries);
261 is_grow_needed(size_type size, size_type num_entries) const;
360 notify_inserted(size_type num_entries);
364 notify_erased(size_type num_entries);
386 is_grow_needed(size_type size, size_type num_entries) const;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/
hash_policy.hpp 245 // in the table is num_entries.
247 notify_inserted(size_type num_entries);
250 notify_erased(size_type num_entries);
268 is_grow_needed(size_type size, size_type num_entries) const;
354 notify_inserted(size_type num_entries);
357 notify_erased(size_type num_entries);
374 is_grow_needed(size_type size, size_type num_entries) const;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/
hash_policy.hpp 238 /// in the table is num_entries.
240 notify_inserted(size_type num_entries);
243 notify_erased(size_type num_entries);
261 is_grow_needed(size_type size, size_type num_entries) const;
360 notify_inserted(size_type num_entries);
364 notify_erased(size_type num_entries);
386 is_grow_needed(size_type size, size_type num_entries) const;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/
hash_policy.hpp 238 /// in the table is num_entries.
240 notify_inserted(size_type num_entries);
243 notify_erased(size_type num_entries);
261 is_grow_needed(size_type size, size_type num_entries) const;
360 notify_inserted(size_type num_entries);
364 notify_erased(size_type num_entries);
386 is_grow_needed(size_type size, size_type num_entries) const;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/
hash_policy.hpp 238 /// in the table is num_entries.
240 notify_inserted(size_type num_entries);
243 notify_erased(size_type num_entries);
261 is_grow_needed(size_type size, size_type num_entries) const;
360 notify_inserted(size_type num_entries);
364 notify_erased(size_type num_entries);
386 is_grow_needed(size_type size, size_type num_entries) const;

Completed in 1902 milliseconds

1 23 4 5 6 7 8 91011>>