| /external/openssl/apps/ |
| passwd.c | 43 char *passwd, BIO *out, int quiet, int table, int reverse, 54 * -table - format output as table 55 * -reverse - switch table columns 72 int passed_salt = 0, quiet = 0, table = 0, reverse = 0; local 139 else if (strcmp(argv[i], "-table") == 0) 140 table = 1; 185 BIO_printf(bio_err, "-table format output as table\n"); 186 BIO_printf(bio_err, "-reverse switch table columns\n") [all...] |
| /external/qemu/distrib/sdl-1.2.12/src/video/ |
| SDL_blit.h | 41 Uint8 *table; member in struct:__anon9465 58 Uint8 *table; member in struct:SDL_BlitMap
|
| /external/qemu-pc-bios/vgabios/tests/ |
| testbios.c | 133 {unsigned char table[64];
local 141 ptable=&table;
149 printf("%02x ",table[i]);
|
| /external/quake/quake/src/QW/client/ |
| gl_vidandroid.c | 66 unsigned *table; local 78 table = d_8to24table; 89 *table++ = v;
|
| /external/skia/src/effects/ |
| SkColorMatrixFilter.cpp | 235 const SkUnPreMultiply::Scale* table = SkUnPreMultiply::GetScaleTable(); local 247 SkUnPreMultiply::Scale scale = table[a];
|
| /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...] |
| /external/srec/tools/thirdparty/OpenFst/fst/lib/ |
| encode.h | 32 // Identifies stream data as an encode table (and its endianity) 154 LOG(ERROR) << "EncodeTable::Read: Bad encode table header: " << source; 192 // The Encode mapper stores the encoding in a local hash table (EncodeTable) 193 // This table is shared (and reference counted) between the encoder and 197 // EncodeTable is generated the same table may by used to decode the machine 202 // we will use the encoding table generated during the encode step in the 292 EncodeTable<A> *table = new EncodeTable<A>(0); local 293 bool r = table->Read(strm, source); 294 return r ? new EncodeMapper(table->flags(), type, table) : 0 [all...] |
| /external/stlport/src/ |
| time_facets.cpp | 65 // _Init_time_info: initialize table with 69 static void _Init_timeinfo_base(_Time_Info_Base& table) { 70 table._M_time_format = "%H:%M:%S"; 71 table._M_date_format = "%m/%d/%y"; 72 table._M_date_time_format = "%m/%d/%y"; 75 static void _Init_timeinfo(_Time_Info& table) { 78 table._M_dayname[i] = default_dayname[i]; 80 table._M_monthname[i] = default_monthname[i]; 81 table._M_am_pm[0] = "AM"; 82 table._M_am_pm[1] = "PM" 149 const string& format, const _TimeInfo& table, const tm* t) { variable 216 const _TimeInfo& table, const tm* t) { variable [all...] |
| /external/v8/src/ |
| compilation-cache.cc | 45 // Initial size of each compilation cache table allocated. 85 CompilationCacheTable* table = local 87 result = Handle<CompilationCacheTable>(table, isolate()); 128 Handle<CompilationCacheTable> table = GetTable(generation); local 129 table->Remove(*function_info); 182 Handle<CompilationCacheTable> table = GetTable(generation); local 183 Handle<Object> probe(table->Lookup(*source), isolate()); 233 Handle<CompilationCacheTable> table = GetFirstTable(); local 234 return table->Put(*source, *function_info); 258 // Make sure not to leak the table into the surrounding handl 265 Handle<CompilationCacheTable> table = GetTable(generation); local 291 Handle<CompilationCacheTable> table = GetFirstTable(); local 323 Handle<CompilationCacheTable> table = GetTable(generation); local 348 Handle<CompilationCacheTable> table = GetFirstTable(); local [all...] |
| /external/webkit/Source/JavaScriptCore/runtime/ |
| Lookup.h | 40 // Hash table generated by the create_hash_table script. 129 mutable const HashEntry* table; // Table allocated at runtime. member in struct:JSC::HashTable 133 if (!table) 139 if (!table) 145 // Find an entry in the table, and return the entry. 161 ASSERT(table); 163 const HashEntry* entry = &table[identifier.impl()->existingHash() & compactHashSizeMask]; 177 // Convert the hash table keys to identifiers. 190 inline bool getStaticPropertySlot(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertySlot& slot [all...] |
| /external/webkit/Source/WebCore/accessibility/ |
| AccessibilityTable.cpp | 95 // Do not consider it a data table is it has an ARIA role. 99 // This employs a heuristic to determine if this table should appear. 102 // between a "layout" table and a "data" table. 104 RenderTable* table = toRenderTable(m_renderer); 105 Node* tableNode = table->node(); 109 // if there is a caption element, summary, THEAD, or TFOOT section, it's most certainly a data table 114 // if someone used "rules" attribute than the table should appear 118 // go through the cell's and check for tell-tale signs of "data" table status 120 RenderTableSection* firstBody = table->firstBody() 457 RenderTable* table = toRenderTable(m_renderer); local [all...] |
| /external/webkit/Source/WebCore/platform/graphics/filters/ |
| FEComponentTransfer.cpp | 101 static void table(unsigned char* values, const ComponentTransferFunction& transferFunction) function in namespace:WebCore 170 TransferType callEffect[] = {identity, identity, table, discrete, linear, gamma}; 201 ts << "TABLE";
|
| /external/webkit/Source/WebCore/platform/graphics/skia/ |
| SkiaUtils.cpp | 69 const CompositOpToSkiaMode* table = gMapCompositOpsToSkiaModes; local 72 if (table[i].mCompositOp == op) 73 return (SkXfermode::Mode)table[i].mMode; 104 const CompositOpToXfermodeMode* table = gMapCompositOpsToXfermodeModes; local 107 if (table[i].mCompositOp == op) 108 return (SkXfermode::Mode)table[i].m_xfermodeMode;
|
| /external/webkit/Source/WebCore/platform/gtk/ |
| PasteboardHelper.cpp | 295 GtkTargetEntry* table = gtk_target_table_new_from_list(list, &numberOfTargets); local 297 if (numberOfTargets > 0 && table) { 300 gtk_clipboard_set_with_data(clipboard, table, numberOfTargets, 309 if (table) 310 gtk_target_table_free(table, numberOfTargets);
|
| /external/webkit/Source/WebCore/rendering/ |
| RenderTableSection.h | 54 RenderTable* table() const { return toRenderTable(parent()); } function in class:WebCore::RenderTableSection
|
| /external/webkit/Source/WebKit/gtk/webkit/ |
| webkitsoupauthdialog.c | 159 table_add_entry(GtkWidget* table, 177 gtk_table_attach(GTK_TABLE(table), label, 180 gtk_table_attach_defaults(GTK_TABLE(table), entry, 206 GtkWidget* table; local 272 /* The table that holds the entries */ 285 table = gtk_table_new(hasRealm ? 3 : 2, 2, FALSE); 286 gtk_table_set_col_spacings(GTK_TABLE(table), 12); 287 gtk_table_set_row_spacings(GTK_TABLE(table), 6); 288 gtk_container_add(GTK_CONTAINER(entryContainer), table); local 298 gtk_table_attach_defaults(GTK_TABLE(table), serverMessageDescriptionLabel [all...] |
| webkitwebhistoryitem.cpp | 91 GHashTable* table = webkit_history_items(); local 92 g_hash_table_insert(table, historyItem, webHistoryItem); 517 GHashTable* table = webkit_history_items(); local 518 WebKitWebHistoryItem* webHistoryItem = (WebKitWebHistoryItem*) g_hash_table_lookup(table, item.get());
|
| /external/wpa_supplicant/ |
| 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 209 struct eloop_sock_table *table; local 219 struct eloop_sock_table *table; local [all...] |
| /frameworks/compile/libbcc/include/bcc/ |
| bcc_cache.h | 45 /* dependancy table */ 49 /* relocation table section */ 65 /* function table */ 69 /* function table */ 105 struct OBCC_Dependency table[]; member in struct:OBCC_DependencyTable 109 /* TODO: Implement relocation table. */ 145 struct OBCC_FuncInfo table[]; member in struct:OBCC_FuncTable
|
| /frameworks/compile/libbcc/lib/ExecutionEngine/OldJIT/ |
| CacheReader.cpp | 312 OBCC_Dependency *depCached =&mpCachedDependTable->table[i]; 392 ScriptCached::FuncTable &table = mpResult->mFunctions; local 394 OBCC_FuncInfo *func = &func_table_raw->table[i]; 395 table.insert(make_pair(strPool[func->name_strp_index],
|
| /hardware/ti/omap4xxx/camera/inc/ |
| Encoder_libjpeg.h | 80 ExifElement_t table[MAX_EXIF_TAGS_SUPPORTED]; member in class:android::ExifElementsTable
|
| /libcore/luni/src/main/java/java/lang/ |
| ThreadLocal.java | 56 Object[] table = values.table; local 58 if (this.reference == table[index]) { 59 return (T) table[index + 1]; 134 * (hash & (table.length - 1)) points to a key and not a value. 160 private Object[] table; field in class:ThreadLocal.Values 190 this.table = fromParent.table.clone(); 205 Object[] table = this.table; local 268 Object[] table = this.table; local 425 Object[] table = this.table; local [all...] |
| /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
| Security2Test.java | 57 // to the allSupported table then increment the count of the 126 * @param table 129 private void addOrIncrementTable(Hashtable<String, Integer> table, String key) { 130 if (table.containsKey(key)) { 131 Integer before = (Integer) table.get(key); 132 table.put(key, new Integer(before.intValue() + 1)); 134 table.put(key, new Integer(1));
|
| /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
| mySSLSession.java | 26 private Hashtable table; field in class:mySSLSession 37 table = new Hashtable(); 128 Object obj1 = table.put(s, obj); 142 Object obj = table.remove(s); 153 return table.get(s); 159 Enumeration enumeration = table.keys();
|
| /ndk/sources/cxx-stl/stlport/src/ |
| time_facets.cpp | 65 // _Init_time_info: initialize table with 69 static void _Init_timeinfo_base(_Time_Info_Base& table) { 70 table._M_time_format = "%H:%M:%S"; 71 table._M_date_format = "%m/%d/%y"; 72 table._M_date_time_format = "%m/%d/%y"; 75 static void _Init_timeinfo(_Time_Info& table) { 78 table._M_dayname[i] = default_dayname[i]; 80 table._M_monthname[i] = default_monthname[i]; 81 table._M_am_pm[0] = "AM"; 82 table._M_am_pm[1] = "PM" 149 const string& format, const _TimeInfo& table, const tm* t) { variable 216 const _TimeInfo& table, const tm* t) { variable [all...] |