HomeSort by relevance Sort by last modified time
    Searched defs:table_size (Results 26 - 49 of 49) sorted by null

12

  /external/chromium/chrome/browser/visitedlink/
visitedlink_unittest.cc 340 int32 table_size; local
342 master_->GetUsageStatistics(&table_size, &table);
344 ASSERT_GT(table_size, used_count);
353 ASSERT_EQ(table_size, child_table_size);
354 for (int32 i = 0; i < table_size; i++) {
  /external/chromium_org/components/visitedlink/browser/
visitedlink_master.cc 573 int32 table_size = kDefaultTableSize; local
575 table_size = table_size_override_;
580 if (!CreateURLTable(table_size, true))
    [all...]
  /external/freetype/src/sfnt/
ttsbit.c 50 FT_ULong num_strikes, table_size; local
59 error = face->goto_table( face, TTAG_CBLC, stream, &table_size );
61 error = face->goto_table( face, TTAG_EBLC, stream, &table_size );
63 error = face->goto_table( face, TTAG_bloc, stream, &table_size );
67 if ( table_size < 8 )
74 if ( FT_FRAME_EXTRACT( table_size, face->sbit_table ) )
77 face->sbit_table_size = table_size;
80 p_limit = p + table_size;
97 if ( 8 + 48UL * count > table_size )
    [all...]
  /external/qemu/block/
qcow2-refcount.c 312 uint64_t table_size = next_refcount_table_size(s, blocks_used + 1); local
316 uint64_t table_clusters = size_to_clusters(s, table_size);
322 last_table_size = table_size;
323 table_size = next_refcount_table_size(s, blocks_used +
327 } while (last_table_size != table_size);
331 s->refcount_table_size, table_size);
339 uint64_t *new_table = qemu_mallocz(table_size * sizeof(uint64_t));
354 uint64_t table_clusters = size_to_clusters(s, table_size * sizeof(uint64_t));
370 for(i = 0; i < table_size; i++) {
376 table_size * sizeof(uint64_t))
    [all...]
  /external/chromium_org/net/disk_cache/v3/
backend_impl_v3.cc 71 size_t table_size = sizeof(disk_cache::CacheAddr) * table_len; local
72 return sizeof(disk_cache::IndexHeader) + table_size;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
locale_facets.h 698 static const size_t table_size = 1 + static_cast<unsigned char>(-1); member in class:ctype
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
locale_facets.h 699 static const size_t table_size = 1 + static_cast<unsigned char>(-1); member in class:ctype
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
locale_facets.h 699 static const size_t table_size = 1 + static_cast<unsigned char>(-1); member in class:ctype
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
locale_facets.h 698 static const size_t table_size = 1 + static_cast<unsigned char>(-1); member in class:ctype
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
locale_facets.h 698 static const size_t table_size = 1 + static_cast<unsigned char>(-1); member in class:ctype
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
locale_facets.h 698 static const size_t table_size = 1 + static_cast<unsigned char>(-1); member in class:ctype
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
locale_facets.h 698 static const size_t table_size = 1 + static_cast<unsigned char>(-1); member in class:ctype
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
locale_facets.h 699 static const size_t table_size = 1 + static_cast<unsigned char>(-1); member in class:ctype
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
locale_facets.h 700 static const size_t table_size = 1 + static_cast<unsigned char>(-1); member in class:ctype
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
locale_facets.h 699 static const size_t table_size = 1 + static_cast<unsigned char>(-1); member in class:ctype
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
locale_facets.h 700 static const size_t table_size = 1 + static_cast<unsigned char>(-1); member in class:ctype
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
locale_facets.h 698 static const size_t table_size = 1 + static_cast<unsigned char>(-1); member in class:ctype
    [all...]
  /external/chromium/net/disk_cache/
backend_impl.cc 69 size_t table_size = sizeof(disk_cache::CacheAddr) * table_len; local
70 return sizeof(disk_cache::IndexHeader) + table_size;
    [all...]
  /external/chromium_org/net/disk_cache/
backend_impl.cc 72 size_t table_size = sizeof(disk_cache::CacheAddr) * table_len; local
73 return sizeof(disk_cache::IndexHeader) + table_size;
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regcomp.c 859 __re_size_t table_size;
877 /* Avoid overflows. The extra "/ 2" is for the table_size doubling
887 /* table_size = 2 ^ ceil(log pat_len) */
888 for (table_size = 1; ; table_size <<= 1)
889 if (table_size > pat_len)
892 dfa->state_table = calloc (sizeof (struct re_state_table_entry), table_size);
893 dfa->state_hash_mask = table_size - 1;
854 __re_size_t table_size; local
2762 int32_t table_size; local
    [all...]
  /art/runtime/verifier/
method_verifier.cc 808 uint32_t table_size = 4 + (value_width * value_count + 1) \/ 2; local
924 uint32_t table_size = targets_offset + switch_count * 2; local
4021 size_t table_size = ((pc_bytes + ref_bitmap_bytes) * num_entries) + 4; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
i2o-dev.h 218 __u32 table_size:16; member in struct:_i2o_lct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
i2o-dev.h 218 __u32 table_size:16; member in struct:_i2o_lct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
i2o-dev.h 218 __u32 table_size:16; member in struct:_i2o_lct

Completed in 1709 milliseconds

12