Searched refs:table (Results 51 - 75 of 1739) sorted by relevance

1234567891011>>

/external/srec/portable/src/
H A Dphashtable.c40 PHashTable *table; member in struct:PHashTableEntry_t
76 PHashTable **table)
81 if (table == NULL ||
125 *table = tmp;
129 ESR_ReturnCode PHashTableDestroy(PHashTable *table) argument
133 if (table == NULL)
136 block = table->entryBlock;
144 FREE(table->entries);
145 FREE(table);
149 ESR_ReturnCode PHashTableGetSize(PHashTable *table, argument
74 PHashTableCreate(PHashTableArgs *args, const LCHAR *memTag, PHashTable **table) argument
159 getEntry(PHashTable *table, const void *key, unsigned int hashCode, unsigned int idx) argument
208 PHashTableGetValue(PHashTable *table, const void *key, void **value) argument
231 PHashTableContainsKey(PHashTable *table, const void *key, ESR_BOOL* exists) argument
255 PHashTableGetEntry(PHashTable *table, const void *key, PHashTableEntry **entry) argument
274 PHashTableRehash(PHashTable *table) argument
338 PHashTablePutValue(PHashTable *table, const void *key, const void *value, void **oldValue) argument
422 PHashTableRemoveValue(PHashTable *table, const void *key, void **oldValue) argument
502 iteratorAdvance(PHashTable *table, PHashTableEntry *entry) argument
537 PHashTableEntryGetFirst(PHashTable *table, PHashTableEntry **entry) argument
[all...]
/external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
H A Dtable.pass.cpp14 // 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/
H A DSkTableMaskFilter.h16 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]) { argument
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...]
/external/skia/include/effects/
H A DSkTableMaskFilter.h16 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]) { argument
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...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DOpenTypeVerticalDataTest.cpp51 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
[all...]
/external/chromium_org/third_party/icu/source/test/letest/
H A DFontTableCache.cpp19 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;
76 add(LETag tableTag, const void *table, size_t length) argument
[all...]
/external/chromium_org/third_party/icu/source/test/perf/leperf/
H A DFontTableCache.cpp19 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;
76 add(LETag tableTag, const void *table, size_t length) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dsymbol_table.c30 * 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) argument
139 for (scope = table->current_scope; scope != NULL; scope = scope->next) {
159 _mesa_symbol_table_pop_scope(struct _mesa_symbol_table *table) argument
161 struct scope_level *const scope = table
187 _mesa_symbol_table_push_scope(struct _mesa_symbol_table *table) argument
198 find_symbol(struct _mesa_symbol_table *table, const char *name) argument
205 _mesa_symbol_table_iterator_ctor(struct _mesa_symbol_table *table, int name_space, const char *name) argument
281 _mesa_symbol_table_symbol_scope(struct _mesa_symbol_table *table, int name_space, const char *name) argument
303 _mesa_symbol_table_find_symbol(struct _mesa_symbol_table *table, int name_space, const char *name) argument
326 _mesa_symbol_table_add_symbol(struct _mesa_symbol_table *table, int name_space, const char *name, void *declaration) argument
381 _mesa_symbol_table_add_global_symbol(struct _mesa_symbol_table *table, int name_space, const char *name, void *declaration) argument
458 struct _mesa_symbol_table *table = calloc(1, sizeof(*table)); local
472 _mesa_symbol_table_dtor(struct _mesa_symbol_table *table) argument
[all...]
/external/chromium_org/third_party/skia/tools/lua/
H A Dagg_dash.lua9 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/
H A DFontTableCache.cpp19 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;
76 add(LETag tableTag, const void *table, size_t length) argument
[all...]
/external/icu/icu4c/source/test/perf/leperf/
H A DFontTableCache.cpp19 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;
76 add(LETag tableTag, const void *table, size_t length) argument
[all...]
/external/mesa3d/src/mesa/program/
H A Dsymbol_table.c30 * 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) argument
139 for (scope = table->current_scope; scope != NULL; scope = scope->next) {
159 _mesa_symbol_table_pop_scope(struct _mesa_symbol_table *table) argument
161 struct scope_level *const scope = table
187 _mesa_symbol_table_push_scope(struct _mesa_symbol_table *table) argument
198 find_symbol(struct _mesa_symbol_table *table, const char *name) argument
205 _mesa_symbol_table_iterator_ctor(struct _mesa_symbol_table *table, int name_space, const char *name) argument
281 _mesa_symbol_table_symbol_scope(struct _mesa_symbol_table *table, int name_space, const char *name) argument
303 _mesa_symbol_table_find_symbol(struct _mesa_symbol_table *table, int name_space, const char *name) argument
326 _mesa_symbol_table_add_symbol(struct _mesa_symbol_table *table, int name_space, const char *name, void *declaration) argument
381 _mesa_symbol_table_add_global_symbol(struct _mesa_symbol_table *table, int name_space, const char *name, void *declaration) argument
458 struct _mesa_symbol_table *table = calloc(1, sizeof(*table)); local
472 _mesa_symbol_table_dtor(struct _mesa_symbol_table *table) argument
[all...]
/external/skia/tools/lua/
H A Dagg_dash.lua9 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/chromium-trace/trace-viewer/src/tracing/analysis/
H A Danalysis_results.js53 appendTableCell_: function(table, row, cellnum, text) {
55 td.className = table.className + '-col-' + cellnum;
59 appendTableCell: function(table, row, text) {
60 return this.appendTableCell_(table, row, row.children.length, text);
63 appendTableCellWithTooltip_: function(table, row, cellnum, text, tooltip) {
66 td.className = table.className + '-col-' + cellnum;
72 this.appendTableCell_(table, row, cellnum, text);
77 * Adds a table with the given className.
78 * @return {HTMLTableElement} The newly created table.
81 var table
[all...]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dsymshift.pl3 # "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 (plan
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Dtable.css5 /* 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
[all...]
/external/chromium_org/third_party/brotli/src/woff2/
H A Dfont.cc51 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)) {
58 if ((table.offset & 3) != 0 ||
59 table.length > len ||
60 len - table.length < table.offset) {
63 intervals[table
85 const Font::Table& table = i.second; local
107 const Font::Table& table = i.second; local
[all...]
H A Dwoff2_enc.cc77 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) { argument
97 uint8_t flag_byte = KnownTableIndex(table.tag);
100 StoreU32(table.tag, offset, dst);
102 StoreBase128(table
108 TableEntrySize(const Table& table) argument
220 Table table; variable
[all...]
/external/chromium_org/device/usb/tools/
H A Dusb_ids.py23 table = {}
30 table[vendor["id"]] = vendor
46 return table
48 def GenerateDeviceDefinitions(table):
51 for vendor_id in sorted(table.keys()):
52 vendor = table[vendor_id]
65 def GenerateVendorDefinitions(table):
66 output = "const size_t UsbIds::vendor_size_ = %d;\n" % len(table.keys())
69 for vendor_id in sorted(table.keys()):
70 vendor = table[vendor_i
88 table = ParseTable(opts.input) variable
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/Layout/resources/
H A Dlarge-table-with-collapsed-borders.js12 var table = createElement("table", document.body, "table");
14 var tr = createElement("tr", table, "tr");
18 table.rows[y].cells[x].colSpan = colspan;
21 return table;
26 var table = createTable(width, height, colspan);
27 table.clientHeight;
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_cnt.cpp16 * This module maintains a contraction table structure in expanded form
77 static ContractionTable *addATableElement(CntTable *table, uint32_t *key, UErrorCode *status) { argument
98 table->elements[table->size] = el;
100 //uhash_put(table->elements, (void *)table->size, el, status);
102 *key = table->size++;
104 if(table->size == table->capacity) {
105 ContractionTable **newElements = (ContractionTable **)uprv_malloc(table
130 uprv_cnttab_constructTable(CntTable *table, uint32_t mainOffset, UErrorCode *status) argument
335 uprv_cnttab_close(CntTable *table) argument
351 uprv_cnttab_changeLastCE(CntTable *table, uint32_t element, uint32_t value, UErrorCode *status) argument
371 uprv_cnttab_insertContraction(CntTable *table, uint32_t element, UChar codePoint, uint32_t value, UErrorCode *status) argument
413 uprv_cnttab_addContraction(CntTable *table, uint32_t element, UChar codePoint, uint32_t value, UErrorCode *status) argument
442 uprv_cnttab_setContraction(CntTable *table, uint32_t element, uint32_t offset, UChar codePoint, uint32_t value, UErrorCode *status) argument
470 _cnttab_getContractionTable(CntTable *table, uint32_t element) argument
511 uprv_cnttab_findCP(CntTable *table, uint32_t element, UChar codePoint, UErrorCode *status) argument
521 uprv_cnttab_getCE(CntTable *table, uint32_t element, uint32_t position, UErrorCode *status) argument
530 uprv_cnttab_findCE(CntTable *table, uint32_t element, UChar codePoint, UErrorCode *status) argument
539 uprv_cnttab_isTailored(CntTable *table, uint32_t element, UChar *ztString, UErrorCode *status) argument
558 uprv_cnttab_changeContraction(CntTable *table, uint32_t element, UChar codePoint, uint32_t newCE, UErrorCode *status) argument
[all...]
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/css/
H A Dsettings.css5 #tabs-settings table {
9 #tabs-settings table td {
13 #tabs-settings table td:last-of-type {
/external/iproute2/ip/
H A Droutel17 ip route list table "$@" |
26 table=""
40 echo "$network $via $src $proto $scope $dev $table"
57 table=$7;
58 printf(format,network,mask,via,src,proto,scope,dev,table);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Deloop.c63 struct eloop_sock *table; member in struct:eloop_sock_table
74 int count; /* sum of all table counts */
113 static void eloop_trace_sock_add_ref(struct eloop_sock_table *table) argument
116 if (table == NULL || table->table == NULL)
118 for (i = 0; i < table->count; i++) {
119 wpa_trace_add_ref(&table->table[i], eloop,
120 table
127 eloop_trace_sock_remove_ref(struct eloop_sock_table *table) argument
170 eloop_sock_table_add_sock(struct eloop_sock_table *table, int sock, eloop_sock_handler handler, void *eloop_data, void *user_data) argument
293 eloop_sock_table_remove_sock(struct eloop_sock_table *table, int sock) argument
417 eloop_sock_table_dispatch_table(struct eloop_sock_table *table, struct pollfd **pollfds_map, int max_pollfd_map, short int revents) argument
472 eloop_sock_table_set_fds(struct eloop_sock_table *table, fd_set *fds) argument
489 eloop_sock_table_dispatch(struct eloop_sock_table *table, fd_set *fds) argument
515 struct eloop_sock *table; local
529 eloop_sock_table_destroy(struct eloop_sock_table *table) argument
584 struct eloop_sock_table *table; local
595 struct eloop_sock_table *table; local
[all...]
/external/wpa_supplicant_8/src/utils/
H A Deloop.c63 struct eloop_sock *table; member in struct:eloop_sock_table
74 int count; /* sum of all table counts */
113 static void eloop_trace_sock_add_ref(struct eloop_sock_table *table) argument
116 if (table == NULL || table->table == NULL)
118 for (i = 0; i < table->count; i++) {
119 wpa_trace_add_ref(&table->table[i], eloop,
120 table
127 eloop_trace_sock_remove_ref(struct eloop_sock_table *table) argument
170 eloop_sock_table_add_sock(struct eloop_sock_table *table, int sock, eloop_sock_handler handler, void *eloop_data, void *user_data) argument
293 eloop_sock_table_remove_sock(struct eloop_sock_table *table, int sock) argument
417 eloop_sock_table_dispatch_table(struct eloop_sock_table *table, struct pollfd **pollfds_map, int max_pollfd_map, short int revents) argument
472 eloop_sock_table_set_fds(struct eloop_sock_table *table, fd_set *fds) argument
489 eloop_sock_table_dispatch(struct eloop_sock_table *table, fd_set *fds) argument
515 struct eloop_sock *table; local
529 eloop_sock_table_destroy(struct eloop_sock_table *table) argument
584 struct eloop_sock_table *table; local
595 struct eloop_sock_table *table; local
[all...]

Completed in 4422 milliseconds

1234567891011>>