Searched refs:table (Results 151 - 175 of 1368) sorted by relevance

1234567891011>>

/external/python/cpython2/Modules/_ctypes/libffi/src/arm/
H A Dffi.c582 /* Total number of trampolines that fit in one trampoline table */
591 ffi_trampoline_table *table = NULL; local
594 while (table == NULL) {
605 /* Now drop the second half of the allocation to make room for the trampoline table */
613 /* Remap the trampoline table to directly follow the config page */
631 table = calloc (1, sizeof(ffi_trampoline_table));
632 table->free_count = FFI_TRAMPOLINE_COUNT;
633 table->config_page = config_page;
634 table->trampoline_page = trampoline_page;
637 table
665 ffi_trampoline_table *table = ffi_trampoline_tables; local
705 ffi_trampoline_table *table = closure->trampoline_table; local
[all...]
/external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/
H A Ddtor.pass.cpp29 std::ctype<char>::mask table[256]; local
30 std::locale l(std::locale::classic(), new std::ctype<char>(table));
/external/mesa3d/src/hgl/
H A DGLDispatcher.cpp61 BGLDispatcher::SetTable(struct _glapi_table* table) argument
63 _glapi_set_dispatch(table);
/external/sfntly/cpp/src/sfntly/table/
H A Dgeneric_table_builder.cc17 #include "sfntly/table/generic_table_builder.h"
27 Ptr<GenericTable> table = new GenericTable(header(), InternalReadData()); local
28 return table.Detach();
/external/elfutils/libdw/
H A Ddwarf_getmacros.c74 build_table (Dwarf_Macro_Op_Table *table, argument
80 table->table[table->opcodes[i - 1] = ct++] = op_protos[i - 1];
82 table->opcodes[i - 1] = 0xff;
91 enum { macinfo_data_size = offsetof (Dwarf_Macro_Op_Table, table[5]) };
131 Dwarf_Macro_Op_Table *table = libdw_alloc (dbg, Dwarf_Macro_Op_Table,
133 memcpy (table, macinfo_data, macinfo_data_size);
135 table->offset = macoff;
136 table
248 Dwarf_Macro_Op_Table *table = libdw_alloc (dbg, Dwarf_Macro_Op_Table, local
319 Dwarf_Macro_Op_Table *table = cache_op_table (dbg, sec_index, macoff, local
[all...]
/external/doclava/res/assets/templates/
H A Dtodo.cs6 table { property
14 table th {
21 table td {
34 <table>
38 </table>
42 <table>
57 </table>
62 <table>
77 </table>
86 <table>
[all...]
/external/mesa3d/src/mesa/main/
H A Dget_hash_generator.py81 def print_table(api, table):
84 # convert sparse (index, value) table into a dense table
86 for i, v in table:
98 for table in tables:
99 print_table(table["apis"][0], table["indices"])
102 for table in tables:
103 tname = table_name(table["apis"][0])
104 for api in table["api
[all...]
/external/v8/src/ic/
H A Dstub-cache.h46 // Clear the lookup table (@ mark compact collection).
54 SCTableReference key_reference(StubCache::Table table) { argument
56 reinterpret_cast<Address>(&first_entry(table)->key));
59 SCTableReference map_reference(StubCache::Table table) { argument
61 reinterpret_cast<Address>(&first_entry(table)->map));
64 SCTableReference value_reference(StubCache::Table table) { argument
66 reinterpret_cast<Address>(&first_entry(table)->value));
69 StubCache::Entry* first_entry(StubCache::Table table) { argument
70 switch (table) {
116 // Hash algorithm for the primary table
150 entry(Entry* table, int offset) argument
[all...]
/external/python/cpython2/Lib/bsddb/
H A Ddbtables.py15 # This provides a simple database table interface built on top of
117 def _columns_key(table):
118 return table + _columns
121 # these keys are found within table sub databases
123 _data = '._DATA_.' # this+column+this+rowid key contains table data
125 # row in the table. (no data is stored)
129 def _data_key(table, col, rowid):
130 return table + _data + col + _data + rowid
132 def _search_col_data_key(table, col):
133 return table
[all...]
/external/freetype/src/sfnt/
H A Dttload.c45 /* Looks for a TrueType table by name. */
53 /* A pointer to the table directory entry. 0 if not found. */
84 FT_TRACE4(( "found table.\n" ));
95 FT_TRACE4(( "ignoring empty table\n" ));
97 FT_TRACE4(( "could not find table\n" ));
110 /* Looks for a TrueType table by name, then seek a stream to it. */
117 /* stream :: The stream to seek when the table is found. */
120 /* length :: The length of the table if found, undefined otherwise. */
131 TT_Table table; local
135 table
198 TT_TableRec table; local
548 TT_Table table; local
811 TT_NameTable table; local
999 TT_NameTable table = &face->name_table; local
[all...]
/external/bison/src/
H A Dtables.h128 extern base_number *table;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DCRLReason.java91 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/brotli/enc/
H A Dcompress_fragment_two_pass.h35 REQUIRES: All elements in "table[0..table_size-1]" are initialized to zero.
45 int* table,
/external/clang/test/Analysis/
H A Dmalloc-sizeof.c41 int *table = malloc(sizeof sTable); local
45 return table;
50 int *table = malloc(sizeof sTable); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'int', which is incompatible with sizeof operand type 'const double [10]'}} local
51 return table;
/external/e2fsprogs/lib/et/test_cases/
H A Dimap_err.c51 const struct error_table * table; member in struct:et_list
72 if (et->table->msgs == text)
76 if (!link.table)
81 et->table = &et_imap_error_table;
H A Dsimple.c43 const struct error_table * table; member in struct:et_list
64 if (et->table->msgs == text)
68 if (!link.table)
73 et->table = &et_krb_error_table;
/external/e2fsprogs/lib/support/
H A Dprof_err.c52 const struct error_table * table; member in struct:et_list
73 if (et->table->msgs == text)
77 if (!link.table)
82 et->table = &et_prof_error_table;
/external/elfutils/backends/
H A Darm_attrs.c41 static const char *table[] = { __VA_ARGS__ }; \
42 if (value < sizeof table / sizeof table[0]) \
43 *value_name = table[value]; \
/external/freetype/src/base/
H A Dftgxval.c76 FT_Bytes table )
86 FT_FREE( table );
127 FT_Bytes table )
138 FT_FREE( table );
/external/guava/guava-gwt/src/com/google/common/collect/
H A DImmutableTable_CustomFieldSerializerBase.java44 SerializationStreamWriter writer, ImmutableTable<Object, Object, Object> table)
46 writer.writeInt(table.rowKeySet().size());
47 for (Object rowKey : table.rowKeySet()) {
49 Map_CustomFieldSerializerBase.serialize(writer, table.row(rowKey));
43 serialize( SerializationStreamWriter writer, ImmutableTable<Object, Object, Object> table) argument
/external/guava/guava-tests/benchmark/com/google/common/cache/
H A DSegmentBenchmark.java48 checkState(segment.table.length() == capacity);
52 checkState(segment.table.length() == capacity);
57 AtomicReferenceArray<ReferenceEntry<Object, Object>> oldTable = segment.table;
60 segment.table = oldTable;
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
H A DITableItem.java12 package org.jacoco.report.internal.html.table;
18 * Interface for a item (row) in a coverage data table.
/external/kernel-headers/original/uapi/linux/
H A Dmap_to_7segment.h75 unsigned char table[128]; member in struct:seg7_conversion_map
80 return c >= 0 && c < sizeof(map->table) ? map->table[c] : -EINVAL;
84 struct seg7_conversion_map _name = { .table = { _map } }
94 * ASCII conversion table
/external/llvm/test/MC/COFF/
H A Dcv-empty-file-table.s6 .cv_filechecksums # File index to string table offset subsection
7 .cv_stringtable # String table
/external/pdfium/third_party/freetype/src/base/
H A Dftgxval.c76 FT_Bytes table )
86 FT_FREE( table );
127 FT_Bytes table )
138 FT_FREE( table );

Completed in 790 milliseconds

1234567891011>>