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

1 2 34 5 6 7 8 91011>>

  /external/qemu/
qdict.h 32 QLIST_HEAD(,QDictEntry) table[QDICT_BUCKET_MAX]; member in struct:QDict
  /external/skia/legacy/src/opts/
SkBitmapProcState_opts_arm.cpp 28 const uint16_t* SK_RESTRICT table = s.fBitmap->getColorTable()->lock16BitCache(); local
41 uint16_t dstValue = table[src];
74 "ldrh r4, [%[table], r4] \n\t" // load pixel 0 RGB565 from colmap
76 "ldrh r5, [%[table], r5] \n\t" // load pixel 1 RGB565 from colmap
78 "ldrh r6, [%[table], r6] \n\t" // load pixel 2 RGB565 from colmap
80 "ldrh r7, [%[table], r7] \n\t" // load pixel 3 RGB565 from colmap
82 "ldrh r8, [%[table], r8] \n\t" // load pixel 4 RGB565 from colmap
83 "ldrh r9, [%[table], r9] \n\t" // load pixel 5 RGB565 from colmap
84 "ldrh r10, [%[table], r10] \n\t" // load pixel 6 RGB565 from colmap
85 "ldrh r11, [%[table], r11] \n\t" // load pixel 7 RGB565 from colma
119 const SkPMColor* SK_RESTRICT table = s.fBitmap->getColorTable()->lockColors(); local
    [all...]
  /external/skia/src/effects/
