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

1 2 3

  /external/oprofile/opjitconv/
create_bfd.c 36 /* Check for valid value of entry_count to avoid integer overflow. */
37 if (entry_count > UINT32_MAX - 1) {
38 bfd_perror("invalid entry_count value");
43 syms = xmalloc(sizeof(asymbol *) * (entry_count+1));
44 syms[entry_count] = NULL;
45 for (i = 0; i < entry_count; i++) {
63 r = bfd_set_symtab(cur_bfd, syms, entry_count);
194 for (j = 1; j < entry_count; j++) {
208 if (i < entry_count)
209 rc = create_text_section(i, entry_count - 1)
    [all...]
jitsymbol.c 59 xmalloc(sizeof(struct jitentry *) * entry_count);
61 qsort(array, entry_count, sizeof(struct jitentry *), compare);
93 qsort(entries_address_ascending, entry_count,
96 // lower entry_count if entries are invalidated
97 for (i = 0; i < entry_count; ++i) {
103 entry_count -= i;
106 sizeof(struct jitentry *) * entry_count);
115 sizeof(struct jitentry *) * entry_count);
116 qsort(entries_symbols_ascending, entry_count,
123 max_entry_count = entry_count = count_entries()
    [all...]
conversion.c 48 entry_count = 0;
65 if (!entry_count)
opjitconv.h 123 extern u32 entry_count;
  /system/media/camera/src/
camera_metadata.c 77 * | camera_metadata_buffer_entry_t #entry_count-1 |
80 * | (entry_capacity-entry_count) entries |
98 size_t entry_count; member in struct:camera_metadata
212 metadata->entry_count = 0;
230 size_t calculate_camera_metadata_size(size_t entry_count,
235 memory_needed += sizeof(camera_metadata_buffer_entry_t[entry_count]);
251 return calculate_camera_metadata_size(metadata->entry_count,
256 return metadata->entry_count;
279 place_camera_metadata(dst, dst_size, src->entry_count, src->data_count);
282 metadata->entry_count = src->entry_count
373 size_t entry_count = metadata->entry_count; local
    [all...]
  /external/chromium_org/android_webview/native/
state_serializer.cc 51 const int entry_count = controller.GetEntryCount(); local
53 DCHECK(entry_count >= 0);
55 DCHECK(selected_entry < entry_count);
57 if (!pickle->WriteInt(entry_count))
63 for (int i = 0; i < entry_count; ++i) {
82 int entry_count = -1; local
85 if (!iterator->ReadInt(&entry_count))
91 if (entry_count < 0)
95 if (selected_entry >= entry_count)
99 for (int i = 0; i < entry_count; ++i)
    [all...]
  /external/chromium_org/net/disk_cache/flash/
segment.cc 68 size_t entry_count = summary[0];
69 DCHECK_LE(entry_count, kFlashMaxEntryCount);
71 std::vector<int32> tmp(summary + 1, summary + 1 + entry_count);
  /external/chromium_org/content/browser/frame_host/
navigation_entry_screenshot_manager.cc 137 int entry_count = owner_->GetEntryCount(); local
138 for (int i = 0; i < entry_count; ++i) {
168 int entry_count = owner_->GetEntryCount(); local
169 for (int i = 0; i < entry_count; ++i) {
182 int entry_count = owner_->GetEntryCount(); local
183 for (int i = 0; i < entry_count; ++i) {
  /external/oprofile/agents/jvmti/
libjvmti_oprofile.c 63 jint entry_count, jvmtiLineNumberEntry* table_ptr,
76 for (i = 0; i < entry_count; ++i) {
93 for (j = 0; j < entry_count - 1; ++j) {
137 jint entry_count; local
140 &entry_count, &table_ptr);
147 entry_count, table_ptr,
  /external/chromium_org/components/webdata/encryptor/
ie7_password_win.cc 65 const int entry_count = information->header.item_count; local
66 if (entry_count % 2) // Usernames and Passwords
76 for (int i = 0; i < entry_count / 2; ++i) {
  /external/chromium_org/ui/base/resource/
data_pack.cc 231 uint32 entry_count = resources.size(); local
232 if (fwrite(&entry_count, sizeof(entry_count), 1, file) != 1) {
255 uint32 index_length = (entry_count + 1) * sizeof(DataPackEntry);
  /external/grub/stage2/
smp-imps.h 129 unsigned short entry_count; member in struct:imps_cth
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_blocking_page_unittest.cc 261 ASSERT_EQ(1, controller().entry_count());
291 ASSERT_EQ(1, controller().entry_count());
332 ASSERT_EQ(1, controller().entry_count());
387 ASSERT_EQ(1, controller().entry_count());
437 ASSERT_EQ(1, controller().entry_count());
470 ASSERT_EQ(2, controller().entry_count());
484 ASSERT_EQ(2, controller().entry_count());
  /external/chromium/chrome/browser/tab_contents/
web_contents_unittest.cc     [all...]
  /art/runtime/
scoped_thread_state_change.h 179 size_t entry_count = locals.Capacity();
180 if (entry_count > 16) {
182 << entry_count << " (most recent was a " << PrettyTypeOf(obj) << ")\n"
  /bionic/tests/
dirent_test.cpp 43 int entry_count = scandir("/proc/self", &entries, NULL, alphasort); local
44 ASSERT_GE(entry_count, 0);
49 for (size_t i = 0; i < static_cast<size_t>(entry_count); ++i) {
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service_helper.cc 407 int entry_count = controller->GetEntryCount(); local
408 if (entry_count == 0 && pending_index == 0)
409 entry_count++;
410 tab->navigations.resize(static_cast<int>(entry_count));
411 for (int i = 0; i < entry_count; ++i) {
419 if (tab->current_navigation_index == -1 && entry_count > 0)
  /external/chromium/chrome/browser/ui/toolbar/
back_forward_menu_model.cc 287 items = contents->controller().entry_count() -
331 int max_count = controller.entry_count();
439 if (controller_index >= 0 && controller_index < controller.entry_count())
  /external/chromium/chrome/browser/sessions/
tab_restore_service.cc 482 int entry_count = controller->entry_count(); local
483 if (entry_count == 0 && pending_index == 0)
484 entry_count++;
485 tab->navigations.resize(static_cast<int>(entry_count));
486 for (int i = 0; i < entry_count; ++i) {
493 if (tab->current_navigation_index == -1 && entry_count > 0)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/declarative/
rules_registry.cc 244 size_t entry_count = 0u; local
251 entry_count += 1u + extension->second.size();
253 return entry_count;
  /external/chromium/chrome/browser/
browser_commands_unittest.cc 74 ASSERT_EQ(3, controller.entry_count());
  /external/chromium/chrome/browser/tabs/
pinned_tab_codec.cc 58 if (!entry && tab_contents->controller().entry_count())
  /system/media/camera/include/system/
camera_metadata.h 202 * Calculate the buffer size needed for a metadata structure of entry_count
206 size_t calculate_camera_metadata_size(size_t entry_count,
251 * way. That is, in the copied structure, entry_count == entry_capacity, and
  /external/chromium_org/gpu/command_buffer/service/
cmd_parser_test.cc 45 CommandParser *MakeParser(unsigned int entry_count) {
48 size_t command_buffer_size = entry_count *
  /external/chromium/chrome/browser/sync/
profile_sync_service_session_unittest.cc 230 ASSERT_EQ(2, iter->second.tab()->controller().entry_count());
236 ASSERT_EQ(2, iter->second.tab()->controller().entry_count());

Completed in 547 milliseconds

1 2 3