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

1 2

  /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;
opjitconv.c 63 u32 entry_count; variable
  /system/media/camera/src/
camera_metadata.c 60 * | camera_metadata_entry_t #entry_count-1 |
63 * | (entry_capacity-entry_count) entries |
81 size_t entry_count; member in struct:camera_metadata
146 metadata->entry_count = 0;
165 size_t calculate_camera_metadata_size(size_t entry_count,
168 memory_needed += sizeof(camera_metadata_entry_t[entry_count]);
186 return calculate_camera_metadata_size(metadata->entry_count,
191 return metadata->entry_count;
222 metadata->entry_count = src->entry_count;
    [all...]
  /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/grub/stage2/
smp-imps.h 129 unsigned short entry_count; member in struct:imps_cth
smp-imps.c 579 cth_count = local_cth_ptr->entry_count;
  /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...]
  /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())
  /system/media/camera/include/system/
camera_metadata.h 143 * Calculate the buffer size needed for a metadata structure of entry_count
147 size_t calculate_camera_metadata_size(size_t entry_count,
192 * way. That is, in the copied structure, entry_count == entry_capacity, and
  /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...]
session_service.cc 556 controller->entry_count());
    [all...]
  /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())
  /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());
  /external/chromium/chrome/browser/sync/glue/
session_model_associator.cc 268 tab.controller().entry_count());
819 tab.controller().entry_count() > 1)) {
    [all...]
  /external/v8/src/
isolate.h 1074 int entry_count; member in class:v8::internal::Isolate::EntryStackItem
    [all...]
isolate.cc     [all...]
  /system/media/camera/tests/
camera_metadata_tests.cpp 281 void add_test_metadata(camera_metadata_t *m, int entry_count) {
289 for (int i=0; i < entry_count; i++ ) {
  /frameworks/av/media/libstagefright/
MPEG4Extractor.cpp 889 uint32_t entry_count = U32_AT(&buffer[4]); local
891 if (entry_count > 1) {
907 for (uint32_t i = 0; i < entry_count; ++i) {
    [all...]
  /external/chromium/chrome/browser/ui/
browser.cc 2819 int entry_count = new_contents->controller().entry_count(); local
    [all...]
  /external/chromium/chrome/browser/instant/
instant_loader.cc 412 source->controller().entry_count()) {
    [all...]

Completed in 271 milliseconds

1 2