Searched defs:table (Results 251 - 275 of 807) sorted by relevance

<<11121314151617181920>>

/external/e2fsprogs/lib/ext2fs/
H A Dqcow2.c88 blk64_t *table; local
91 ret = ext2fs_get_memzero(l1_size, &table);
96 ext2fs_free_mem(&table);
100 size = read(fd, table, l1_size);
102 ext2fs_free_mem(&table);
106 img->l1_table = table;
198 /* Walk through l1 table */
218 /* Walk through l2 table and copy data blocks into raw image */
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DHtmlTooltipHelper.java11 package org.eclipse.wb.internal.core.model.property.table;
48 * @coverage core.model.property.table
62 String html = "<table cellspacing=2 cellpadding=0 border=0 margins=0 id=_wbp_tooltip_body>";
67 html += "</table>";
/external/freetype/src/sfnt/
H A Dsfdriver.c73 void* table; local
79 table = &face->header;
83 table = &face->horizontal;
87 table = face->vertical_info ? &face->vertical : 0;
91 table = face->os2.version == 0xFFFFU ? 0 : &face->os2;
95 table = &face->postscript;
99 table = &face->max_profile;
103 table = face->pclt.Version ? &face->pclt : 0;
107 table = 0;
110 return table;
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DForwardingTable.java27 * A table which forwards all its method calls to another table. Subclasses
105 public void putAll(Table<? extends R, ? extends C, ? extends V> table) { argument
106 delegate().putAll(table);
H A DImmutableTable.java45 /** Returns an empty immutable table. */
51 /** Returns an immutable table containing a single cell. */
58 * Returns an immutable copy of the provided table.
60 * <p>The {@link Table#cellSet()} iteration order of the provided table
61 * determines the iteration ordering of all views in the returned table. Note
62 * that some views of the original table and the copied table may have
72 Table<? extends R, ? extends C, ? extends V> table) {
73 if (table instanceof ImmutableTable<?, ?, ?>) {
76 = (ImmutableTable<R, C, V>) table;
71 copyOf( Table<? extends R, ? extends C, ? extends V> table) argument
213 putAll( Table<? extends R, ? extends C, ? extends V> table) argument
302 putAll( Table<? extends R, ? extends C, ? extends V> table) argument
[all...]
H A DRegularImmutableMap.java41 private final transient LinkedEntry<K, V>[] table; field in class:RegularImmutableMap
42 // 'and' with an int to get a table index
53 table = createEntryArray(tableSize);
65 @Nullable LinkedEntry<K, V> existing = table[tableIndex];
69 table[tableIndex] = linkedEntry;
82 checkArgument(tableSize > 0, "table too large: %s", size);
147 for (LinkedEntry<K, V> entry = table[index];
H A DTable.java31 * 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
62 * Returns {@code true} if the table contains a mapping with the specified
71 * Returns {@code true} if the table contain
150 putAll(Table<? extends R, ? extends C, ? extends V> table) argument
[all...]
/external/icu/icu4c/source/common/
H A Drbbidata.cpp213 void RBBIDataWrapper::printTable(const char *heading, const RBBIStateTable *table) { argument
226 if (table == NULL) {
230 for (s=0; s<table->fNumStates; s++) {
232 (table->fTableData + (table->fRowLen * s));
374 // Each state table begins with several 32 bit fields. Calculate the size
379 // Forward state table.
390 // Reverse state table. Same layout as forward table, above.
401 // Safe Forward state table
[all...]
H A Ducol_data.h56 uint32_t unsafeCP; /* hash table of unsafe code points */
57 uint32_t contrEndCP; /* hash table of final code points */
79 uint32_t table; member in struct:__anon21793
/external/icu/icu4c/source/i18n/
H A Dcollationsettings.cpp86 CollationSettings::aliasReordering(const int32_t *codes, int32_t length, const uint8_t *table) { argument
95 reorderTable = table;
102 CollationSettings::setReordering(const int32_t *codes, int32_t length, const uint8_t table[256]) { argument
112 // Allocate one memory block for the codes and the 16-aligned table.
123 uprv_memcpy(ownedTable, table, 256);
/external/javassist/src/main/javassist/bytecode/
H A DExceptionTable.java48 * @param cp constant pool table.
156 * @return an index into the <code>constant_pool</code> table,
176 * Copies the given exception table at the specified position
177 * in the table.
182 public void add(int index, ExceptionTable table, int offset) { argument
183 int len = table.size();
186 = (ExceptionTableEntry)table.entries.get(len);
193 * Adds a new entry at the specified position in the table.
208 * Appends a new entry at the end of the table.
221 * Removes the entry at the specified position in the table
[all...]
/external/libexif/libexif/canon/
H A Dmnote-canon-entry.c442 canon_search_table_value (const struct canon_entry_table_t table[], argument
447 /* Search the table for the first matching subtag and value. */
448 for (j = 0; table[j].name && ((table[j].subtag < t) ||
449 ((table[j].subtag == t) && table[j].value <= vs)); j++) {
450 if ((table[j].subtag == t) && (table[j].value == vs)) {
454 if ((table[j].subtag == t) && (table[
464 canon_search_table_bitfield(const struct canon_entry_table_t table[], unsigned int t, ExifShort vs, char *val, unsigned int maxlen) argument
[all...]
/external/libnl/lib/fib_lookup/
H A Drequest.c136 void flnl_request_set_table(struct flnl_request *req, int table) argument
138 req->lr_table = table;
/external/libvterm/src/
H A Dencoding.c183 struct StaticTableEncoding *table = (struct StaticTableEncoding *)enc; local
192 if(table->chars[c])
193 cp[(*cpi)++] = table->chars[c];
/external/mesa3d/src/mesa/main/
H A Dhash.c3 * 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) {
82 _glthread_INIT_MUTEX(table
99 _mesa_DeleteHashTable(struct _mesa_HashTable *table) argument
127 _mesa_HashLookup_unlocked(struct _mesa_HashTable *table, GLuint key) argument
156 _mesa_HashLookup(struct _mesa_HashTable *table, GLuint key) argument
176 _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data) argument
231 _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key) argument
283 _mesa_HashDeleteAll(struct _mesa_HashTable *table, void (*callback)(GLuint key, void *data, void *userData), void *userData) argument
319 _mesa_HashWalk(const struct _mesa_HashTable *table, void (*callback)(GLuint key, void *data, void *userData), void *userData) argument
350 _mesa_HashFirstEntry(struct _mesa_HashTable *table) argument
373 _mesa_HashNextEntry(const struct _mesa_HashTable *table, GLuint key) argument
418 _mesa_HashPrint(const struct _mesa_HashTable *table) argument
447 _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys) argument
487 _mesa_HashNumEntries(const struct _mesa_HashTable *table) argument
[all...]
/external/mesa3d/src/mesa/program/
H A Dsymbol_table.c30 * Link to the next symbol in the table with the same name
39 * Link to the next symbol in the table with the same scope
74 /** Linkage in list of all headers in a given symbol table. */
101 /** Hash table containing all symbols in the symbol table. */
107 /** List of all symbol headers in the table. */
134 check_symbol_table(struct _mesa_symbol_table *table) argument
139 for (scope = table->current_scope; scope != NULL; scope = scope->next) {
159 _mesa_symbol_table_pop_scope(struct _mesa_symbol_table *table) argument
161 struct scope_level *const scope = table
187 _mesa_symbol_table_push_scope(struct _mesa_symbol_table *table) argument
198 find_symbol(struct _mesa_symbol_table *table, const char *name) argument
205 _mesa_symbol_table_iterator_ctor(struct _mesa_symbol_table *table, int name_space, const char *name) argument
281 _mesa_symbol_table_symbol_scope(struct _mesa_symbol_table *table, int name_space, const char *name) argument
303 _mesa_symbol_table_find_symbol(struct _mesa_symbol_table *table, int name_space, const char *name) argument
326 _mesa_symbol_table_add_symbol(struct _mesa_symbol_table *table, int name_space, const char *name, void *declaration) argument
381 _mesa_symbol_table_add_global_symbol(struct _mesa_symbol_table *table, int name_space, const char *name, void *declaration) argument
458 struct _mesa_symbol_table *table = calloc(1, sizeof(*table)); local
472 _mesa_symbol_table_dtor(struct _mesa_symbol_table *table) argument
[all...]
/external/openfst/src/lib/
H A Dsymbol-table.cc22 #include <fst/symbol-table.h>
36 // Identifies stream data as a symbol table (and its endianity)
125 if (it == symbol_map_.end()) { // only add if not in table
138 // Log if symbol already in table with different key
244 void SymbolTable::AddTable(const SymbolTable& table) { argument
245 for (SymbolTableIterator iter(table); !iter.Done(); iter.Next())
259 LOG(WARNING) << "Negative symbol table entry when not allowed";
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_inftrees.c22 The code lengths are lens[0..codes-1]. The result starts at *table,
26 -1 is an invalid code, and +1 means that ENOUGH isn't enough. table
28 requested root table index bits, and on return it is the actual root
29 table index bits. It will differ if the request is greater than the
36 code FAR * FAR *table,
43 unsigned root; /* number of index bits for root table */
44 unsigned curr; /* number of index bits for current table */
45 unsigned drop; /* code bits to drop for sub-table */
47 unsigned used; /* code entries in table used */
53 code here; /* table entr
32 inflate_table( codetype type, unsigned short FAR *lens, unsigned codes, code FAR * FAR *table, unsigned FAR *bits, unsigned short FAR *work) argument
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/
H A Dsfdriver.c73 void* table; local
79 table = &face->header;
83 table = &face->horizontal;
87 table = face->vertical_info ? &face->vertical : 0;
91 table = face->os2.version == 0xFFFFU ? 0 : &face->os2;
95 table = &face->postscript;
99 table = &face->max_profile;
103 table = face->pclt.Version ? &face->pclt : 0;
107 table = 0;
110 return table;
[all...]
/external/pdfium/fpdfsdk/src/
H A Dfpdf_sysfontinfo.cpp45 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size) argument
48 return m_pInfo->GetFontData(m_pInfo, hFont, table, buffer, size);
120 unsigned int table, unsigned char* buffer, unsigned long buf_size)
122 return ((FPDF_SYSFONTINFO_DEFAULT*)pThis)->m_pFontInfo->GetFontData(hFont, table, buffer, buf_size);
119 DefaultGetFontData(struct _FPDF_SYSFONTINFO* pThis, void* hFont, unsigned int table, unsigned char* buffer, unsigned long buf_size) argument
/external/pixman/demos/
H A Dcomposite-test.c93 GtkWidget *table; local
122 table = gtk_table_new (G_N_ELEMENTS (operators) / 6, 6, TRUE);
158 gtk_table_attach_defaults (GTK_TABLE (table), vbox,
175 gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (swindow), table); local
176 gtk_widget_show (table);
/external/qemu/android/
H A Dhw-events.c64 const EventInfo* table; member in struct:__anon29127
82 return _codes[nn].table;
/external/qemu/distrib/libpng-1.2.46/
H A Dpngmem.c177 png_bytep table; local
198 table = farmalloc(total_size);
200 if (table == NULL)
211 if ((png_size_t)table & 0xfff0)
224 png_ptr->offset_table = table;
239 hptr = (png_byte huge *)table;
/external/qemu/distrib/zlib-1.2.8/
H A Dzutil.c212 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/qemu/hw/i386/
H A Dsmbios.c72 "cannot add table\n", type);
77 struct smbios_structure_header *table = (void *)(header + 1); local
78 if (type == table->type) {
79 fprintf(stderr, "SMBIOS type %d table already defined, "
173 struct smbios_table *table; local
187 sizeof(*table) + size);
188 table = (struct smbios_table *)(smbios_entries + smbios_entries_len);
189 table->header.type = SMBIOS_TABLE_ENTRY;
190 table->header.length = cpu_to_le16(sizeof(*table)
[all...]

Completed in 502 milliseconds

<<11121314151617181920>>