SkTableMaskFilter.cpp 19 SkTableMaskFilter::SkTableMaskFilter(const uint8_t table[256]) {
20 memcpy(fTable, table, sizeof(fTable));
41 const uint8_t* table = fTable; local
47 dstP[x] = table[srcP[x]];
84 void SkTableMaskFilter::MakeGammaTable(uint8_t table[256], SkScalar gamma) {
91 table[i] = SkPin32(sk_float_round2int(powf(x, g) * 255), 0, 255);
96 void SkTableMaskFilter::MakeClipTable(uint8_t table[256], uint8_t min,
107 memset(table, 0, min + 1);
111 table[i] = value;
113 memset(table + max, 255, 256 - max)
    [all...]
  /external/skia/src/images/
transform_scanline.h 89 const SkUnPreMultiply::Scale* SK_RESTRICT table = local
100 SkUnPreMultiply::Scale scale = table[a];
119 const SkUnPreMultiply::Scale* SK_RESTRICT table = local
130 SkUnPreMultiply::Scale scale = table[a];
  /external/skia/src/opts/
SkBitmapProcState_opts_arm.cpp 28 const uint16_t* SK_RESTRICT table = s.fBitmap->getColorTable()->lock16BitCache(); local
41 uint16_t dstValue = table[src];
74 "ldrh r4, [%[table], r4] \n\t" // load pixel 0 RGB565 from colmap
76 "ldrh r5, [%[table], r5] \n\t" // load pixel 1 RGB565 from colmap
78 "ldrh r6, [%[table], r6] \n\t" // load pixel 2 RGB565 from colmap
80 "ldrh r7, [%[table], r7] \n\t" // load pixel 3 RGB565 from colmap
82 "ldrh r8, [%[table], r8] \n\t" // load pixel 4 RGB565 from colmap
83 "ldrh r9, [%[table], r9] \n\t" // load pixel 5 RGB565 from colmap
84 "ldrh r10, [%[table], r10] \n\t" // load pixel 6 RGB565 from colmap
85 "ldrh r11, [%[table], r11] \n\t" // load pixel 7 RGB565 from colma
119 const SkPMColor* SK_RESTRICT table = s.fBitmap->getColorTable()->lockColors(); local
    [all...]
  /external/smack/src/org/xbill/DNS/
Compression.java 23 private Entry [] table; field in class:Compression
31 table = new Entry[TABLE_SIZE];
47 entry.next = table[row];
48 table[row] = entry;
56 * @param name The name to find in the compression table.
63 for (Entry entry = table[row]; entry != null; entry = entry.next) {
  /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/v8/test/cctest/
test-weakmaps.cc 41 // Do not use handles for the hash table, it would make entries strong.
43 ObjectHashTable* table = ObjectHashTable::cast(table_obj); local
44 weakmap->set_table(table);
52 Handle<ObjectHashTable> table = PutIntoObjectHashTable( local
53 Handle<ObjectHashTable>(ObjectHashTable::cast(weakmap->table())),
56 weakmap->set_table(*table);
88 CHECK_EQ(1, ObjectHashTable::cast(weakmap->table())->NumberOfElements());
93 CHECK_EQ(1, ObjectHashTable::cast(weakmap->table())->NumberOfElements());
95 0, ObjectHashTable::cast(weakmap->table())->NumberOfDeletedElements());
111 CHECK_EQ(1, ObjectHashTable::cast(weakmap->table())->NumberOfElements())
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTableRow.cpp 70 AccessibilityObject* table = parentTable(); local
71 if (!table || !table->isAccessibilityTable())
97 return axObjectCache()->get(toRenderTableRow(m_renderer)->table());
  /external/webkit/Source/WebCore/html/
HTMLTableRowElement.cpp 59 ContainerNode* table = parentNode(); local
60 if (!table)
62 table = table->parentNode();
63 if (!table || !table->hasTagName(tableTag))
73 if (HTMLTableSectionElement* head = static_cast<HTMLTableElement*>(table)->tHead()) {
82 for (Node *node = table->firstChild(); node; node = node->nextSibling()) {
94 if (HTMLTableSectionElement* foot = static_cast<HTMLTableElement*>(table)->tFoot()) {
  /external/webkit/Source/WebCore/platform/graphics/cairo/
OpenGLShims.cpp 79 static OpenGLFunctionTable table; local
80 return &table;
  /external/webkit/Source/WebCore/rendering/
RenderTableCol.cpp 68 // with libraries.uc.edu, which makes a <p> be a table-column.
74 // For now, just repaint the whole table.
79 RenderTable* parentTable = table();
99 RenderTable* RenderTableCol::table() const function in class:WebCore::RenderTableCol
101 RenderObject* table = parent(); local
102 if (table && !table->isTable())
103 table = table->parent();
104 return table && table->isTable() ? toRenderTable(table) : 0
    [all...]
RenderTableRow.h 40 RenderTable* table() const { return toRenderTable(parent()->parent()); } function in class:WebCore::RenderTableRow
  /external/webkit/Source/WebKit2/Shared/
VisitedLinkTable.cpp 81 LinkHash* table = m_table; local
88 entry = table + i;
94 // Check if the same link hash is in the table already.
113 LinkHash* table = m_table; local
120 entry = table + i;
122 // Check if we've reached the end of the table.
  /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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
CRLReason.java 91 private static final Hashtable table = new Hashtable(); field in class:CRLReason
144 if (!table.containsKey(idx))
146 table.put(idx, new CRLReason(value));
149 return (CRLReason)table.get(idx);
  /external/guava/guava-tests/test/com/google/common/collect/
TransposedTableTest.java 29 @Override protected Table<String, Integer, Character> create(
31 Table<Integer, String, Character> original = HashBasedTable.create();
32 Table<String, Integer, Character> table = Tables.transpose(original); local
33 table.clear();
34 populate(table, data);
35 return table;
39 Table<Integer, String, Character> original = HashBasedTable.create();
44 Table<Integer, String, Character> original = HashBasedTable.create();
45 Table<String, Integer, Character> transpose = Tables.transpose(original)
    [all...]
  /external/protobuf/editors/
protobuf-mode.el 170 ;; Our syntax table is auto-generated from the keyword classes we defined
172 (defvar protobuf-mode-syntax-table nil
173 "Syntax table used in protobuf-mode buffers.")
174 (or protobuf-mode-syntax-table
175 (setq protobuf-mode-syntax-table
176 (funcall (c-lang-const c-make-mode-syntax-table protobuf))))
178 (defvar protobuf-mode-abbrev-table nil
179 "Abbreviation table used in protobuf-mode buffers.")
203 (set-syntax-table protobuf-mode-syntax-table)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
LevenshteinSuggestionFormatter.java 83 final LevenshteinDistance table = new LevenshteinDistance(source, target); local
84 table.calculate();
87 LevenshteinDistance.EditOperation[] ops = table.getTargetOperations();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ColumnDialog.java 34 import org.eclipse.swt.widgets.Table;
67 Table table = mViewer.getTable(); local
68 table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
  /external/chromium/base/metrics/
stats_counters.cc 40 StatsTable* table = StatsTable::current(); local
41 if (!table)
46 counter_id_ = table->FindCounter(name_);
47 if (table->GetSlot() == 0) {
48 if (!table->RegisterThread("")) {
59 return table->GetLocation(counter_id_, table->GetSlot());
61 // counter_id_ was zero, which means the table is full.
  /external/harfbuzz_ng/src/
main.cc 29 #include "hb-ot-layout-gdef-table.hh"
98 printf (" %d table(s) found in font\n", num_tables);
100 const OpenTypeTable &table = font.get_table (n_table); local
101 printf (" Table %2d of %2d: %.4s (0x%08x+0x%08x)\n", n_table, num_tables,
102 (const char *)table.tag,
103 (unsigned int) table.offset,
104 (unsigned int) table.length);
106 switch (table.tag) {
112 const GSUBGPOS &g = *CastP<GSUBGPOS> (font_data + table.offset);
115 printf (" %d script(s) found in table\n", num_scripts)
    [all...]
  /external/icu4c/common/
locresdata.cpp 30 * Lookup a resource bundle table item with fallback on the table level.
33 * This function takes the name of a top-level table and of an item in that table
34 * and performs a lookup of both, falling back until a bundle contains a table
50 UResourceBundle *rb=NULL, table, subTable; local
74 ures_initStackObject(&table);
76 ures_getByKeyWithFallback(rb, tableKey, &table, &errorCode);
80 ures_getByKeyWithFallback(&table,subTableKey, &subTable, &errorCode);
88 ures_getByKeyWithFallback(&table,subTableKey, &table, &errorCode)
    [all...]
  /external/jpeg/
rdswitch.c 12 * -qslots N[,N,...] Set component quantization table selectors
81 * table 0 for luminance (or primary) components, 1 for chrominance components.
82 * You must use -qslots if you want a different component->table mapping.
88 unsigned int table[DCTSIZE2]; local
91 fprintf(stderr, "Can't open table file %s\n", filename);
96 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
102 table[0] = (unsigned int) val;
105 fprintf(stderr, "Invalid table data in file %s\n", filename);
109 table[i] = (unsigned int) val;
111 jpeg_add_quant_table(cinfo, tblno, table, scale_factor, force_baseline)
    [all...]
  /external/qemu/distrib/jpeg-6b/
rdswitch.c 12 * -qslots N[,N,...] Set component quantization table selectors
81 * table 0 for luminance (or primary) components, 1 for chrominance components.
82 * You must use -qslots if you want a different component->table mapping.
88 unsigned int table[DCTSIZE2]; local
91 fprintf(stderr, "Can't open table file %s\n", filename);
96 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
102 table[0] = (unsigned int) val;
105 fprintf(stderr, "Invalid table data in file %s\n", filename);
109 table[i] = (unsigned int) val;
111 jpeg_add_quant_table(cinfo, tblno, table, scale_factor, force_baseline)
    [all...]

Completed in 1219 milliseconds

1 2 34 5 6 7 8 91011>>