HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 851 - 875 of 3741) sorted by null

<<31323334353637383940>>

  /toolchain/binutils/binutils-2.27/gold/
cref.cc 67 // Print a cross reference table.
90 // For --cref, we build a cross reference table which maps from
191 // appear in the final output table as having been defined by this
214 // Sort symbols for the cross reference table.
248 Cref_inputs::gather_cref(const Objects* objects, Cref_table* table) const
266 table->insert(std::make_pair(sym, onull));
280 // The column where the file name starts in a cross reference table.
284 // Print a cross reference table.
289 Cref_table table; local
290 this->gather_cref(&this->objects_, &table);
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/
zutil.c 212 local ptr_table table[MAX_PTR]; variable
213 /* This table is used to remember the original form of pointers
215 * Since MSDOS is not a preemptive multitasking OS, this table is not
235 table[next_ptr].org_ptr = buf;
240 table[next_ptr++].new_ptr = buf;
253 if (ptr != table[n].new_ptr) continue;
255 farfree(table[n].org_ptr);
257 table[n-1] = table[n];
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java 174 assertEquals(16 / map.segments.length, map.segments[0].table.length());
279 assertEquals(segmentSize, map.segments[i].table.length());
510 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
516 int index = hash & (table.length() - 1);
521 table.set(index, entry);
539 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
545 int index = hash & (table.length() - 1);
550 table.set(index, entry)
610 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
752 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1015 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1091 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1135 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1275 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1351 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1391 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1516 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1650 AtomicReferenceArray<ReferenceEntry<K, V>> table = segment.table; local
1669 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1704 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1739 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1773 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
1820 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
2230 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
symtable.py 23 def new(self, table, filename):
24 if table.type == _symtable.TYPE_FUNCTION:
25 return Function(table, filename)
26 if table.type == _symtable.TYPE_CLASS:
27 return Class(table, filename)
28 return SymbolTable(table, filename)
30 def __call__(self, table, filename):
31 key = table, filename
34 obj = self.__memo[key] = self.new(table, filename)
  /external/guava/guava/src/com/google/common/collect/
ImmutableTable.java 32 * An immutable {@link Table} with reliable user-specified iteration order.
54 /** Returns an empty immutable table. */
60 /** Returns an immutable table containing a single cell. */
67 * Returns an immutable copy of the provided table.
69 * <p>The {@link Table#cellSet()} iteration order of the provided table
70 * determines the iteration ordering of all views in the returned table. Note
71 * that some views of the original table and the copied table may have
81 Table<? extends R, ? extends C, ? extends V> table)
    [all...]
  /external/iptables/iptables/
