HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 151 - 175 of 2064) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libsepol/include/sepol/policydb/
symtab.h 7 * A symbol table (symtab) maintains associations between symbol
9 * is arbitrary. The symbol table type is implemented
10 * using the hash table type (hashtab).
30 hashtab_t table; /* hash table (keyed on a string) */ member in struct:__anon21105
31 uint32_t nprim; /* number of primary names in table */
  /external/libsepol/src/
symtab.c 7 * Implementation of the symbol table type.
42 s->table = hashtab_create(symhash, symcmp, size);
43 if (!s->table)
53 if (s->table)
54 hashtab_destroy(s->table);
  /external/mesa3d/src/mesa/main/
colortab.h 41 const GLvoid *table );
46 const GLvoid *table );
56 const GLvoid *table )
64 const GLvoid *table )
format_pack.c 1679 static gl_pack_ubyte_rgba_func table[MESA_FORMAT_COUNT]; local
1824 static gl_pack_float_rgba_func table[MESA_FORMAT_COUNT]; local
1963 static pack_float_rgba_row_func table[MESA_FORMAT_COUNT]; local
1996 static pack_ubyte_rgba_row_func table[MESA_FORMAT_COUNT]; local
    [all...]
  /external/skia/include/effects/
SkTableColorFilter.h 10 * Create a table colorfilter, copying the table into the filter, and
12 * a' = table[a];
13 * r' = table[r];
14 * g' = table[g];
15 * b' = table[b];
18 * the table is applied, and then the result is remultiplied.
20 static SkColorFilter* Create(const uint8_t table[256]);
23 * Create a table colorfilter, with a different table for eac
    [all...]
  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionSymTab.h 33 std::vector<ELFSymbolTy *> table; member in class:ELFSectionSymTab
49 return table.size();
53 return table[index];
57 return table[index];
  /external/srec/srec/cfront/
