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

1 2 34 5 6 7 8 91011>>

  /frameworks/rs/cpu_ref/linkloader/include/impl/
ELFSectionSymTab.hxx 26 for (size_t i = 0; i < table.size(); ++i) {
27 delete table[i];
34 for (size_t i = 0; i < table.size(); ++i) {
35 if (table[i] && table[i]->isConcreteFunc()) {
45 for (size_t i = 0; i < table.size(); ++i) {
46 if (table[i] && table[i]->isExternFunc()) {
55 for (size_t i = 0; i < table.size(); ++i) {
56 ELFSymbolTy *symbol = table[i]
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol_cnt.cpp 16 * This module maintains a contraction table structure in expanded form
77 static ContractionTable *addATableElement(CntTable *table, uint32_t *key, UErrorCode *status) {
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->capacity*2*sizeof(ContractionTable *))
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/css/
settings.css 5 #tabs-settings table {
9 #tabs-settings table td {
13 #tabs-settings table td:last-of-type {
  /external/iproute2/ip/
routel 17 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/src/utils/
eloop.c 63 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)
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->table[i].eloop_data)
515 struct eloop_sock *table; local
584 struct eloop_sock_table *table; local
595 struct eloop_sock_table *table; local
    [all...]
  /external/chromium-trace/trace-viewer/src/tracing/analysis/
analysis_results.css 15 .analysis-table {
21 .analysis-table > tr > td:first-child {
25 .analysis-table > tr > td {
29 .analysis-table-header {
33 .analysis-table-row {
37 .analysis-table-row:nth-child(2n+0) {
  /external/chromium_org/chrome/browser/resources/
about_memory_linux.css 9 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(1),
10 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(4),
11 table.list#browserComparison tr.firstRow th:nth-child(1) {
15 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(2),
16 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(5),
17 table.list#memoryDetails tr.firstRow th:nth-child(2) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableCaption.cpp 46 table()->addCaption(this);
53 table()->removeCaption(this);
56 RenderTable* RenderTableCaption::table() const function in class:blink::RenderTableCaption
  /external/e2fsprogs/lib/et/
com_right.c 52 if (code >= p->table->base && code < p->table->base + p->table->n_msgs)
53 return p->table->msgs[code - p->table->base];
63 if ((code >= p->table->base) &&
64 (code < p->table->base + p->table->n_msgs)) {
65 strncpy(str, p->table->msgs[code - p->table->base], len)
    [all...]
  /ndk/sources/android/support/src/musl-ctype/
wcwidth.c 3 static const unsigned char table[] = { variable
16 if ((table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1)
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DatabaseModifier.java 34 public abstract long insert(String table, String nullColumnHack, ContentValues values);
41 * Use this method to update a table which you would otherwise do using the
44 public abstract int update(String table, ContentValues values,
47 * Use this method to delete entries from a table which you would otherwise do using the
50 public abstract int delete(String table, String whereClause, String[] whereArgs);
  /external/chromium_org/ppapi/nacl_irt/
irt_ppapi.h 11 void* table, size_t tablesize);
  /external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
shim_ppapi.c 25 void *table, size_t tablesize) {
37 return (*__pnacl_real_irt_query_func)(interface_ident, table, tablesize);
45 table, tablesize);
63 struct nacl_irt_ppapihook *dest = table;
shim_ppapi.h 22 void *table, size_t tablesize);
  /external/chromium_org/ppapi/thunk/
ppb_flash_font_file_api.h 17 virtual PP_Bool GetFontTable(uint32_t table,
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
symbol_table.h 29 extern void _mesa_symbol_table_push_scope(struct _mesa_symbol_table *table);
31 extern void _mesa_symbol_table_pop_scope(struct _mesa_symbol_table *table);
40 extern int _mesa_symbol_table_symbol_scope(struct _mesa_symbol_table *table,
51 struct _mesa_symbol_table *table, int name_space, const char *name);
  /external/chromium_org/third_party/ots/src/
maxp.cc 13 Buffer table(data, length);
19 if (!table.ReadU32(&version)) {
27 if (!table.ReadU16(&maxp->num_glyphs)) {
37 if (!table.ReadU16(&maxp->max_points) ||
38 !table.ReadU16(&maxp->max_contours) ||
39 !table.ReadU16(&maxp->max_c_points) ||
40 !table.ReadU16(&maxp->max_c_contours) ||
41 !table.ReadU16(&maxp->max_zones) ||
42 !table.ReadU16(&maxp->max_t_points) ||
43 !table.ReadU16(&maxp->max_storage) |
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
IPropertyTooltipSite.java 11 package org.eclipse.wb.internal.core.model.property.table;
18 * @coverage core.model.property.table
  /external/mesa3d/src/mesa/program/
symbol_table.h 29 extern void _mesa_symbol_table_push_scope(struct _mesa_symbol_table *table);
31 extern void _mesa_symbol_table_pop_scope(struct _mesa_symbol_table *table);
40 extern int _mesa_symbol_table_symbol_scope(struct _mesa_symbol_table *table,
51 struct _mesa_symbol_table *table, int name_space, const char *name);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
isp_isf.cpp 58 approximated by a look-up table and interpolation.
107 /* Look-up table for transformations */
109 /* table of cos(x) in Q15 */
111 static const int16 table[129] = variable
168 /* isp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 128 */
170 L_tmp = mul_16by16_to_int32(table[ind + 1] - table[ind], offset);
171 isp[i] = add_int16(table[ind], (int16)(L_tmp >> 8))
    [all...]
  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionRelTable.h 32 std::vector<ELFRelocTy *> table; member in class:ELFSectionRelTable
46 return table.size();
50 return table[index];
54 return table[index];
  /external/srec/srec/clib/
log_add.c 56 logtab->table = logtab__table;
58 prdata* table = (prdata *) CALLOC(logtab->add_log_limit + 2, sizeof(prdata), "clib.logadd"); local
59 logtab->table = table;
66 table[ii] = (prdata)(logtab->scale * mul_scale * log(1
69 PRINT_SOME_CODE(" %d,", table[ii]);
74 PLogMessage("L: log table scale is %f\n", (float)logtab->scale);
75 PLogMessage("L: log table has %d entries\n", (int)logtab->add_log_limit);
79 log_report("T: %d %f\n", ii, (float)logtab->table[ii]);
90 ASSERT(logtab->table);
    [all...]
  /libcore/luni/src/main/java/java/util/
ListResourceBundle.java 29 HashMap<String, Object> table; field in class:ListResourceBundle
52 Iterator<String> local = table.keySet().iterator();
64 if (!table.containsKey(next)) {
94 Iterator<String> it = table.keySet().iterator();
113 return table.get(key);
117 if (table == null) {
119 table = new HashMap<String, Object>(contents.length / 3 * 4 + 3);
124 table.put((String) content[0], content[1]);
137 return table.keySet();
  /external/elfutils/0.153/lib/
dynamicsizehash.c 56 NAME name of the hash table structure.
57 TYPE data type of the hash table entries
62 ITERATE iterating over the table entries is possible
76 if (htab->table[idx].hashval != 0)
80 if (htab->table[idx].hashval == hval
81 && COMPARE (htab->table[idx].data, val) == 0)
95 if (htab->table[idx].hashval == hval
96 && COMPARE (htab->table[idx].data, val) == 0)
99 while (htab->table[idx].hashval);
109 if (htab->table[idx].hashval == 0
    [all...]
  /external/chromium_org/base/metrics/
stats_table_unittest.cc 24 // locations in the table.
28 StatsTable table(StatsTable::TableIdentifier(), kMaxThreads, kMaxCounter);
32 int slot_id = table.RegisterThread(thread_name);
35 // Fill up the table with counters.
40 int counter_id = table.FindCounter(counter_name);
45 slot_id = table.RegisterThread("too many threads");
49 int counter_id = table.FindCounter(counter_base_name);
114 // Create a stats table.
117 StatsTable table(StatsTable::TableIdentifier(), kMaxThreads, kMaxCounter);
118 StatsTable::set_current(&table);
    [all...]

Completed in 1345 milliseconds

1 2 34 5 6 7 8 91011>>