HomeSort by relevance Sort by last modified time
    Searched defs:table (Results 101 - 125 of 901) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/flac/libFLAC/
float.c 278 const FLAC__uint32 *table = log2_lookup[fracbits >> 2]; local
297 y += table[k];
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableSet.java 32 @VisibleForTesting final transient Object[] table; field in class:RegularImmutableSet
33 // 'and' with an int to get a valid table index.
38 Object[] elements, int hashCode, Object[] table, int mask) {
40 this.table = table;
50 Object candidate = table[i & mask];
  /external/guava/guava-gwt/src/com/google/common/collect/
TreeBasedTable_CustomFieldSerializer.java 48 TreeBasedTable<Object, Object, Object> table local
51 table.row(row.getKey()).putAll((Map<?, ?>) row.getValue());
53 return table;
  /external/guava/guava-tests/test/com/google/common/collect/
NewCustomTableTest.java 35 @Override protected Table<String, Integer, Character> create(
46 Table<String, Integer, Character> table local
48 populate(table, data);
49 return table;
53 table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c');
54 ASSERT.that(table.rowKeySet()).hasContentsInOrder("foo", "bar");
58 table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c');
59 ASSERT.that(table.row("foo").keySet()).hasContentsInOrder(2, 3);
  /external/icu/icu4c/source/samples/layout/
FontTableCache.cpp 18 const void *table; member in struct:FontTableCacheEntry
33 fTableCache[i].table = NULL;
40 freeFontTable(fTableCache[i].table);
43 fTableCache[i].table = NULL;
52 void FontTableCache::freeFontTable(const void *table) const
54 LE_DELETE_ARRAY(table);
61 return fTableCache[i].table;
65 const void *table = readFontTable(tableTag); local
67 ((FontTableCache *) this)->add(tableTag, table);
69 return table;
    [all...]
  /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/iproute2/netem/
paretonormal.c 2 * Paretoormal distribution table generator
54 double table[TABLESIZE+1]; local
58 table[i] = x;
61 "# This is the distribution table for the paretonormal distribution.\n"
67 normvalue = (int) rint(table[i]*TABLEFACTOR);
  /external/libexif/libexif/canon/
mnote-canon-tag.c 33 } table[] = { variable in typeref:struct:__anon27457
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/libnl/src/
nl-fib-lookup.c 19 " -t, --table <table> Table id\n"
36 int table = RT_TABLE_UNSPEC, scope = RT_SCOPE_UNIVERSE; local
42 {"table", 1, 0, 't'},
57 table = strtoul(optarg, NULL, 0);
90 flnl_request_set_table(request, table);
  /external/qemu/include/qapi/qmp/
qdict.h 32 QLIST_HEAD(,QDictEntry) table[QDICT_BUCKET_MAX]; member in struct:QDict
  /external/sfntly/cpp/src/sample/subtly/
stats.cc 20 #include "sfntly/table/table.h"
38 TablePtr table = font->GetTable(tag); local
39 return static_cast<double>(table->DataLength()) / TotalFontSize(font) * 100;
43 fprintf(out, "====== Table Comparison (original v. subset) ======\n");
71 fprintf(out, "====== Table Stats ======\n");
  /external/sfntly/cpp/src/sfntly/table/
table_based_table_builder.cc 17 #include "sfntly/table/table_based_table_builder.h"
44 FontDataTablePtr table = static_cast<FontDataTable*>(GetTable()); local
45 return table.Detach();
50 : Table::Builder(header, data) {
55 : Table::Builder(header, data) {
59 : Table::Builder(header) {
62 Table* TableBasedTableBuilder::GetTable() {
64 table_.Attach(down_cast<Table*>(SubBuildTable(InternalReadData())));
  /external/skia/src/effects/
SkTableMaskFilter.cpp 21 SkTableMaskFilter::SkTableMaskFilter(const uint8_t table[256]) {
22 memcpy(fTable, table, sizeof(fTable));
43 const uint8_t* table = fTable; local
49 dstP[x] = table[srcP[x]];
86 void SkTableMaskFilter::MakeGammaTable(uint8_t table[256], SkScalar gamma) {
93 table[i] = SkPin32(sk_float_round2int(powf(x, g) * 255), 0, 255);
98 void SkTableMaskFilter::MakeClipTable(uint8_t table[256], uint8_t min,
109 memset(table, 0, min + 1);
113 table[i] = value;
115 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 32 const uint16_t* SK_RESTRICT table = s.fBitmap->getColorTable()->lock16BitCache(); local
45 uint16_t dstValue = table[src];
78 "ldrh r4, [%[table], r4] \n\t" // load pixel 0 RGB565 from colmap
80 "ldrh r5, [%[table], r5] \n\t" // load pixel 1 RGB565 from colmap
82 "ldrh r6, [%[table], r6] \n\t" // load pixel 2 RGB565 from colmap
84 "ldrh r7, [%[table], r7] \n\t" // load pixel 3 RGB565 from colmap
86 "ldrh r8, [%[table], r8] \n\t" // load pixel 4 RGB565 from colmap
87 "ldrh r9, [%[table], r9] \n\t" // load pixel 5 RGB565 from colmap
88 "ldrh r10, [%[table], r10] \n\t" // load pixel 6 RGB565 from colmap
89 "ldrh r11, [%[table], r11] \n\t" // load pixel 7 RGB565 from colma
123 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...]
  /frameworks/base/libs/androidfw/tests/
ResTable_test.cpp 32 * Include a binary resource table.
43 ResTable table; local
44 ASSERT_EQ(NO_ERROR, table.add(basic_arsc, basic_arsc_len));
48 ResTable table; local
49 ASSERT_EQ(NO_ERROR, table.add(basic_arsc, basic_arsc_len));
52 ssize_t block = table.getResource(base::R::string::test1, &val, MAY_NOT_BE_BAG);
57 const ResStringPool* pool = table.getTableStringBlock(block);
63 ResTable table; local
64 ASSERT_EQ(NO_ERROR, table.add(basic_arsc, basic_arsc_len));
68 uint32_t resID = table.identifierForName(testName.string(), testName.size()
76 ResTable table; local
96 ResTable table; local
116 ResTable table; local
131 ResTable table; local
147 ResTable table; local
175 ResTable table; local
201 ResTable table; local
    [all...]
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.
47 * Include a binary resource table. This table
48 * is a feature split table for an APK split.
63 ResTable table; local
71 ResTable table; local
96 ResTable table; local
117 ResTable table; local
147 ResTable table; local
167 ResTable table; local
183 ResTable table; local
204 ResTable table; local
    [all...]
  /frameworks/rs/cpu_ref/linkloader/include/
StubLayout.h 25 unsigned char *table; member in class:StubLayout
34 void initStubTable(unsigned char *table, size_t count);
  /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();