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

1 2

  /external/chromium/sdch/open-vcdiff/src/
blockhash.cc 62 const size_t table_size = CalcTableSize(source_size_); local
63 if (table_size == 0) {
68 // Since table_size is a power of 2, (table_size - 1) is a bit mask
69 // containing all the bits below table_size.
70 hash_table_mask_ = static_cast<uint32_t>(table_size - 1);
71 hash_table_.resize(table_size, -1);
115 size_t table_size = 1; local
117 // that value to table_size.
118 while (table_size < min_size)
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/
sym.c 51 int addsym( sym, str_def, int_def, table, table_size )
56 int table_size;
58 int hash_val = hashfunct( sym, table_size );
130 struct hash_entry *findsym( sym, table, table_size )
133 int table_size;
141 table[hashfunct( sym, table_size )];
  /external/chromium/chrome/common/
visitedlink_common.h 75 void GetUsageStatistics(int32* table_size,
77 *table_size = table_length_;
  /external/freetype/src/sfnt/
ttkern.c 48 FT_ULong table_size; local
56 error = face->goto_table( face, TTAG_kern, stream, &table_size );
60 if ( table_size < 4 ) /* the case of a malformed table */
68 if ( FT_FRAME_EXTRACT( table_size, face->kern_table ) )
75 face->kern_table_size = table_size;
78 p_limit = p + table_size;
ttmtx.c 71 FT_ULong tag, table_size; local
89 error = face->goto_table( face, tag, stream, &table_size );
93 *ptable_size = table_size;
358 FT_ULong table_pos, table_size, table_end; local
369 table_size = face->vert_metrics_size;
375 table_size = face->horz_metrics_size;
378 table_end = table_pos + table_size;
ttsbit0.c 48 FT_ULong num_strikes, table_size; local
57 error = face->goto_table( face, TTAG_EBLC, stream, &table_size );
59 error = face->goto_table( face, TTAG_bloc, stream, &table_size );
63 if ( table_size < 8 )
70 if ( FT_FRAME_EXTRACT( table_size, face->sbit_table ) )
73 face->sbit_table_size = table_size;
76 p_limit = p + table_size;
93 if ( 8 + 48UL * count > table_size )
  /external/bison/src/
tables.c 123 /* TABLE_SIZE is the allocated size of both TABLE and CHECK. We start
126 static int table_size = 32768; variable
149 int old_size = table_size;
151 while (table_size <= desired)
152 table_size *= 2;
156 old_size, table_size);
158 table = xnrealloc (table, table_size, sizeof *table);
159 conflict_table = xnrealloc (conflict_table, table_size,
161 check = xnrealloc (check, table_size, sizeof *check);
163 for (/* Nothing. */; old_size < table_size; ++old_size
    [all...]
  /external/freetype/src/truetype/
ttpload.c 490 FT_ULong table_size, record_size; local
496 error = face->goto_table( face, TTAG_hdmx, stream, &table_size );
497 if ( error || table_size < 8 )
500 if ( FT_FRAME_EXTRACT( table_size, face->hdmx_table ) )
504 limit = p + table_size;
545 face->hdmx_table_size = table_size;
  /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/stlport/src/
ctype.cpp 36 const size_t ctype<char>::table_size; member in class:ctype
45 static const ctype_base::mask _S_classic_table[table_size] = {
200 const unsigned char _S_upper[ctype<char>::table_size] =
236 const unsigned char _S_lower[ctype<char>::table_size] =
385 { return _WCharIndex::in_range(c, ctype<char>::table_size) && (table[c] & M); }
396 return _WCharIndex::in_range(c, ctype<char>::table_size) && (m & table[c]);
406 *vec = _WCharIndex::in_range(c, ctype<char>::table_size) ? table[c] : ctype_base::mask(0);
425 return _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_upper[c]
433 *low = _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_upper[c]
440 return _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_lower[c
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
ctype.cpp 36 const size_t ctype<char>::table_size; member in class:ctype
45 static const ctype_base::mask _S_classic_table[table_size] = {
200 const unsigned char _S_upper[ctype<char>::table_size] =
236 const unsigned char _S_lower[ctype<char>::table_size] =
385 { return _WCharIndex::in_range(c, ctype<char>::table_size) && (table[c] & M); }
396 return _WCharIndex::in_range(c, ctype<char>::table_size) && (m & table[c]);
406 *vec = _WCharIndex::in_range(c, ctype<char>::table_size) ? table[c] : ctype_base::mask(0);
425 return _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_upper[c]
433 *low = _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_upper[c]
440 return _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_lower[c
    [all...]
  /external/openfst/src/include/fst/
bi-table.h 104 // Reserves space for table_size elements.
105 explicit CompactHashBiTable(size_t table_size)
108 keys_(table_size, hash_func_, hash_equal_) {
109 id2entry_.reserve(table_size);
state-table.h 100 // Reserves space for table_size elements.
101 explicit CompactHashStateTable(size_t table_size)
102 : CompactHashBiTable<StateId, T, H>(table_size) {}
  /external/stlport/stlport/stl/
_ctype.h 115 _STLP_STATIC_CONSTANT(size_t, table_size = 256);
171 mask _M_byname_table[table_size];
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ctype.h 115 _STLP_STATIC_CONSTANT(size_t, table_size = 256);
171 mask _M_byname_table[table_size];
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_ctype.h 115 _STLP_STATIC_CONSTANT(size_t, table_size = 256);
171 mask _M_byname_table[table_size];
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_ctype.h 115 _STLP_STATIC_CONSTANT(size_t, table_size = 256);
171 mask _M_byname_table[table_size];
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_ctype.h 115 _STLP_STATIC_CONSTANT(size_t, table_size = 256);
171 mask _M_byname_table[table_size];
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_ctype.h 115 _STLP_STATIC_CONSTANT(size_t, table_size = 256);
171 mask _M_byname_table[table_size];
  /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++) {
visitedlink_master.cc 573 int32 table_size = kDefaultTableSize; local
575 table_size = table_size_override_;
580 if (!CreateURLTable(table_size, true))
    [all...]
  /external/v8/src/
string-search.h 483 int table_size = AlphabetSize(); local
487 table_size * sizeof(*bad_char_occurrence));
489 for (int i = 0; i < table_size; i++) {
  /external/chromium/base/metrics/
stats_table.cc 261 int table_size = local
269 impl_ = Private::New(name, table_size, max_threads, max_counters);
  /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

Completed in 963 milliseconds

1 2