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

1 2 3 4

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
values.pass.cpp 20 // static constexpr size_t table_size = k;
35 static_assert(E::table_size == 256, "");
38 where(E::table_size);
ctor_engine_copy.pass.cpp 27 for (unsigned k = 0; k <= Adaptor::table_size; ++k)
ctor_engine_move.pass.cpp 28 for (unsigned k = 0; k <= Adaptor::table_size; ++k)
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_linkage.h 57 util_semantic_table_from_layout(unsigned char *table, size_t table_size, unsigned char *layout,
61 memset(table, 0xff, table_size);
  /external/mesa3d/src/gallium/auxiliary/util/
u_linkage.h 57 util_semantic_table_from_layout(unsigned char *table, size_t table_size, unsigned char *layout,
61 memset(table, 0xff, table_size);
  /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/chromium_org/sdch/open-vcdiff/src/
blockhash.cc 63 const size_t table_size = CalcTableSize(source_size_); local
64 if (table_size == 0) {
69 // Since table_size is a power of 2, (table_size - 1) is a bit mask
70 // containing all the bits below table_size.
71 hash_table_mask_ = static_cast<uint32_t>(table_size - 1);
72 hash_table_.resize(table_size, -1);
116 size_t table_size = 1; local
118 // that value to table_size.
119 while (table_size < min_size)
    [all...]
  /external/open-vcdiff/src/
blockhash.cc 63 const size_t table_size = CalcTableSize(source_size_); local
64 if (table_size == 0) {
69 // Since table_size is a power of 2, (table_size - 1) is a bit mask
70 // containing all the bits below table_size.
71 hash_table_mask_ = static_cast<uint32_t>(table_size - 1);
72 hash_table_.resize(table_size, -1);
116 size_t table_size = 1; local
118 // that value to table_size.
119 while (table_size < min_size)
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_truetype_font_linux.cc 134 size_t table_size = 0; local
137 if (!GetFontTable(fd_, table_tag, offset, NULL, &table_size))
140 table_size = std::min(table_size, static_cast<size_t>(max_data_length));
141 data->resize(table_size);
144 &table_size))
147 return base::checked_numeric_cast<int32_t>(table_size);
pepper_truetype_font_win.cc 218 DWORD table_size = GetFontData(hdc, table_tag, 0, NULL, 0); local
219 if (table_size == GDI_ERROR)
222 DWORD safe_offset = std::min(static_cast<DWORD>(offset), table_size);
223 DWORD safe_length = std::min(table_size - safe_offset,
226 table_size = GetFontData(hdc, table_tag, safe_offset,
229 if (table_size == GDI_ERROR)
231 return static_cast<int32_t>(table_size);
  /external/freetype/src/sfnt/
ttmtx.c 62 FT_ULong tag, table_size; local
80 error = face->goto_table( face, tag, stream, &table_size );
84 *ptable_size = table_size;
211 FT_ULong table_pos, table_size, table_end; local
222 table_size = face->vert_metrics_size;
228 table_size = face->horz_metrics_size;
231 table_end = table_pos + table_size;
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;
  /external/chromium/chrome/common/
visitedlink_common.h 75 void GetUsageStatistics(int32* table_size,
77 *table_size = table_length_;
  /external/chromium_org/components/visitedlink/common/
visitedlink_common.h 76 void GetUsageStatistics(int32* table_size,
78 *table_size = table_length_;
  /external/openfst/src/include/fst/
bi-table.h 64 // Reserves space for 'table_size' elements.
65 explicit HashBiTable(size_t table_size = 0, H *h = 0, E *e = 0)
68 entry2id_(table_size, (h ? *h : H()), (e ? *e : E())) {
69 if (table_size)
70 id2entry_.reserve(table_size);
144 // Reserves space for 'table_size' elements.
145 explicit CompactHashBiTable(size_t table_size = 0, H *h = 0, E *e = 0)
150 keys_(table_size, compact_hash_func_, compact_hash_equal_) {
151 if (table_size)
152 id2entry_.reserve(table_size);
    [all...]
state-table.h 81 // Reserves space for table_size elements.
82 explicit HashStateTable(size_t table_size)
83 : HashBiTable<StateId, T, H>(table_size) {}
104 // Reserves space for 'table_size' elements.
105 explicit CompactHashStateTable(size_t table_size)
106 : CompactHashBiTable<StateId, T, H>(table_size) {}
129 // Reserves space for 'table_size' elements.
130 explicit VectorStateTable(FP *fp = 0, size_t table_size = 0)
131 : VectorBiTable<StateId, T, FP>(fp, table_size) {}
278 // Reserves space for 'table_size' elements
    [all...]
  /external/chromium_org/third_party/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;
  /external/bison/src/
tables.c 121 /* TABLE_SIZE is the allocated size of both TABLE and CHECK. We start
124 static int table_size = 32768; variable
147 int old_size = table_size;
149 while (table_size <= desired)
150 table_size *= 2;
154 old_size, table_size);
156 table = xnrealloc (table, table_size, sizeof *table);
157 conflict_table = xnrealloc (conflict_table, table_size,
159 check = xnrealloc (check, table_size, sizeof *check);
161 for (/* Nothing. */; old_size < table_size; ++old_size
    [all...]
  /external/chromium_org/third_party/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/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/chromium_org/third_party/libjingle/source/talk/base/
helpers.cc 239 const char* table, int table_size,
249 str->push_back(table[bytes[i] % 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...]

Completed in 680 milliseconds

1 2 3 4