Searched refs:entry_count (Results 1 - 25 of 26) sorted by relevance

12

/external/oprofile/opjitconv/
H A Dcreate_bfd.c36 /* 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
[all...]
H A Djitsymbol.c59 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
[all...]
H A Dconversion.c48 entry_count = 0;
65 if (!entry_count)
H A Dopjitconv.h123 extern u32 entry_count;
H A Dopjitconv.c63 u32 entry_count; variable
/external/oprofile/agents/jvmti/
H A Dlibjvmti_oprofile.c63 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,
62 create_debug_line_info(jint map_length, jvmtiAddrLocationMap const * map, jint entry_count, jvmtiLineNumberEntry* table_ptr, char const * source_filename) argument
/external/grub/stage2/
H A Dsmp-imps.h129 unsigned short entry_count; member in struct:imps_cth
H A Dsmp-imps.c579 cth_count = local_cth_ptr->entry_count;
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_blocking_page_unittest.cc261 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/
H A Dweb_contents_unittest.cc885 EXPECT_EQ(1, controller().entry_count());
922 EXPECT_EQ(1, controller().entry_count());
933 EXPECT_EQ(1, controller().entry_count());
967 EXPECT_EQ(1, controller().entry_count());
977 EXPECT_EQ(1, controller().entry_count());
1011 EXPECT_EQ(1, controller().entry_count());
1022 EXPECT_EQ(1, controller().entry_count());
1070 EXPECT_EQ(2, controller().entry_count());
1081 EXPECT_EQ(1, controller().entry_count());
1125 EXPECT_EQ(2, controller().entry_count());
[all...]
/external/chromium/chrome/browser/ui/toolbar/
H A Dback_forward_menu_model.cc287 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/
H A Dtab_restore_service.cc482 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)
H A Dsession_service.cc556 controller->entry_count());
1071 controller->entry_count());
/external/chromium/chrome/browser/
H A Dbrowser_commands_unittest.cc74 ASSERT_EQ(3, controller.entry_count());
/external/chromium/chrome/browser/tabs/
H A Dpinned_tab_codec.cc58 if (!entry && tab_contents->controller().entry_count())
H A Dtab_strip_model.cc1100 contents->controller().entry_count() == 1;
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_session_unittest.cc230 ASSERT_EQ(2, iter->second.tab()->controller().entry_count());
236 ASSERT_EQ(2, iter->second.tab()->controller().entry_count());
/external/chromium/chrome/browser/sync/glue/
H A Dsession_model_associator.cc268 tab.controller().entry_count());
819 tab.controller().entry_count() > 1)) {
/external/v8/src/
H A Disolate.h1069 : entry_count(1),
1074 int entry_count; member in class:v8::internal::Isolate::EntryStackItem
H A Disolate.cc1889 entry_stack_->entry_count++;
1926 if (--entry_stack_->entry_count > 0) return;
H A Dobjects.h4025 static int LengthFor(int entry_count) { argument
4026 return IndexForEntry(entry_count);
/external/chromium/chrome/browser/ui/
H A Dbrowser.cc1128 if (index < 0 || index >= controller.entry_count())
2819 int entry_count = new_contents->controller().entry_count(); local
2820 if (entry_count > 0) {
2823 new_contents->controller().GetEntryAtIndex(entry_count - 1),
2824 entry_count - 1);
/external/chromium/chrome/browser/instant/
H A Dinstant_loader.cc412 source->controller().entry_count()) {
/external/chromium/chrome/browser/sync/syncable/
H A Dsyncable_unittest.cc1626 int entry_count = 0; local
1637 entry_count++);
/external/libvpx/mkvparser/
H A Dmkvparser.cpp1868 int entry_count = 0; local
1886 ++entry_count;
1896 m_entries = new (std::nothrow) Entry[entry_count];
1955 assert(count_ <= entry_count);

Completed in 329 milliseconds

12