Searched defs:table_size (Results 1 - 25 of 39) sorted by relevance

12

/external/stlport/src/
H A Dctype.cpp36 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)
[all...]
/external/chromium_org/third_party/freetype/src/sfnt/
H A Dttmtx.c62 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;
H A Dttkern.c48 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_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_linkage.h57 util_semantic_table_from_layout(unsigned char *table, size_t table_size, unsigned char *layout, argument
61 memset(table, 0xff, table_size);
/external/freetype/src/sfnt/
H A Dttmtx.c62 FT_ULong tag, table_size; local
80 error = face->goto_table( face, tag, stream, &table_size );
84 *ptable_size = table_size;
214 FT_ULong table_pos, table_size, table_end; local
225 table_size = face->vert_metrics_size;
231 table_size = face->horz_metrics_size;
234 table_end = table_pos + table_size;
H A Dttkern.c48 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/mesa3d/src/gallium/auxiliary/util/
H A Du_linkage.h57 util_semantic_table_from_layout(unsigned char *table, size_t table_size, unsigned char *layout, argument
61 memset(table, 0xff, table_size);
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/
H A Dttmtx.c62 FT_ULong tag, table_size; local
80 error = face->goto_table( face, tag, stream, &table_size );
85 *ptable_size = table_size;
91 *ptable_size = error ? 0 : table_size;
218 FT_ULong table_pos, table_size, table_end; local
229 table_size = face->vert_metrics_size;
235 table_size = face->horz_metrics_size;
238 table_end = table_pos + table_size;
H A Dttkern.c48 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_org/components/visitedlink/common/
H A Dvisitedlink_common.h76 void GetUsageStatistics(int32* table_size, argument
78 *table_size = table_length_;
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dhuffman.c80 int table_size; /* size of current table */ local
111 table_size = 1 << table_bits;
112 total_size = table_size;
132 ReplicateValue(&table[key], step, table_size, code);
143 table += table_size;
145 table_size = 1 << table_bits;
146 total_size += table_size;
153 ReplicateValue(&table[key >> root_bits], step, table_size, code);
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
H A Dttpload.c492 FT_ULong table_size, record_size; local
498 error = face->goto_table( face, TTAG_hdmx, stream, &table_size );
499 if ( error || table_size < 8 )
502 if ( FT_FRAME_EXTRACT( table_size, face->hdmx_table ) )
506 limit = p + table_size;
547 face->hdmx_table_size = table_size;
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_truetype_font_win.cc196 DWORD table_size = GetFontData(hdc.Get(), table_tag, 0, NULL, 0); local
197 if (table_size == GDI_ERROR)
200 DWORD safe_offset = std::min(static_cast<DWORD>(offset), table_size);
202 std::min(table_size - safe_offset, static_cast<DWORD>(max_data_length));
205 table_size = 0;
207 table_size = GetFontData(hdc.Get(),
212 if (table_size == GDI_ERROR)
215 return static_cast<int32_t>(table_size);
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttpload.c490 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/webrtc/base/
H A Dhelpers.cc246 const char* table, int table_size,
256 str->push_back(table[bytes[i] % table_size]);
245 CreateRandomString(size_t len, const char* table, int table_size, std::string* str) argument
/external/freetype/src/truetype/
H A Dttpload.c490 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/net/disk_cache/blockfile/
H A Dbackend_worker_v3.cc60 size_t table_size = sizeof(disk_cache::CacheAddr) * table_len; local
61 return sizeof(disk_cache::IndexHeader) + table_size;
/external/openfst/src/include/fst/
H A Dstate-table.h81 // Reserves space for table_size elements.
82 explicit HashStateTable(size_t table_size) argument
83 : HashBiTable<StateId, T, H>(table_size) {}
104 // Reserves space for 'table_size' elements.
105 explicit CompactHashStateTable(size_t table_size) argument
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' element
279 GenericComposeStateTable(const Fst<A> &fst1, const Fst<A> &fst2, size_t table_size) argument
[all...]
/external/chromium_org/base/metrics/
H A Dstats_table.cc295 int table_size = local
303 internal_ = Internal::New(table, table_size, max_threads, max_counters);
/external/chromium_org/sdch/open-vcdiff/src/
H A Dblockhash.cc63 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_siz
[all...]
/external/chromium_org/v8/src/
H A Dstring-search.h468 int table_size = AlphabetSize(); local
472 table_size * sizeof(*bad_char_occurrence));
474 for (int i = 0; i < table_size; i++) {
/external/libunwind/src/ia64/
H A DGtables.c86 unw_word_t table, size_t table_size, unw_word_t rel_ip,
95 for (lo = 0, hi = table_size / sizeof (struct ia64_table_entry); lo < hi;)
145 size_t table_size; local
157 table_size = di->u.ti.table_len * sizeof (di->u.ti.table_data[0]);
159 if (table_size < sizeof (struct ia64_table_entry))
171 table_size = di->u.rti.table_len * sizeof (unw_word_t);
173 if (table_size < sizeof (struct ia64_table_entry))
228 lookup (struct ia64_table_entry *table, size_t table_size, unw_word_t rel_ip) argument
234 for (lo = 0, hi = table_size / sizeof (struct ia64_table_entry); lo < hi;)
85 remote_lookup(unw_addr_space_t as, unw_word_t table, size_t table_size, unw_word_t rel_ip, struct ia64_table_entry *e, void *arg) argument
/external/valgrind/main/callgrind/
H A Dfn.c217 static UInt str_hash(const HChar *s, UInt table_size) argument
221 hash_value = (HASH_CONSTANT * hash_value + *s) % table_size;
/external/bison/src/
H A Dtables.c124 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)
693 aver (j < table_size);
[all...]
/external/chromium_org/components/visitedlink/test/
H A Dvisitedlink_unittest.cc377 int32 table_size; local
379 master_->GetUsageStatistics(&table_size, &table);
381 ASSERT_GT(table_size, used_count);
390 ASSERT_EQ(table_size, child_table_size);
391 for (int32 i = 0; i < table_size; i++) {

Completed in 451 milliseconds

12