HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 51 - 75 of 2317) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/memory_internals/
list.css 5 table.list {
10 table.list tr:nth-child(odd) td {
14 table.list td {
19 table.list .header th {
24 table.list .bottom th,
25 table.list th.bottom {
  /frameworks/base/libs/androidfw/tests/
Split_test.cpp 31 * Include a binary resource table. This table
32 * is a base table for an APK split.
39 * Include a binary resource table. This table
40 * is a configuration split table for an APK split.
50 * Include a binary resource table. This table
51 * is a feature split table for an APK split.
66 ResTable table; local
74 ResTable table; local
99 ResTable table; local
120 ResTable table; local
150 ResTable table; local
175 ResTable table; local
197 ResTable table; local
213 ResTable table; local
234 ResTable table; local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/xray/
hashtable.c 29 XRAY_NO_INSTRUMENT void XRayHashTableGrow(struct XRayHashTable* table);
31 XRAY_NO_INSTRUMENT void XRayHashTableInit(struct XRayHashTable* table,
54 int XRayHashTableGetCapacity(struct XRayHashTable* table) {
55 return table->capacity;
59 int XRayHashTableGetCount(struct XRayHashTable* table) {
60 return table->count;
65 void* XRayHashTableLookup(struct XRayHashTable* table, uint32_t key) {
67 uint32_t m = table->capacity - 1;
72 /* An empty entry means the {key, data} isn't in the table. */
73 if (NULL == table->array[j].data)
176 struct XRayHashTable* table; local
    [all...]
  /external/libexif/libexif/fuji/
mnote-fuji-tag.c 34 } table[] = { variable in typeref:struct:__anon28291
76 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
77 if (table[i].tag == t) return (table[i].name);
87 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
88 if (table[i].tag == t) return (_(table[i].title));
97 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++
    [all...]
  /external/speex/libspeex/
fftwrap.c 86 struct drft_lookup *table; local
87 table = speex_alloc(sizeof(struct drft_lookup));
88 spx_drft_init((struct drft_lookup *)table, size);
89 return (void*)table;
92 void spx_fft_destroy(void *table)
94 spx_drft_clear(table);
95 speex_free(table);
98 void spx_fft(void *table, float *in, float *out)
103 float scale = 1./((struct drft_lookup *)table)->n;
105 for (i=0;i<((struct drft_lookup *)table)->n;i++
139 struct mkl_config *table = (struct mkl_config *) speex_alloc(sizeof(struct mkl_config)); local
182 struct fftw_config *table = (struct fftw_config *) speex_alloc(sizeof(struct fftw_config)); local
255 struct kiss_config *table; local
    [all...]
  /external/srec/portable/src/
phashtable.c 40 PHashTable *table; member in struct:PHashTableEntry_t
76 PHashTable **table)
81 if (table == NULL ||
125 *table = tmp;
129 ESR_ReturnCode PHashTableDestroy(PHashTable *table)
133 if (table == NULL)
136 block = table->entryBlock;
144 FREE(table->entries);
145 FREE(table);
149 ESR_ReturnCode PHashTableGetSize(PHashTable *table,
    [all...]
  /external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
table.pass.cpp 14 // const mask* table() const throw();
25 assert(f.table() == f.classic_table());
28 std::ctype<char>::mask table[256]; local
29 std::locale l(std::locale::classic(), new std::ctype<char>(table));
31 assert(f.table() == table);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
table.pass.cpp 14 // const mask* table() const throw();
25 assert(f.table() == f.classic_table());
28 std::ctype<char>::mask table[256]; local
29 std::locale l(std::locale::classic(), new std::ctype<char>(table));
31 assert(f.table() == table);
  /external/chromium_org/third_party/skia/include/effects/
SkTableMaskFilter.h 16 Applies a table lookup on each of the alpha values in the mask.
23 /** Utility that sets the gamma table
25 static void MakeGammaTable(uint8_t table[256], SkScalar gamma);
27 /** Utility that creates a clipping table: clamps values below min to 0
30 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
32 static SkTableMaskFilter* Create(const uint8_t table[256]) {
33 return SkNEW_ARGS(SkTableMaskFilter, (table));
37 uint8_t table[256]; local
38 MakeGammaTable(table, gamma);
39 return SkNEW_ARGS(SkTableMaskFilter, (table));
43 uint8_t table[256]; local
    [all...]
  /libcore/luni/src/main/java/java/lang/
ThreadLocal.java 56 Object[] table = values.table; local
58 if (this.reference == table[index]) {
59 return (T) table[index + 1];
134 * (hash & (table.length - 1)) points to a key and not a value.
160 private Object[] table; field in class:ThreadLocal.Values
190 this.table = fromParent.table.clone();
205 Object[] table = this.table; local
268 Object[] table = this.table; local
425 Object[] table = this.table; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
OpenTypeVerticalDataTest.cpp 51 const TestTable* table = OpenType::validateTable<TestTable>(buffer); local
52 EXPECT_TRUE(table);
55 table = OpenType::validateTable<TestTable>(buffer);
56 EXPECT_FALSE(table);
59 table = OpenType::validateTable<TestTable>(buffer);
60 EXPECT_TRUE(table);
66 const TestTable* table = OpenType::validateTable<TestTable>(buffer); local
67 ASSERT_TRUE(table);
70 EXPECT_FALSE(table->validateOffset<uint8_t>(*buffer, 0xFFFF));
74 EXPECT_TRUE(table->validateOffset<uint8_t>(*buffer, offset))
    [all...]
  /external/chromium_org/third_party/icu/source/test/letest/
FontTableCache.cpp 19 const void *table; member in struct:FontTableCacheEntry
35 fTableCache[i].table = NULL;
43 LE_DELETE_ARRAY(fTableCache[i].table);
46 fTableCache[i].table = NULL;
55 void FontTableCache::freeFontTable(const void *table) const
57 LE_DELETE_ARRAY(table);
65 return fTableCache[i].table;
69 const void *table = readFontTable(tableTag, length); local
71 ((FontTableCache *) this)->add(tableTag, table, length);
73 return table;
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/leperf/
FontTableCache.cpp 19 const void *table; member in struct:FontTableCacheEntry
35 fTableCache[i].table = NULL;
43 LE_DELETE_ARRAY(fTableCache[i].table);
46 fTableCache[i].table = NULL;
55 void FontTableCache::freeFontTable(const void *table) const
57 LE_DELETE_ARRAY(table);
65 return fTableCache[i].table;
69 const void *table = readFontTable(tableTag, length); local
71 ((FontTableCache *) this)->add(tableTag, table, length);
73 return table;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
symbol_table.c 30 * Link to the next symbol in the table with the same name
39 * Link to the next symbol in the table with the same scope
74 /** Linkage in list of all headers in a given symbol table. */
101 /** Hash table containing all symbols in the symbol table. */
107 /** List of all symbol headers in the table. */
134 check_symbol_table(struct _mesa_symbol_table *table)
139 for (scope = table->current_scope; scope != NULL; scope = scope->next) {
159 _mesa_symbol_table_pop_scope(struct _mesa_symbol_table *table)
161 struct scope_level *const scope = table->current_scope
458 struct _mesa_symbol_table *table = calloc(1, sizeof(*table)); local
    [all...]
  /external/chromium_org/third_party/skia/tools/lua/
agg_dash.lua 9 function increment_inner(table, key, value)
10 table[key] = (table[key] or 0) + value
13 function increment(table, tableKey, key, value)
14 if (table[tableKey] == nil) then
15 table[tableKey] = {}
17 increment_inner(table[tableKey], key, value)
  /external/icu/icu4c/source/test/letest/
FontTableCache.cpp 19 const void *table; member in struct:FontTableCacheEntry
35 fTableCache[i].table = NULL;
43 LE_DELETE_ARRAY(fTableCache[i].table);
46 fTableCache[i].table = NULL;
55 void FontTableCache::freeFontTable(const void *table) const
57 LE_DELETE_ARRAY(table);
65 return fTableCache[i].table;
69 const void *table = readFontTable(tableTag, length); local
71 ((FontTableCache *) this)->add(tableTag, table, length);
73 return table;
    [all...]
  /external/icu/icu4c/source/test/perf/leperf/
FontTableCache.cpp 19 const void *table; member in struct:FontTableCacheEntry
35 fTableCache[i].table = NULL;
43 LE_DELETE_ARRAY(fTableCache[i].table);
46 fTableCache[i].table = NULL;
55 void FontTableCache::freeFontTable(const void *table) const
57 LE_DELETE_ARRAY(table);
65 return fTableCache[i].table;
69 const void *table = readFontTable(tableTag, length); local
71 ((FontTableCache *) this)->add(tableTag, table, length);
73 return table;
    [all...]
  /external/mesa3d/src/mesa/program/
symbol_table.c 30 * Link to the next symbol in the table with the same name
39 * Link to the next symbol in the table with the same scope
74 /** Linkage in list of all headers in a given symbol table. */
101 /** Hash table containing all symbols in the symbol table. */
107 /** List of all symbol headers in the table. */
134 check_symbol_table(struct _mesa_symbol_table *table)
139 for (scope = table->current_scope; scope != NULL; scope = scope->next) {
159 _mesa_symbol_table_pop_scope(struct _mesa_symbol_table *table)
161 struct scope_level *const scope = table->current_scope
458 struct _mesa_symbol_table *table = calloc(1, sizeof(*table)); local
    [all...]
  /external/skia/tools/lua/
agg_dash.lua 9 function increment_inner(table, key, value)
10 table[key] = (table[key] or 0) + value
13 function increment(table, tableKey, key, value)
14 if (table[tableKey] == nil) then
15 table[tableKey] = {}
17 increment_inner(table[tableKey], key, value)
  /art/runtime/
mapping_table.h 25 // A utility for processing the raw uleb128 encoded mapping table created by the quick compiler.
32 const uint8_t* table = encoded_table_; variable
33 if (table == nullptr) {
36 return DecodeUnsignedLeb128(&table);
41 const uint8_t* table = encoded_table_; variable
42 if (table == nullptr) {
45 uint32_t total_size = DecodeUnsignedLeb128(&table);
46 uint32_t pc_to_dex_size = DecodeUnsignedLeb128(&table);
52 const uint8_t* table = encoded_table_; local
53 if (table != nullptr)
124 const uint8_t* table = encoded_table_; variable
128 DecodeUnsignedLeb128(&table); \/\/ Total_size, unused. variable
135 const uint8_t* table = encoded_table_; local
    [all...]
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 3 # "plane" and create combined symbol table
9 # This script creates a symbol table which must be used when
87 and converts into one symbol table with ids in range [0..2^16-1] which
127 foreach $table (@alltables) {
128 $table{$plane{$table}} = $table;
184 foreach $table (@alltables) {
185 #printf STDERR "doing table $table (plane %d)\n", $plane{$table}
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/css/
table.css 5 /* Derived from /ui/webui/resources/css/table.css. */
11 .table[hasElementFocus] > list > [lead] {
15 .table-row {
21 .table-row-cell {
26 .table-row-cell > * {
32 .table-header {
37 .table-header-inner {
45 .table-header-cell {
52 .table-header-label {
58 .table-header-splitter
    [all...]
  /external/chromium_org/third_party/brotli/src/woff2/
font.cc 28 Font::Table* Font::FindTable(uint32_t tag) {
29 std::map<uint32_t, Font::Table>::iterator it = tables.find(tag);
33 const Font::Table* Font::FindTable(uint32_t tag) const {
34 std::map<uint32_t, Font::Table>::const_iterator it = tables.find(tag);
51 Font::Table table; local
52 if (!file.ReadU32(&table.tag) ||
53 !file.ReadU32(&table.checksum) ||
54 !file.ReadU32(&table.offset) ||
55 !file.ReadU32(&table.length))
85 const Font::Table& table = i.second; local
107 const Font::Table& table = i.second; local
    [all...]
woff2_enc.cc 74 bool ReadLongDirectory(Buffer* file, std::vector<Table>* tables,
77 Table* table = &(*tables)[i]; local
78 if (!file->ReadU32(&table->tag) ||
79 !file->ReadU32(&table->flags) ||
80 !file->ReadU32(&table->src_length) ||
81 !file->ReadU32(&table->transform_length) ||
82 !file->ReadU32(&table->dst_length)) {
96 void StoreTableEntry(const Table& table, size_t* offset, uint8_t* dst)
220 Table table; variable
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
braille_table.js 6 * @fileoverview Holds information about a braille table.
22 cvox.BrailleTable.Table;
40 * @param {function(!Array.<cvox.BrailleTable.Table>)} callback
45 // Append the common definitions to all table filenames.
46 tables.forEach(function(table) {
47 table.fileNames += (',' + cvox.BrailleTable.COMMON_DEFS_FILENAME_);
63 /** @type {!Array.<cvox.BrailleTable.Table>} */ (
73 * Finds a table in a list of tables by id.
74 * @param {!Array.<cvox.BrailleTable.Table>} tables tables to search in.
75 * @param {string} id id of table to find
    [all...]

Completed in 457 milliseconds

1 23 4 5 6 7 8 91011>>