Searched defs:table (Results 76 - 100 of 807) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableSet.java32 @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];
37 RegularImmutableSet( Object[] elements, int hashCode, Object[] table, int mask) argument
/external/icu/icu4c/source/common/
H A Dbmpset.cpp66 static void set32x64Bits(uint32_t table[64], int32_t start, int32_t limit) { argument
76 table[trail]|=bits;
86 table[trail++]|=bits;
94 table[trail++]|=bits;
104 table[trail]|=bits;
112 table[trail]|=bits;
/external/icu/icu4c/source/samples/layout/
H A DFontTableCache.cpp18 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;
72 add(LETag tableTag, const void *table) argument
[all...]
/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/iproute2/ip/
H A Dip_common.h48 __u32 table = r->rtm_table; local
50 table = rta_getattr_u32(tb[RTA_TABLE]);
51 return table;
/external/iproute2/netem/
H A Dnormal.c2 * Normal distribution table generator
29 double table[TABLESIZE+1]; local
33 table[i] = x;
37 printf("# This is the distribution table for the normal distribution.\n");
39 int value = (int) rint(table[i]*TABLEFACTOR);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_linkage.h57 util_semantic_table_from_layout(unsigned char *table, size_t table_size, unsigned char *layout, argument
61 memset(table, 0xff, table_size);
64 table[layout[i]] = first_slot_value + i;
/external/mesa3d/src/glsl/
H A Dglsl_symbol_table.h43 * type safe and some symbol table invariants.
48 _glsl_symbol_table_destructor (glsl_symbol_table *table) argument
50 table->~glsl_symbol_table();
58 void *table; local
60 table = ralloc_size(ctx, size);
61 assert(table != NULL);
63 ralloc_set_destructor(table, (void (*)(void*)) _glsl_symbol_table_destructor);
65 return table;
71 static void operator delete(void *table) argument
73 ralloc_set_destructor(table, NUL
121 struct _mesa_symbol_table *table; member in struct:glsl_symbol_table
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
H A DDebug.java57 public static void print(short[] table) { argument
61 System.out.printf("%3d, ", table[i]);
/external/qemu/include/qapi/qmp/
H A Dqdict.h32 QLIST_HEAD(,QDictEntry) table[QDICT_BUCKET_MAX]; member in struct:QDict
/external/sfntly/cpp/src/sfntly/table/
H A Dtable_based_table_builder.cc17 #include "sfntly/table/table_based_table_builder.h"
44 FontDataTablePtr table = static_cast<FontDataTable*>(GetTable()); local
45 return table.Detach();
/external/sfntly/cpp/src/test/
H A Dverify_glyf.cc19 #include "sfntly/table/truetype/glyph_table.h"
33 static bool VerifyGLYF(Table* table) { argument
34 GlyphTablePtr glyf_table = down_cast<GlyphTable*>(table);
H A Dverify_hhea.cc20 #include "sfntly/table/core/horizontal_header_table.h"
35 static bool VerifyHHEA(Table* table) { argument
36 HorizontalHeaderTablePtr hhea = down_cast<HorizontalHeaderTable*>(table);
H A Dverify_hmtx.cc19 #include "sfntly/table/core/horizontal_metrics_table.h"
49 static bool VerifyHMTX(Table* table) { argument
50 HorizontalMetricsTablePtr hmtx = down_cast<HorizontalMetricsTable*>(table);
/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/smack/src/org/xbill/DNS/
H A DCompression.java23 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) {
H A DOptions.java27 private static Map table; field in class:Options
62 table = null;
68 if (table == null)
69 table = new HashMap();
70 table.put(option.toLowerCase(), "true");
76 if (table == null)
77 table = new HashMap();
78 table.put(option.toLowerCase(), value.toLowerCase());
84 if (table == null)
86 table
[all...]
/external/srec/srec/clib/
H A Dlog_add.c56 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...]
/external/zopfli/src/zopfli/
H A Dutil.c126 static const int table[259] = { local
144 return table[l];
148 static const int table[259] = { local
162 return table[l];
169 static const int table[259] = { local
203 return table[l];
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTableTooltipHelper.java11 package org.eclipse.wb.internal.core.model.property.table;
28 * @coverage core.model.property.table
39 public PropertyTableTooltipHelper(PropertyTable table) { argument
40 m_table = table;
/external/protobuf/editors/
H A Dprotobuf-mode.el170 ;; 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...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DSecurity2Test.java58 // to the allSupported table then increment the count of the
127 * @param table
130 private void addOrIncrementTable(Hashtable table, String key) { argument
131 if (table.containsKey(key)) {
132 Integer before = (Integer) table.get(key);
133 table.put(key, new Integer(before.intValue() + 1));
135 table.put(key, new Integer(1));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERUniversalString.java15 private static final char[] table = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; field in class:DERUniversalString
99 buf.append(table[(string[i] >>> 4) & 0xf]);
100 buf.append(table[string[i] & 0xf]);
/external/chromium_org/chrome/browser/signin/
H A Dsignin_global_error_unittest.cc99 ErrorTableEntry table[] = { local
114 COMPILE_ASSERT(ARRAYSIZE_UNSAFE(table) == GoogleServiceAuthError::NUM_STATES,
117 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(table); ++i) {
121 GoogleServiceAuthError(table[i].error_state));
123 EXPECT_EQ(global_error_->HasMenuItem(), table[i].is_error);
124 EXPECT_EQ(global_error_->MenuItemLabel().empty(), !table[i].is_error);
126 !table[i].is_error);

Completed in 2592 milliseconds

1234567891011>>