Home
last modified time | relevance | path

Searched defs:table (Results 1 – 25 of 762) sorted by relevance

12345678910>>...31

/external/python/cpython2/Tools/unicode/
Dmkstringprep.py68 table = {} variable
123 name, table = tables[0] variable
126 table = set(table.keys()) variable
146 name, table = tables[0] variable
149 table = sorted(table.keys()) variable
236 name, table = tables[0] variable
247 name, table = tables[0] variable
304 name, table = tables[0] variable
318 name, table = tables[0] variable
325 table = set(table.keys()) variable
[all …]
/external/syslinux/gpxe/src/include/gpxe/
Dtables.h187 #define __table_type( table ) __table_extract_type table argument
196 #define __table_name( table ) __table_extract_name table argument
206 #define __table_section( table, idx ) \ argument
216 #define __table_alignment( table ) __alignof__ ( __table_type ( table ) ) argument
238 #define __table_entry( table, idx ) \ argument
249 #define __table_entries( table, idx ) ( { \ argument
270 #define table_start( table ) __table_entries ( table, 00 ) argument
288 #define table_end( table ) __table_entries ( table, 99 ) argument
307 #define table_num_entries( table ) \ argument
332 #define for_each_table_entry( pointer, table ) \ argument
[all …]
/external/mesa3d/src/mesa/main/
Dhash.c119 struct _mesa_HashTable *table = CALLOC_STRUCT(_mesa_HashTable); in _mesa_NewHashTable() local
155 _mesa_DeleteHashTable(struct _mesa_HashTable *table) in _mesa_DeleteHashTable()
176 _mesa_HashLookup_unlocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookup_unlocked()
203 _mesa_HashLookup(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookup()
226 _mesa_HashLookupLocked(struct _mesa_HashTable *table, GLuint key) in _mesa_HashLookupLocked()
242 _mesa_HashLockMutex(struct _mesa_HashTable *table) in _mesa_HashLockMutex()
255 _mesa_HashUnlockMutex(struct _mesa_HashTable *table) in _mesa_HashUnlockMutex()
263 _mesa_HashInsert_unlocked(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsert_unlocked()
299 _mesa_HashInsertLocked(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsertLocked()
314 _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data) in _mesa_HashInsert()
[all …]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DTableCollectionTest.java70 Table<String, Integer, Character> table, String[] elements) { in populateForRowKeySet()
78 Table<Integer, String, Character> table, String[] elements) { in populateForColumnKeySet()
86 Table<Integer, Character, String> table, String[] elements) { in populateForValues()
107 Table<String, Integer, Character> table = createTable(); in create() local
164 Table<Character, String, Integer> table = makeTable(); in makePopulatedMap() local
217 Table<Character, String, Integer> table = HashBasedTable.create(); in makeTable() local
222 Table<Character, String, Integer> table = HashBasedTable.create(); in makePopulatedMap() local
237 Table<Character, String, Integer> table = HashBasedTable.create(); in makeTable() local
242 Table<Character, String, Integer> table = HashBasedTable.create(); in makePopulatedMap() local
257 RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); in makeTable() local
[all …]
DImmutableTableTest.java178 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOf() local
193 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOfSparse() local
207 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOfDense() local
220 Table<Character, Integer, String> table = HashBasedTable.create(); in testBuilder_orderRowsAndColumnsBy_putAll() local
250 Table<Character, Integer, String> table = builder.build(); in testBuilder_orderRowsAndColumnsBy_sparse() local
272 Table<Character, Integer, String> table = builder.build(); in testBuilder_orderRowsAndColumnsBy_dense() local
294 Table<Character, Integer, String> table = builder.build(); in testBuilder_orderRowsBy_sparse() local
311 Table<Character, Integer, String> table = builder.build(); in testBuilder_orderRowsBy_dense() local
329 Table<Character, Integer, String> table = builder.build(); in testBuilder_orderColumnsBy_sparse() local
346 Table<Character, Integer, String> table = builder.build(); in testBuilder_orderColumnsBy_dense() local
DArrayTableTest.java43 ArrayTable<String, Integer, Character> table = in create() local
280 ArrayTable<String, Integer, Character> table in testRowKeyList() local
286 ArrayTable<String, Integer, Character> table in testColumnKeyList() local
298 ArrayTable<String, Integer, Character> table in testAt() local
322 ArrayTable<String, Integer, Character> table in testSet() local
350 ArrayTable<String, Integer, Character> table in testEraseAll() local
377 ArrayTable<String, Integer, Character> table in testErase() local
/external/clang/test/Analysis/
Dmalloc-overflow2.c9 struct table { struct
11 unsigned *table; argument
15 static int table_build(struct table *t) { in table_build() argument
/external/speex/libspeex/
Dfftwrap.c86 struct drft_lookup *table; in spx_fft_init() local
92 void spx_fft_destroy(void *table) in spx_fft_destroy()
98 void spx_fft(void *table, float *in, float *out) in spx_fft()
116 void spx_ifft(void *table, float *in, float *out) in spx_ifft()
139 struct mkl_config *table = (struct mkl_config *) speex_alloc(sizeof(struct mkl_config)); in spx_fft_init() local
149 void spx_fft_destroy(void *table) in spx_fft_destroy()
156 void spx_fft(void *table, spx_word16_t *in, spx_word16_t *out) in spx_fft()
162 void spx_ifft(void *table, spx_word16_t *in, spx_word16_t *out) in spx_ifft()
182 struct fftw_config *table = (struct fftw_config *) speex_alloc(sizeof(struct fftw_config)); in spx_fft_init() local
193 void spx_fft_destroy(void *table) in spx_fft_destroy()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DTableCollectionTest.java582 Table<String, Integer, Character> table, String[] elements) { in populateForRowKeySet()
590 Table<Integer, String, Character> table, String[] elements) { in populateForColumnKeySet()
598 Table<Integer, Character, String> table, String[] elements) { in populateForValues()
619 Table<String, Integer, Character> table = createTable(); in create() local
676 Table<Character, String, Integer> table = makeTable(); in makePopulatedMap() local
749 Table<Character, String, Integer> table = HashBasedTable.create(); in makeTable() local
754 Table<Character, String, Integer> table = HashBasedTable.create(); in makePopulatedMap() local
769 Table<Character, String, Integer> table = HashBasedTable.create(); in makeTable() local
774 Table<Character, String, Integer> table = HashBasedTable.create(); in makePopulatedMap() local
789 RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); in makeTable() local
[all …]
DImmutableTableTest.java179 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOf() local
194 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOfSparse() local
208 Table<Character, Integer, String> table = TreeBasedTable.create(); in testCopyOfDense() local
221 Table<Character, Integer, String> table = HashBasedTable.create(); in testBuilder_orderRowsAndColumnsBy_putAll() local
251 Table<Character, Integer, String> table = builder.build(); in testBuilder_orderRowsAndColumnsBy_sparse() local
273 Table<Character, Integer, String> table = builder.build(); in testBuilder_orderRowsAndColumnsBy_dense() local
295 Table<Character, Integer, String> table = builder.build(); in testBuilder_orderRowsBy_sparse() local
312 Table<Character, Integer, String> table = builder.build(); in testBuilder_orderRowsBy_dense() local
330 Table<Character, Integer, String> table = builder.build(); in testBuilder_orderColumnsBy_sparse() local
347 Table<Character, Integer, String> table = builder.build(); in testBuilder_orderColumnsBy_dense() local
DArrayTableTest.java45 ArrayTable<String, Integer, Character> table = in create() local
287 ArrayTable<String, Integer, Character> table in testRowKeyList() local
293 ArrayTable<String, Integer, Character> table in testColumnKeyList() local
305 ArrayTable<String, Integer, Character> table in testAt() local
329 ArrayTable<String, Integer, Character> table in testSet() local
357 ArrayTable<String, Integer, Character> table in testEraseAll() local
384 ArrayTable<String, Integer, Character> table in testErase() local
399 ArrayTable<String, Integer, Character> table in testToArray() local
/external/vulkan-validation-layers/loader/
Dtable_ops.h46 VkLayerDispatchTable *table = &dev_table->core_dispatch; in loader_init_device_dispatch_table() local
259 VkLayerDispatchTable *table = &dev_table->core_dispatch; in loader_init_device_extension_dispatch_table() local
294 loader_lookup_device_dispatch_table(const VkLayerDispatchTable *table, in loader_lookup_device_dispatch_table()
561 loader_init_instance_core_dispatch_table(VkLayerInstanceDispatchTable *table, in loader_init_instance_core_dispatch_table()
598 VkLayerInstanceDispatchTable *table, PFN_vkGetInstanceProcAddr gpa, in loader_init_instance_extension_dispatch_table()
682 loader_lookup_instance_dispatch_table(const VkLayerInstanceDispatchTable *table, in loader_lookup_instance_dispatch_table()
/external/mesa3d/src/mesa/program/
Dsymbol_table.c85 _mesa_symbol_table_pop_scope(struct _mesa_symbol_table *table) in _mesa_symbol_table_pop_scope()
117 _mesa_symbol_table_push_scope(struct _mesa_symbol_table *table) in _mesa_symbol_table_push_scope()
132 find_symbol(struct _mesa_symbol_table *table, const char *name) in find_symbol()
148 _mesa_symbol_table_symbol_scope(struct _mesa_symbol_table *table, in _mesa_symbol_table_symbol_scope()
163 _mesa_symbol_table_find_symbol(struct _mesa_symbol_table *table, in _mesa_symbol_table_find_symbol()
175 _mesa_symbol_table_add_symbol(struct _mesa_symbol_table *table, in _mesa_symbol_table_add_symbol()
215 _mesa_symbol_table_replace_symbol(struct _mesa_symbol_table *table, in _mesa_symbol_table_replace_symbol()
230 _mesa_symbol_table_add_global_symbol(struct _mesa_symbol_table *table, in _mesa_symbol_table_add_global_symbol()
290 struct _mesa_symbol_table *table = calloc(1, sizeof(*table)); in _mesa_symbol_table_ctor() local
304 _mesa_symbol_table_dtor(struct _mesa_symbol_table *table) in _mesa_symbol_table_dtor()
/external/libxml2/
Dhash.c68 struct _xmlHashEntry *table; member
82 xmlHashComputeKey(xmlHashTablePtr table, const xmlChar *name, in xmlHashComputeKey()
112 xmlHashComputeQKey(xmlHashTablePtr table, in xmlHashComputeQKey()
175 xmlHashTablePtr table; in xmlHashCreate() local
209 xmlHashTablePtr table; in xmlHashCreateDict() local
229 xmlHashGrow(xmlHashTablePtr table, int size) { in xmlHashGrow()
320 xmlHashFree(xmlHashTablePtr table, xmlHashDeallocator f) { in xmlHashFree()
387 xmlHashAddEntry(xmlHashTablePtr table, const xmlChar *name, void *userdata) { in xmlHashAddEntry()
404 xmlHashAddEntry2(xmlHashTablePtr table, const xmlChar *name, in xmlHashAddEntry2()
423 xmlHashUpdateEntry(xmlHashTablePtr table, const xmlChar *name, in xmlHashUpdateEntry()
[all …]
/external/bison/lib/
Dhash.c150 hash_get_n_buckets (const Hash_table *table) in hash_get_n_buckets()
158 hash_get_n_buckets_used (const Hash_table *table) in hash_get_n_buckets_used()
166 hash_get_n_entries (const Hash_table *table) in hash_get_n_entries()
174 hash_get_max_bucket_length (const Hash_table *table) in hash_get_max_bucket_length()
201 hash_table_ok (const Hash_table *table) in hash_table_ok()
230 hash_print_statistics (const Hash_table *table, FILE *stream) in hash_print_statistics()
249 safe_hasher (const Hash_table *table, const void *key) in safe_hasher()
261 hash_lookup (const Hash_table *table, const void *entry) in hash_lookup()
288 hash_get_first (const Hash_table *table) in hash_get_first()
307 hash_get_next (const Hash_table *table, const void *entry) in hash_get_next()
[all …]
/external/python/cpython2/Tools/scripts/
Dpdeps.py66 def process(filename, table): argument
94 def closure(table): argument
123 def inverse(table): argument
146 def printresults(table): argument
/external/libdrm/
Dxf86drmHash.c109 HashTablePtr table; in drmHashCreate() local
126 HashTablePtr table = (HashTablePtr)t; in drmHashDestroy() local
147 static HashBucketPtr HashFind(HashTablePtr table, in HashFind()
177 HashTablePtr table = (HashTablePtr)t; in drmHashLookup() local
190 HashTablePtr table = (HashTablePtr)t; in drmHashInsert() local
212 HashTablePtr table = (HashTablePtr)t; in drmHashDelete() local
229 HashTablePtr table = (HashTablePtr)t; in drmHashNext() local
246 HashTablePtr table = (HashTablePtr)t; in drmHashFirst() local
/external/flatbuffers/include/flatbuffers/
Dreflection.h62 template<typename T> T GetFieldI(const Table &table, in GetFieldI()
70 template<typename T> T GetFieldF(const Table &table, in GetFieldF()
78 inline const String *GetFieldS(const Table &table, in GetFieldS()
85 template<typename T> Vector<T> *GetFieldV(const Table &table, in GetFieldV()
95 inline VectorOfAny *GetFieldAnyV(const Table &table, in GetFieldAnyV()
101 inline Table *GetFieldT(const Table &table, in GetFieldT()
109 inline const Struct *GetFieldStruct(const Table &table, in GetFieldStruct()
139 inline int64_t GetAnyFieldI(const Table &table, in GetAnyFieldI()
147 inline double GetAnyFieldF(const Table &table, in GetAnyFieldF()
158 inline std::string GetAnyFieldS(const Table &table, in GetAnyFieldS()
[all …]
/external/guava/guava-gwt/src/com/google/common/collect/
DTreeBasedTable_CustomFieldSerializer.java29 public static void deserialize(SerializationStreamReader reader, TreeBasedTable<?, ?, ?> table) { in deserialize()
41 TreeBasedTable<Object, Object, Object> table = in instantiate() local
46 public static void serialize(SerializationStreamWriter writer, TreeBasedTable<?, ?, ?> table) in serialize()
/external/python/cpython2/Lib/bsddb/
Ddbtables.py117 def _columns_key(table): argument
129 def _data_key(table, col, rowid): argument
132 def _search_col_data_key(table, col): argument
135 def _search_all_data_key(table): argument
138 def _rowid_key(table, rowid): argument
141 def _search_rowid_key(table): argument
309 def CreateTable(self, table, columns): argument
357 def ListTableColumns(self, table): argument
383 def CreateOrExtendTable(self, table, columns): argument
441 def __load_column_info(self, table) : argument
[all …]
/external/mesa3d/src/glx/
Dglxhash.c159 __glxHashTablePtr table; in __glxHashCreate() local
178 __glxHashTablePtr table = (__glxHashTablePtr) t; in __glxHashDestroy() local
201 HashFind(__glxHashTablePtr table, unsigned long key, unsigned long *h) in HashFind()
233 __glxHashTablePtr table = (__glxHashTablePtr) t; in __glxHashLookup() local
249 __glxHashTablePtr table = (__glxHashTablePtr) t; in __glxHashInsert() local
275 __glxHashTablePtr table = (__glxHashTablePtr) t; in __glxHashDelete() local
295 __glxHashTablePtr table = (__glxHashTablePtr) t; in __glxHashNext() local
313 __glxHashTablePtr table = (__glxHashTablePtr) t; in __glxHashFirst() local
356 compute_dist(__glxHashTablePtr table) in compute_dist()
377 check_table(__glxHashTablePtr table, unsigned long key, unsigned long value) in check_table()
[all …]
/external/autotest/frontend/migrations/
D037_db_constraints.py8 def delete_duplicates(manager, table, first_id, second_id): argument
37 def unique_index_name(table): argument
41 def basic_index_name(table, field): argument
68 def foreign_key_name(table, field): argument
72 def create_foreign_key_constraint(manager, table, field, destination_table): argument
79 def drop_foreign_key_constraint(manager, table, field): argument
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowSQLiteDatabase.java72 public long insert(String table, String nullColumnHack, ContentValues values) { in insert()
77 public long insertOrThrow(String table, String nullColumnHack, ContentValues values) { in insertOrThrow()
84 public long replace(String table, String nullColumnHack, ContentValues values) { in replace()
89 public long insertWithOnConflict(String table, String nullColumnHack, in insertWithOnConflict()
114 public Cursor query(boolean distinct, String table, String[] columns, in query()
140 public Cursor query(String table, String[] columns, String selection, in query()
147 public Cursor query(String table, String[] columns, String selection, in query()
154 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) { in update()
172 public int delete(String table, String whereClause, String[] whereArgs) { in delete()
/external/v8/src/runtime/
Druntime-collections.cc61 Handle<OrderedHashSet> table(OrderedHashSet::cast(holder->table())); in RUNTIME_FUNCTION() local
72 Handle<OrderedHashSet> table(OrderedHashSet::cast(holder->table())); in RUNTIME_FUNCTION() local
96 Handle<OrderedHashSet> table(OrderedHashSet::cast(set->table())); in RUNTIME_FUNCTION() local
156 Handle<OrderedHashMap> table(OrderedHashMap::cast(holder->table())); in RUNTIME_FUNCTION() local
176 Handle<OrderedHashMap> table(OrderedHashMap::cast(holder->table())); in RUNTIME_FUNCTION() local
192 Handle<OrderedHashMap> table(OrderedHashMap::cast(map->table())); in RUNTIME_FUNCTION() local
265 Handle<ObjectHashTable> table( in RUNTIME_FUNCTION() local
281 Handle<ObjectHashTable> table( in RUNTIME_FUNCTION() local
296 Handle<ObjectHashTable> table( in RUNTIME_FUNCTION() local
/external/toolchain-utils/crb/
Dtable_formatter.py81 def GetTablePercents(self, table): argument
107 def TransposeTable(self, table): argument
116 def GetTableLabels(self, table): argument
124 table, argument
170 def GetGroups(self, table): argument
183 def GetSummaryTableValues(self, table): argument

12345678910>>...31