HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 1 - 25 of 675) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
log2_tab.h 23 * Purpose : Table for routine Log2().
28 static const Word16 table[33] = variable
isp_isf.tab 22 /* table of cos(x) in Q15 */
24 const static Word16 table[129] = {
  /dalvik/vm/alloc/
HeapTable.c 53 LargeHeapRefTable *table; local
58 /* Make sure that a table with a free slot is
62 table = *tableP;
68 while (table != NULL && heapRefTableIsFull(&table->refs)) {
69 prevTable = table;
70 table = table->next;
72 if (table != NULL) {
74 /* Move the table to the head of the list
122 LargeHeapRefTable *table; local
155 LargeHeapRefTable *table; local
    [all...]
  /external/speex/libspeex/
fftwrap.h 44 void spx_fft_destroy(void *table);
47 void spx_fft(void *table, spx_word16_t *in, spx_word16_t *out);
50 void spx_ifft(void *table, spx_word16_t *in, spx_word16_t *out);
53 void spx_fft_float(void *table, float *in, float *out);
56 void spx_ifft_float(void *table, float *in, float *out);
fftwrap.c 86 struct drft_lookup *table; local
87 table = speex_alloc(sizeof(struct drft_lookup));
88 spx_drft_init((struct drft_lookup *)table, size);
89 return (void*)table;
92 void spx_fft_destroy(void *table)
94 spx_drft_clear(table);
95 speex_free(table);
98 void spx_fft(void *table, float *in, float *out)
103 float scale = 1./((struct drft_lookup *)table)->n;
105 for (i=0;i<((struct drft_lookup *)table)->n;i++
139 struct mkl_config *table = (struct mkl_config *) speex_alloc(sizeof(struct mkl_config)); local
182 struct fftw_config *table = (struct fftw_config *) speex_alloc(sizeof(struct fftw_config)); local
255 struct kiss_config *table; local
    [all...]
  /external/skia/src/core/
SkFilterProc.h 28 inline SkFilterProc SkGetBilinearFilterProc(const SkFilterProc* table,
31 SkASSERT(table);
36 return table[(y << 2) | x];
39 inline SkFilterProc SkGetBilinearFilterProc22(const SkFilterProc* table,
42 SkASSERT(table);
47 return table[(y << 2) | x];
50 inline const SkFilterProc* SkGetBilinearFilterProc22Row(const SkFilterProc* table,
53 SkASSERT(table);
55 return &table[y << 30 >> 28];
73 inline SkFilter32Proc SkGetFilter32Proc22(const SkFilter32Proc* table,
    [all...]
  /external/icu4c/layout/
NonContextualGlyphSubst.h 25 LookupTable table; member in struct:NonContextualGlyphSubstitutionHeader
  /frameworks/base/media/libstagefright/codecs/amrnb/common/src/
lsp_lsf_tbl.cpp 37 Description: Added #ifdef __cplusplus and removed "extern" from table
80 extern const Word16 table[65] = variable
  /libcore/sqlite-jdbc/src/main/java/SQLite/
BusyHandler.java 10 * Invoked when a table is locked by another process
12 * until the table becomes unlocked, or false in order
15 * @param table the name of the locked table
16 * @param count number of times the table was locked
19 public boolean busy(String table, int count);
  /external/bison/lib/
hash.c 1 /* hash - hashing table processing.
22 /* A generic hash table package. */
56 are not empty, there are N_ENTRIES active entries in the table. */
86 /* A hash table contains many internal entries, each holding a pointer to
91 and the current table size. At each slot position in the hash table,
97 entries divided by the table size. Finding the slot for a data is usually
100 larger hash table size (that is, a larger number of buckets) is prone to
103 Long buckets slow down the lookup algorithm. One might use big hash table
105 become inordinate, as unused slots in the hash table take some space. Th
544 Hash_table *table; local
    [all...]
  /external/skia/include/effects/
SkTableMaskFilter.h 25 Applies a table lookup on each of the alpha values in the mask.
31 SkTableMaskFilter(const uint8_t table[256]);
34 void setTable(const uint8_t table[256]);
36 /** Utility that sets the gamma table
38 static void MakeGammaTable(uint8_t table[256], SkScalar gamma);
40 /** Utility that creates a clipping table: clamps values below min to 0
43 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
46 uint8_t table[256]; local
47 MakeGammaTable(table, gamma);
48 return SkNEW_ARGS(SkTableMaskFilter, (table));
52 uint8_t table[256]; local
    [all...]
  /external/freetype/src/base/
ftdbgmem.c 226 ft_mem_table_alloc( FT_MemTable table,
229 FT_Memory memory = table->memory;
233 memory->user = table->memory_user;
234 block = table->alloc( memory, size );
235 memory->user = table;
242 ft_mem_table_free( FT_MemTable table,
245 FT_Memory memory = table->memory;
248 memory->user = table->memory_user;
249 table->free( memory, block );
250 memory->user = table;
307 FT_MemTable table; local
683 FT_MemTable table = (FT_MemTable)memory->user; local
719 FT_MemTable table = (FT_MemTable)memory->user; local
745 FT_MemTable table = (FT_MemTable)memory->user; local
826 FT_MemTable table; local
889 FT_MemTable table = (FT_MemTable)memory->user; local
925 FT_MemTable table = (FT_MemTable)memory->user; local
    [all...]
  /external/chromium/third_party/icu/source/test/letest/
FontTableCache.cpp 19 const void *table; member in struct:FontTableCacheEntry
34 fTableCache[i].table = NULL;
41 DELETE_ARRAY(fTableCache[i].table);
44 fTableCache[i].table = NULL;
52 void FontTableCache::freeFontTable(const void *table) const
54 DELETE_ARRAY(table);
61 return fTableCache[i].table;
65 const void *table = readFontTable(tableTag); local
67 ((FontTableCache *) this)->add(tableTag, table);
69 return table;
    [all...]
  /external/icu4c/samples/layout/
FontTableCache.cpp 18 const void *table; member in struct:FontTableCacheEntry
33 fTableCache[i].table = NULL;
40 freeFontTable(fTableCache[i].table);
43 fTableCache[i].table = NULL;
52 void FontTableCache::freeFontTable(const void *table) const
54 LE_DELETE_ARRAY(table);
61 return fTableCache[i].table;
65 const void *table = readFontTable(tableTag); local
67 ((FontTableCache *) this)->add(tableTag, table);
69 return table;
    [all...]
  /external/icu4c/test/letest/
FontTableCache.cpp 19 const void *table; member in struct:FontTableCacheEntry
34 fTableCache[i].table = NULL;
41 DELETE_ARRAY(fTableCache[i].table);
44 fTableCache[i].table = NULL;
52 void FontTableCache::freeFontTable(const void *table) const
54 DELETE_ARRAY(table);
61 return fTableCache[i].table;
65 const void *table = readFontTable(tableTag); local
67 ((FontTableCache *) this)->add(tableTag, table);
69 return table;
    [all...]
  /external/dbus/dbus/
dbus-hash.h 2 /* dbus-hash.h Generic hash table utility (internal to D-Bus implementation)
70 DBusHashTable* _dbus_hash_table_ref (DBusHashTable *table);
71 void _dbus_hash_table_unref (DBusHashTable *table);
72 void _dbus_hash_table_remove_all (DBusHashTable *table);
73 void _dbus_hash_iter_init (DBusHashTable *table,
84 dbus_bool_t _dbus_hash_iter_lookup (DBusHashTable *table,
88 void* _dbus_hash_table_lookup_string (DBusHashTable *table,
90 void* _dbus_hash_table_lookup_two_strings (DBusHashTable *table,
92 void* _dbus_hash_table_lookup_int (DBusHashTable *table,
94 void* _dbus_hash_table_lookup_pointer (DBusHashTable *table,
    [all...]
dbus-hash.c 2 /* dbus-hash.c Generic hash table utility (internal to D-Bus implementation)
8 * Hash table implementation based on generic/tclHash.c from the Tcl
82 * @defgroup DBusHashTable Hash table
90 * @defgroup DBusHashTableInternals Hash table implementation details
101 * the hash table to make it larger.
121 #define RANDOM_INDEX(table, i) \
122 (((((long) (i))*1103515245) >> (table)->down_shift) & (table)->mask)
125 * Initial number of buckets in hash table (hash table staticall
213 DBusHashTable *table; \/**< Pointer to table containing entry. *\/ member in struct:__anon3197
296 DBusHashTable *table; local
    [all...]
  /external/libxml2/
hash.c 35 * A single entry in the hash table
49 * The entire hash table
52 struct _xmlHashEntry *table; member in struct:_xmlHashTable
63 xmlHashComputeKey(xmlHashTablePtr table, const xmlChar *name,
84 return (value % table->size);
88 xmlHashComputeQKey(xmlHashTablePtr table,
133 return (value % table->size);
138 * @size: the size of the hash table
146 xmlHashTablePtr table; local
151 table = xmlMalloc(sizeof(xmlHashTable))
177 xmlHashTablePtr table; local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
TableMaskFilter.java 24 public TableMaskFilter(byte[] table) {
25 if (table.length < 256) {
26 throw new RuntimeException("table.length must be >= 256");
28 native_instance = nativeNewTable(table);
43 private static native int nativeNewTable(byte[] table);
  /external/chromium/base/
stats_table_unittest.cc 31 // locations in the table.
37 StatsTable table(kTableName, kMaxThreads, kMaxCounter);
41 int slot_id = table.RegisterThread(thread_name);
44 // Fill up the table with counters.
49 int counter_id = table.FindCounter(counter_name);
54 slot_id = table.RegisterThread("too many threads");
58 int counter_id = table.FindCounter(counter_base_name);
115 // Create a stats table.
120 StatsTable table(kTableName, kMaxThreads, kMaxCounter);
121 StatsTable::set_current(&table);
    [all...]
  /external/srec/portable/src/
phashtable.c 40 PHashTable *table; member in struct:PHashTableEntry_t
76 PHashTable **table)
81 if (table == NULL ||
125 *table = tmp;
129 ESR_ReturnCode PHashTableDestroy(PHashTable *table)
133 if (table == NULL)
136 block = table->entryBlock;
144 FREE(table->entries);
145 FREE(table);
149 ESR_ReturnCode PHashTableGetSize(PHashTable *table,
    [all...]
  /libcore/luni/src/main/java/java/lang/
ThreadLocal.java 62 Object[] table = values.table; local
64 if (this.reference == table[index]) {
65 return (T) table[index + 1];
140 * (hash & (table.length - 1)) points to a key and not a value.
166 private Object[] table; field in class:ThreadLocal.Values
196 this.table = fromParent.table.clone();
211 Object[] table = this.table; local
274 Object[] table = this.table; local
431 Object[] table = this.table; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
eloop.c 45 struct eloop_sock *table; member in struct:eloop_sock_table
80 static int eloop_sock_table_add_sock(struct eloop_sock_table *table,
86 if (table == NULL)
90 os_realloc(table->table,
91 (table->count + 1) * sizeof(struct eloop_sock));
95 tmp[table->count].sock = sock;
96 tmp[table->count].eloop_data = eloop_data;
97 tmp[table->count].user_data = user_data;
98 tmp[table->count].handler = handler
219 struct eloop_sock_table *table; local
229 struct eloop_sock_table *table; local
    [all...]
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 3 # "plane" and create combined symbol table
9 # This script creates a symbol table which must be used when
87 and converts into one symbol table with ids in range [0..2^16-1] which
127 foreach $table (@alltables) {
128 $table{$plane{$table}} = $table;
184 foreach $table (@alltables) {
185 #printf STDERR "doing table $table (plane %d)\n", $plane{$table}
    [all...]
  /external/webkit/WebCore/rendering/
RenderTableCol.cpp 68 // with libraries.uc.edu, which makes a <p> be a table-column.
74 // For now, just repaint the whole table.
79 RenderTable* parentTable = table();
99 RenderTable* RenderTableCol::table() const function in class:WebCore::RenderTableCol
101 RenderObject* table = parent(); local
102 if (table && !table->isTable())
103 table = table->parent();
104 return table && table->isTable() ? toRenderTable(table) : 0
    [all...]

Completed in 961 milliseconds

1 2 3 4 5 6 7 8 91011>>