log_tabl.c 54 for (ii = 0; ii < num_bits; ii++) /* one less than the table size in
63 logtab->table = logtab__table;
65 int* table = (int *) CALLOC(logtab->size + 1, sizeof(int), "cfront.logtable"); local
66 logtab->table = table;
73 table[ii] = (int)(val + 0.5);
75 log_report("log table: %d %d\n", ii, table[ii]);
77 PRINT_SOME_CODE(" %i,", table[ii]);
103 (int)((shift) *(logtab->shift) + logtab->table[operand]))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
format_pack.c 1679 static gl_pack_ubyte_rgba_func table[MESA_FORMAT_COUNT]; local
1824 static gl_pack_float_rgba_func table[MESA_FORMAT_COUNT]; local
1963 static pack_float_rgba_row_func table[MESA_FORMAT_COUNT]; local
1996 static pack_ubyte_rgba_row_func table[MESA_FORMAT_COUNT]; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout7.java 41 final TableLayout table = (TableLayout) findViewById(R.id.menu); local
46 table.setColumnCollapsed(2, mShortcutsCollapsed);
53 table.setColumnCollapsed(0, mCheckmarksCollapsed);
57 mCheckmarksCollapsed = table.isColumnCollapsed(0);
58 mShortcutsCollapsed = table.isColumnCollapsed(2);
60 appendRow(table);
63 private void appendRow(TableLayout table) {
78 table.addView(row, new TableLayout.LayoutParams());
TableLayout8.java 40 final TableLayout table = (TableLayout) findViewById(R.id.menu); local
45 table.setColumnStretchable(1, mStretch);
49 mStretch = table.isColumnStretchable(1);
51 appendRow(table);
54 private void appendRow(TableLayout table) {
69 table.addView(row, new TableLayout.LayoutParams());
  /external/guava/guava-tests/test/com/google/common/collect/
HashBasedTableTest.java 32 @Override protected Table<String, Integer, Character> create(
34 Table<String, Integer, Character> table = HashBasedTable.create(); local
35 table.put("foo", 4, 'a');
36 table.put("cat", 1, 'b');
37 table.clear();
38 populate(table, data);
39 return table;
43 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20);
47 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0)
    [all...]
  /frameworks/base/core/java/com/android/internal/content/
SelectionBuilder.java 99 public Cursor query(SQLiteDatabase db, String table, String[] columns, String orderBy) {
100 return query(db, table, columns, null, null, orderBy, null);
106 public Cursor query(SQLiteDatabase db, String table, String[] columns, String groupBy,
108 return db.query(table, columns, getSelection(), getSelectionArgs(), groupBy, having,
115 public int update(SQLiteDatabase db, String table, ContentValues values) {
116 return db.update(table, values, getSelection(), getSelectionArgs());
122 public int delete(SQLiteDatabase db, String table) {
123 return db.delete(table, getSelection(), getSelectionArgs());
  /external/chromium_org/chrome/browser/resources/suggestions_internals/
suggestions_internals.css 5 .suggestions-debug-table {
10 .suggestions-debug-table th {
14 .suggestions-debug-table td {
  /external/chromium_org/third_party/freetype/src/autofit/
afangles.c 141 /* the following table has been automatically generated with */
248 FT_Pos* table )
258 if ( table[j] >= table[j - 1] )
261 swap = table[j];
262 table[j] = table[j - 1];
263 table[j - 1] = swap;
271 AF_Width table,
289 if ( table[j].org >= table[j - 1].org
    [all...]
  /external/freetype/src/autofit/
afangles.c 141 /* the following table has been automatically generated with */
248 FT_Pos* table )
258 if ( table[j] >= table[j - 1] )
261 swap = table[j];
262 table[j] = table[j - 1];
263 table[j - 1] = swap;
271 AF_Width table,
289 if ( table[j].org >= table[j - 1].org
    [all...]
  /external/libcap-ng/libcap-ng-0.7/src/
lookup_table.c 47 all strings referenced in the table and the table itself, which uses
76 static int capng_lookup_name(const struct transtab *table,
82 if (!strcasecmp(tabstr + table[i].offset, name))
83 return table[i].value;
88 static const char *capng_lookup_number(const struct transtab *table,
95 if (table[i].value == number)
96 return tabstr + table[i].offset;
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
lsp_lsf.cpp 50 Description: Placed table declarations in a .c file, rather than an included
63 Description: Added #ifdef __cplusplus around extern'ed table.
111 extern const Word16 table[];
140 table = cosine table
152 The transformation from lsp[i] to lsf[i] is approximated by a look-up table
182 // lsp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 256
184 L_tmp = L_mult (sub (table[ind + 1], table[ind]), offset)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowsCollection.cpp 55 HTMLTableRowElement* HTMLTableRowsCollection::rowAfter(HTMLTableElement* table, HTMLTableRowElement* previous)
61 if (previous && previous->parentNode() != table) {
70 child = table->firstChild();
84 child = table->firstChild();
85 else if (previous->parentNode() == table)
102 child = table->firstChild();
117 HTMLTableRowElement* HTMLTableRowsCollection::lastRow(HTMLTableElement* table)
119 for (Node* child = table->lastChild(); child; child = child->previousSibling()) {
128 for (Node* child = table->lastChild(); child; child = child->previousSibling()) {
139 for (Node* child = table->lastChild(); child; child = child->previousSibling())
    [all...]
  /external/libexif/libexif/canon/
mnote-canon-tag.c 33 } table[] = { variable in typeref:struct:__anon20329
134 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
135 if (table[i].tag == t) return table[i].name; /* do not translate */
164 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
165 if (table[i].tag == t) return (_(table[i].title));
193 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++
    [all...]
  /external/libexif/libexif/pentax/
mnote-pentax-tag.c 33 } table[] = { variable in typeref:struct:__anon20362
146 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
147 if (table[i].tag == t) return (table[i].name);
157 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++)
158 if (table[i].tag == t) return (_(table[i].title));
167 for (i = 0; i < sizeof (table) / sizeof (table[0]); i++
    [all...]
  /external/skia/gm/
tablecolorfilter.cpp 55 static void make_table0(uint8_t table[]) {
58 table[i] = (n << 5) | (n << 2) | (n >> 1);
61 static void make_table1(uint8_t table[]) {
63 table[i] = i * i / 255;
66 static void make_table2(uint8_t table[]) {
69 table[i] = static_cast<uint8_t>(sqrtf(fi) * 255);
74 uint8_t table[256]; make_table0(table); local
75 return SkTableColorFilter::Create(table);
78 uint8_t table[256]; make_table1(table) local
82 uint8_t table[256]; make_table2(table); local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
jquery.tablesorter.min.js 2 (function($){$.extend({tablesorter:new function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'.',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}var rows=table.tBodies[0].rows;if(table.tBodies[0].rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i<l;i++){var p=false;if($.metadata&&($($headers[i]).metadata()&&$($headers[i]).metadata().sorter)){p=getParserById($($headers[i]).metadata().sorter);}else if((table.config.headers[i]&&table.config.headers[i].sorter)){p=getParserById(table.config.headers[i].sorter);}if(!p){p=detectParserForColumn(table,cells[i]);}if(table.config.debug){parsersDebug+="column:"+i+" parser:"+p.id+"\n";}list.push(p);}}if(table.config.debug){log(parsersDebug);}return list;};function detectParserForColumn(table,node){var l=pa (…)
    [all...]
  /external/iproute2/netem/
maketable.c 2 * Experimental data distribution table generator
7 * From this, create the inverse distribution table used to approximate
73 /* Create a (normalized) distribution table from a set of observed
74 * values. The table is fixed to run from (as it happens) -4 to +4,
95 int *table; local
99 table = calloc(DISTTABLESIZE, sizeof(int));
100 if (!table) {
101 perror("table alloc");
112 ++table[index];
118 return table;
202 int *table; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
toaiff.py 21 table = {} variable
25 table['au'] = t
35 table['hcom'] = t
39 table['voc'] = t
43 table['wav'] = t
47 table['8svx'] = t
51 table['sndt'] = t
55 table['sndr'] = t
102 if ftype is None or not ftype in table:
107 sts = table[ftype].copy(fname, temp
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
toaiff.py 21 table = {} variable
25 table['au'] = t
35 table['hcom'] = t
39 table['voc'] = t
43 table['wav'] = t
47 table['8svx'] = t
51 table['sndt'] = t
55 table['sndr'] = t
102 if ftype is None or not ftype in table:
107 sts = table[ftype].copy(fname, temp
    [all...]

Completed in 800 milliseconds

1 2 3 4 5 67 8 91011>>