HomeSort by relevance Sort by last modified time
    Searched defs:tab_size (Results 1 - 10 of 10) sorted by null

  /frameworks/rs/cpu_ref/linkloader/android/
test-librsloader.c 51 static size_t const tab_size = sizeof(tab) / sizeof(struct func_entry_t); local
58 for (i = 0; i < tab_size; ++i) {
  /frameworks/rs/cpu_ref/linkloader/
main.cpp 127 static size_t const tab_size = sizeof(tab) / sizeof(func_entry_t); local
133 for (size_t i = 0; i < tab_size; ++i) {
  /external/chromium_org/chrome/browser/ui/views/tabs/
stacked_tab_strip_layout_unittest.cc 20 const int tab_size; member in struct:__anon8818::CommonTestData
50 gfx::Size(data.tab_size, 10), data.tab_padding,
122 // (tab_size(100) + padding (-10)).
  /external/grub/stage2/
boot.c 658 int tab_size, sec_size; local
669 tab_size = pu.elf->e_shentsize * pu.elf->e_shnum;
672 if (grub_read ((char *) RAW_ADDR (cur_addr), tab_size)
673 == tab_size)
677 cur_addr += tab_size;
  /external/opencv/cv/src/
cvutils.cpp 206 int i, j, k, t, dj, tab_size, int_mode = 0; local
223 tab_size = dstroi.width - srcroi.width;
224 tab = (int*)cvStackAlloc( tab_size*sizeof(tab[0]) );
229 for( i = 0; i < tab_size; i += cn )
245 for( i = left; i < tab_size; i += cn )
267 for( ; j < tab_size; j++ )
289 for( ; j < tab_size; j++ )
  /external/chromium/chrome/browser/ui/gtk/tabs/
dragged_tab_controller_gtk.cc 448 gfx::Size tab_size = dragged_tab_->attached_tab_size(); local
450 tab_size.width(), tab_size.height());
520 gfx::Size tab_size = dragged_tab_->attached_tab_size(); local
521 int vertical_drag_magnetism = tab_size.height() * 2;
531 int max_x = tabstrip_bounds.right() - tab_size.width();
532 int max_y = tabstrip_bounds.bottom() - tab_size.height();
  /external/chromium_org/chrome/browser/ui/gtk/tabs/
dragged_tab_controller_gtk.cc 510 gfx::Size tab_size = dragged_view_->attached_tab_size(); local
512 dragged_view_->GetTotalWidthInTabStrip(), tab_size.height());
581 gfx::Size tab_size = dragged_view_->attached_tab_size(); local
582 int vertical_drag_magnetism = tab_size.height() * 2;
594 int max_y = tabstrip_bounds.bottom() - tab_size.height();
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c 300 static const int tab_size = 120; local
352 assert(sizeof(rate_tab) == tab_size * sizeof(rate_tab[0]);
353 assert(sizeof(dist_tab) == tab_size * sizeof(dist_tab[0]);
357 linear_interpolate2(x, tab_size, inv_tab_step,
    [all...]
  /external/opencv/cxcore/src/
cxpersistence.cpp 77 int tab_size; member in struct:CvGenericHash
215 map->tab_size = start_tab_size;
430 int i, tab_size; local
446 tab_size = map->tab_size;
447 if( (tab_size & (tab_size - 1)) == 0 )
448 i = (int)(hashval & (tab_size - 1));
450 i = (int)(hashval % tab_size);
505 int i, tab_size; local
565 int i, len, tab_size; local
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf.c 63 UInt tab_size; member in struct:__anon29553
71 wa->tab_size = 0;
78 vg_assert(wa->tab_size > 0);
92 if (wa->tab_used < wa->tab_size) {
96 if (0) VG_(printf)("EXPAND ARRAY from %d\n", wa->tab_size);
97 vg_assert(wa->tab_used == wa->tab_size);
98 vg_assert( (wa->tab_size == 0 && wa->tab == NULL)
99 || (wa->tab_size != 0 && wa->tab != NULL) );
100 new_size = wa->tab_size == 0 ? 8 : 2 * wa->tab_size;
    [all...]

Completed in 656 milliseconds