HomeSort by relevance Sort by last modified time
    Searched defs:Table (Results 26 - 50 of 96) sorted by null

12 3 4

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_pointers.py 76 # The int pointer points to a table containing the numbers 1..10
113 class Table(Structure):
118 pt = pointer(Table(1, 2, 3))
127 del _pointer_type_cache[Table]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
hash.c 3 * Generic hash table.
44 #define TABLE_SIZE 1023 /**< Size of lookup table/array */
50 * An entry in the hash table.
60 * The hash table data structure.
63 struct HashEntry *Table[TABLE_SIZE]; /**< the lookup table */
73 * Create a new hash table.
75 * \return pointer to a new, empty hash table.
80 struct _mesa_HashTable *table = CALLOC_STRUCT(_mesa_HashTable); local
81 if (table) {
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
otConverters.py 9 """Given a table spec from otData.py, build a converter object for each
10 field of the table. This is called for each table in otData.py, and
41 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
46 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
181 table = self.tableClass()
182 table.decompile(reader, font)
183 return table
197 pass # NULL table, ignore
202 table = self.tableClass(
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Table.java 31 * column key, with a single value. A table may be sparse, with only a small
41 * underlying table. Updating the table can change the contents of those
42 * collections, and updating the collections will change the table.
44 * <p>All methods that modify the table are optional, and the views returned by
45 * the table may or may not be modifiable. When modification isn't supported,
49 * @param <R> the type of the table row keys
50 * @param <C> the type of the table column keys
56 public interface Table<R, C, V> {
62 * Returns {@code true} if the table contains a mapping with the specifie
    [all...]
  /external/mesa3d/src/mesa/main/
hash.c 3 * Generic hash table.
44 #define TABLE_SIZE 1023 /**< Size of lookup table/array */
50 * An entry in the hash table.
60 * The hash table data structure.
63 struct HashEntry *Table[TABLE_SIZE]; /**< the lookup table */
73 * Create a new hash table.
75 * \return pointer to a new, empty hash table.
80 struct _mesa_HashTable *table = CALLOC_STRUCT(_mesa_HashTable); local
81 if (table) {
    [all...]
  /art/runtime/
oat_file.h 347 typedef AllocationTrackingSafeMap<StringPiece, const OatDexFile*, kAllocatorTagOatFile> Table;
353 Table oat_dex_files_;
362 mutable Table secondary_oat_dex_files_ GUARDED_BY(secondary_lookup_lock_);
class_linker.h 389 // Attempts to insert a class into a class table. Returns NULL if
662 // in the table to make it resolved. The thread doing resolution must notify on the class' lock
664 // retire a class, the version of the class in the table is returned and this may differ from
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/table/
table.cc 5 #include "leveldb/table.h"
12 #include "table/block.h"
13 #include "table/filter_block.h"
14 #include "table/format.h"
15 #include "table/two_level_iterator.h"
20 struct Table::Rep {
38 Status Table::Open(const Options& options,
41 Table** table) {
42 *table = NULL
157 Table* table = reinterpret_cast<Table*>(arg); local
    [all...]
  /external/llvm/lib/MC/
MCContext.cpp 330 MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID];
331 return Table.getFile(Directory, FileName, FileNumber);
MCAsmStreamer.cpp 833 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID);
834 unsigned NumFiles = Table.getMCDwarfFiles().size();
835 FileNo = Table.getFile(Directory, Filename, FileNo);
838 if (NumFiles == Table.getMCDwarfFiles().size())
904 // Always use the zeroth line table, since asm syntax only supports one line
905 // table for now.
    [all...]
MCStreamer.cpp 192 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID);
193 if (!Table.getLabel()) {
195 Table.setLabel(
198 return Table.getLabel();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdxmldom.h 21 BYTE *Table;
  /hardware/ti/omap4-aah/camera/inc/
BaseCameraAdapter.h 34 const LUT *Table;
General3A_Settings.h 42 const userToOMX_LUT *Table;
  /hardware/ti/omap4xxx/camera/inc/
General3A_Settings.h 46 const userToOMX_LUT *Table;
  /external/chromium_org/v8/src/
stub-cache.h 23 // The design of the table uses the inline cache stubs used for
117 // Clear the lookup table (@ mark compact collection).
127 // Generate code for probing the stub cache table.
139 enum Table {
145 SCTableReference key_reference(StubCache::Table table) {
147 reinterpret_cast<Address>(&first_entry(table)->key));
151 SCTableReference map_reference(StubCache::Table table) {
153 reinterpret_cast<Address>(&first_entry(table)->map))
    [all...]
  /external/clang/lib/Basic/
IdentifierTable.cpp 1 //===--- IdentifierTable.cpp - Hash table for identifier lookup -----------===//
80 // Populate the identifier table with info about keywords for the current
125 const LangOptions &LangOpts, IdentifierTable &Table) {
153 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode);
162 IdentifierTable &Table) {
163 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
171 IdentifierTable &Table) {
172 Table.get(Name).setObjCKeywordID(ObjCID);
175 /// AddKeywords - Add all keywords to the symbol table.
257 /// PrintStats - Print statistics about how well the identifier table is doin
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 69 /// table.
303 IdentifierIndexTable &Table
305 IdentifierIndexTable::iterator Known = Table.find(Name);
306 if (Known == Table.end()) {
617 // Handle the identifier table
621 std::unique_ptr<InterestingIdentifierTable> Table(
626 for (InterestingIdentifierTable::data_iterator D = Table->data_begin(),
627 DEnd = Table->data_end();
646 /// table.
730 // Populate the hash table
    [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 70 DecoderTable Table;
98 // Emit the decoder state machine table.
99 void emitTable(formatted_raw_ostream &o, DecoderTable &Table,
268 // Emit table entries to decode instructions given a segment or segments of
314 // Lookup table for the operand decoding of instructions.
448 // Emits table entries to decode the singleton.
608 static void resolveTableFixups(DecoderTable &Table, const FixupList &Fixups,
621 // Our NumToSkip entries are 16-bits. Make sure our table isn't too
623 assert(Delta < 65536U && "disassembler decoding table too large!");
624 Table[FixupIdx] = (uint8_t)Delta
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.h 151 typedef Vector<WebCore::ImageFrame::PixelData> Table;
160 // Set position and number of colors for the RGB table in the data stream.
169 // Build RGBA table using the data stream.
171 const Table& table() const { return m_table; } function in class:GIFColorMap
177 Table m_table;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
glxapi.c 49 struct _glxapi_table *Table;
103 prevTable = d->Table;
104 return d->Table; /* done! */
121 d->Table = t;
144 #define GET_DISPATCH(DPY, TABLE) \
146 TABLE = prevTable; \
149 TABLE = NULL; \
152 TABLE = get_dispatch(DPY); \
1191 * Return size of the GLX dispatch table, in entries, not bytes.
1208 * Initialize all functions in given dispatch table to be no-op
    [all...]
  /external/chromium_org/third_party/ots/src/
woff2.cc 130 struct Table {
141 Table()
498 // Build TrueType loca table
522 // Reconstruct entire glyf table based on transformed original
697 const Table* FindTable(const std::vector<Table>& tables, uint32_t tag) {
707 bool ReconstructTransformed(const std::vector<Table>& tables, uint32_t tag,
711 const Table* glyf_table = FindTable(tables, tag);
712 const Table* loca_table = FindTable(tables, TAG('l', 'o', 'c', 'a'));
728 // processing was already done by glyf table, but validat
763 const Table* table = &tables.at(i); local
803 Table* table = &tables->at(i); local
917 Table* table = &tables.at(i); local
964 const Table* table = &tables.at(i); local
974 const Table* table = &tables.at(i); local
    [all...]
  /external/clang/test/SemaCXX/
cxx98-compat.cpp 293 void *Table[] = {&&DirectJump, &&Later};
294 goto *Table[n]; // expected-warning {{indirect goto might cross protected scopes in C++98}}
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 46 cl::desc("Control jump table emission on Hexagon target"));
749 SDValue Table = Op.getOperand(1);
752 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
758 // Mark all jump table targets as address taken.
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.c 49 struct _glxapi_table *Table;
103 prevTable = d->Table;
104 return d->Table; /* done! */
121 d->Table = t;
144 #define GET_DISPATCH(DPY, TABLE) \
146 TABLE = prevTable; \
149 TABLE = NULL; \
152 TABLE = get_dispatch(DPY); \
1191 * Return size of the GLX dispatch table, in entries, not bytes.
1208 * Initialize all functions in given dispatch table to be no-op
    [all...]

Completed in 2135 milliseconds

12 3 4