ip6tables-restore.c 43 {.name = "table", .has_arg = 1, .val = 'T'},
53 fprintf(stderr, "Usage: %s [-c] [-v] [-t] [-h] [-n] [-w secs] [-W usecs] [-T table] [-M command]\n"
61 " [ --table=<TABLE> ]\n"
81 "table '%s'\n", ip6tables_globals.program_name,
167 /* check if table name specified */
169 || !strncmp(param_buffer, "--table", 8)) {
290 /* Done with the current table, release the lock. */
298 /* Acquire a lock before we create a new table handle */
301 /* New table */
302 char *table; local
    [all...]
iptables-restore.c 40 {.name = "table", .has_arg = 1, .val = 'T'},
52 fprintf(stderr, "Usage: %s [-c] [-v] [-t] [-h] [-n] [-w secs] [-W usecs] [-T table] [-M command]\n"
60 " [ --table=<TABLE> ]\n"
80 "table '%s'\n", prog_name, tablename);
165 /* check if table name specified */
167 || !strncmp(param_buffer, "--table", 8)) {
289 /* Done with the current table, release the lock. */
297 /* Acquire a lock before we create a new table handle */
300 /* New table */
301 char *table; local
    [all...]
xtables-restore.c 37 {.name = "table", .has_arg = true, .val = 'T'},
49 fprintf(stderr, "Usage: %s [-c] [-v] [-t] [-h] [-n] [-T table] [-M command] [-4] [-6]\n"
55 " [ --table=<TABLE> ]\n"
142 /* check if table name specified */
144 || !strncmp(param_buffer, "--table", 8)) {
233 /* Commit per table, although we support
247 /* Purge out unused chains in this table */
252 /* New table */
253 char *table; local
    [all...]
  /external/python/cpython2/Lib/
symtable.py 20 def new(self, table, filename):
21 if table.type == _symtable.TYPE_FUNCTION:
22 return Function(table, filename)
23 if table.type == _symtable.TYPE_CLASS:
24 return Class(table, filename)
25 return SymbolTable(table, filename)
27 def __call__(self, table, filename):
28 key = table, filename
31 obj = self.__memo[key] = self.new(table, filename)
  /external/python/cpython3/Lib/
symtable.py 20 def new(self, table, filename):
21 if table.type == _symtable.TYPE_FUNCTION:
22 return Function(table, filename)
23 if table.type == _symtable.TYPE_CLASS:
24 return Class(table, filename)
25 return SymbolTable(table, filename)
27 def __call__(self, table, filename):
28 key = table, filename
31 obj = self.__memo[key] = self.new(table, filename)
  /external/selinux/libsepol/tests/
test-common.c 35 if (!hashtab_search(p->symtab[sym_type].table, id)) {
36 fprintf(stderr, "symbol %s not found in table %d\n", id, sym_type);
40 scope = hashtab_search(p->scope[sym_type].table, id);
146 hashtab_map(p->symtab[i].table, test_index_f[i], p);
155 type = hashtab_search(p->p_types.table, id);
156 primary = hashtab_search(p->p_types.table, primary_id);
191 role = hashtab_search(decl->p_roles.table, id);
193 role = hashtab_search(p->p_roles.table, id);
233 attr = hashtab_search(decl->p_types.table, id);
235 attr = hashtab_search(p->p_types.table, id)
    [all...]
  /external/skia/src/core/
SkColorSpaceXform_A2B.cpp 110 "None", "Named", "Value", "Table", "Param"
170 SkTableTransferFn table = { local
171 gammas.table(channel),
175 gammaNeedsRef |= !this->buildTableFn(&table);
176 this->addTableFn(table, channel);
197 ctx->table = ctx->clut->table();
252 gammas.table(channel),
254 SkTableTransferFn table = { storage, kInvTableSize }; local
255 this->addTableFn(table, channel)
    [all...]
  /external/skqp/src/core/
SkColorSpaceXform_A2B.cpp 110 "None", "Named", "Value", "Table", "Param"
170 SkTableTransferFn table = { local
171 gammas.table(channel),
175 gammaNeedsRef |= !this->buildTableFn(&table);
176 this->addTableFn(table, channel);
197 ctx->table = ctx->clut->table();
252 gammas.table(channel),
254 SkTableTransferFn table = { storage, kInvTableSize }; local
255 this->addTableFn(table, channel)
    [all...]
  /external/valgrind/callgrind/
context.c 78 cxts.table = (Context**) CLG_MALLOC("cl.context.ict.1",
82 cxts.table[i] = 0;
85 /* double size of cxt table */
100 if (cxts.table[i] == NULL) continue;
102 curr = cxts.table[i];
120 VG_(free)(cxts.table);
128 cxts.table = new_table;
184 /* check fill degree of context hash table and resize if needed (>80%) */
212 /* insert into Context hash table */
214 cxt->next = cxts.table[idx]
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
symtable.py 23 def new(self, table, filename):
24 if table.type == _symtable.TYPE_FUNCTION:
25 return Function(table, filename)
26 if table.type == _symtable.TYPE_CLASS:
27 return Class(table, filename)
28 return SymbolTable(table, filename)
30 def __call__(self, table, filename):
31 key = table, filename
34 obj = self.__memo[key] = self.new(table, filename)
  /prebuilts/gdb/linux-x86/lib/python2.7/
symtable.py 23 def new(self, table, filename):
24 if table.type == _symtable.TYPE_FUNCTION:
25 return Function(table, filename)
26 if table.type == _symtable.TYPE_CLASS:
27 return Class(table, filename)
28 return SymbolTable(table, filename)
30 def __call__(self, table, filename):
31 key = table, filename
34 obj = self.__memo[key] = self.new(table, filename)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
symtable.py 23 def new(self, table, filename):
24 if table.type == _symtable.TYPE_FUNCTION:
25 return Function(table, filename)
26 if table.type == _symtable.TYPE_CLASS:
27 return Class(table, filename)
28 return SymbolTable(table, filename)
30 def __call__(self, table, filename):
31 key = table, filename
34 obj = self.__memo[key] = self.new(table, filename)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
symtable.py 23 def new(self, table, filename):
24 if table.type == _symtable.TYPE_FUNCTION:
25 return Function(table, filename)
26 if table.type == _symtable.TYPE_CLASS:
27 return Class(table, filename)
28 return SymbolTable(table, filename)
30 def __call__(self, table, filename):
31 key = table, filename
34 obj = self.__memo[key] = self.new(table, filename)
  /art/compiler/dex/
dex_to_dex_decompiler_test.cc 98 ArrayRef<const uint8_t> table; local
100 table = compiled_method->GetVmapTable();
104 table,
  /cts/tests/tests/widget/src/android/widget/cts/
GridLayoutTest.java 203 View[][] table = new View[N + 1][M + 1]; local
221 table[row][0] = v;
232 table[0][col] = v;
246 table[row][col] = v;
249 return table;
261 private void verifyGridAlignment(GridLayout p, View[][] table) {
271 View v0 = table[0][col];
275 verifyCellAlignment(row, col, alignment, v0, table[row][col], "column");
282 View v0 = table[row][0];
286 verifyCellAlignment(row, col, alignment, v0, table[row][col], "row")
294 View[][] table = populate(mGridLayout); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
gen_crc32ctable.c 27 * crc32init_le() - allocate and initialize LE table data
55 * crc32init_be() - allocate and initialize BE table data
78 static void output_table(uint32_t (*table)[256], int rows, int len, char *trans)
87 printf("%s(0x%8.8xL), ", trans, table[j][i]);
89 printf("%s(0x%8.8xL)},\n", trans, table[j][len - 1]);
  /external/libxcam/xcore/base/
xcam_3a_result.h 187 double table[XCAM_BNR_TABLE_SIZE]; member in struct:_XCam3aResultBayerNoiseReduction
202 double table[XCAM_GAMMA_TABLE_SIZE]; member in struct:_XCam3aResultGammaTable
209 double table[XCAM_CHROMA_AXIS_SIZE * XCAM_CHROMA_MATRIX_SIZE]; member in struct:_XCam3aResultMaccMatrix
  /external/libxml2/include/libxml/
entities.h 35 * and the linkind data needed for the linking in the hash table.
66 * All entities are stored in an hash table.
129 xmlCopyEntitiesTable (xmlEntitiesTablePtr table);
132 xmlFreeEntitiesTable (xmlEntitiesTablePtr table);
136 xmlEntitiesTablePtr table);
  /external/markdown/markdown/extensions/
tables.py 31 """ Parse a table block and build table. """
50 # Build table
51 table = etree.SubElement(parent, 'table')
52 thead = etree.SubElement(table, 'thead')
54 tbody = etree.SubElement(table, 'tbody')
59 """ Given a row of text, build table cells. """
91 md.parser.blockprocessors.add('table',
  /external/mesa3d/src/mapi/
stub.c 37 #include "table.h"
148 search_table_by_slot(const struct mapi_stub *table, size_t num_entries,
153 if (table[i].slot == slot)
154 return &table[i];

Completed in 1469 milliseconds

<<31323334353637383940>>