HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 151 - 175 of 1283) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/freetype/src/sfnt/
ttbdf.c 51 if ( bdf->table != NULL )
52 FT_FRAME_RELEASE( bdf->table );
75 FT_FRAME_EXTRACT( length, bdf->table ) )
81 bdf->table_end = bdf->table + length;
84 FT_Byte* p = bdf->table;
101 bdf->strings = bdf->table + strings;
105 p = bdf->table + 8;
132 FT_FRAME_RELEASE( bdf->table );
163 p = bdf->table + 8;
  /external/skia/src/opts/
SkBitmapProcState_opts_arm.cpp 28 const uint16_t* SK_RESTRICT table = s.fBitmap->getColorTable()->lock16BitCache(); local
41 uint16_t dstValue = table[src];
74 "ldrh r4, [%[table], r4] \n\t" // load pixel 0 RGB565 from colmap
76 "ldrh r5, [%[table], r5] \n\t" // load pixel 1 RGB565 from colmap
78 "ldrh r6, [%[table], r6] \n\t" // load pixel 2 RGB565 from colmap
80 "ldrh r7, [%[table], r7] \n\t" // load pixel 3 RGB565 from colmap
82 "ldrh r8, [%[table], r8] \n\t" // load pixel 4 RGB565 from colmap
83 "ldrh r9, [%[table], r9] \n\t" // load pixel 5 RGB565 from colmap
84 "ldrh r10, [%[table], r10] \n\t" // load pixel 6 RGB565 from colmap
85 "ldrh r11, [%[table], r11] \n\t" // load pixel 7 RGB565 from colma
119 const SkPMColor* SK_RESTRICT table = s.fBitmap->getColorTable()->lockColors(); local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLTableRowElement.cpp 59 ContainerNode* table = parentNode(); local
60 if (!table)
62 table = table->parentNode();
63 if (!table || !table->hasTagName(tableTag))
73 if (HTMLTableSectionElement* head = static_cast<HTMLTableElement*>(table)->tHead()) {
82 for (Node *node = table->firstChild(); node; node = node->nextSibling()) {
94 if (HTMLTableSectionElement* foot = static_cast<HTMLTableElement*>(table)->tFoot()) {
  /external/zlib/contrib/infback9/
inftree9.c 22 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
32 int inflate_table9(type, lens, codes, table, bits, work)
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 *
    [all...]
  /dalvik/vm/
ReferenceTable.cpp 18 * Reference table management.
31 pRef->table = (Object**) malloc(initialCount * sizeof(Object*));
32 if (pRef->table == NULL)
35 memset(pRef->table, 0xdd, initialCount * sizeof(Object*));
37 pRef->nextEntry = pRef->table;
49 free(pRef->table);
50 pRef->table = pRef->nextEntry = NULL;
61 assert(pRef->table != NULL);
64 if (pRef->nextEntry == pRef->table + pRef->allocEntries) {
66 if (pRef->nextEntry == pRef->table + pRef->maxEntries)
    [all...]
ReferenceTable.h 18 * Maintain a table of references. Used for internal local references,
21 * None of the table functions are synchronized.
27 * Table definition.
32 * If "allocEntries" is not equal to "maxEntries", the table may expand when
34 * pointers into "table" rather than offsets, use a fixed-size table.
37 * table/nextEntry is allowed.)
41 Object** table; /* bottom of the list */ member in struct:ReferenceTable
50 * If "initialCount" != "maxCount", the table will expand as required.
52 * Returns "false" if table allocation fails
    [all...]
  /external/icu4c/common/
ucnvmbcs.h 56 * (This only works with a utf8Friendly table.)
64 * slightly and optionally adds a table for conversion to MBCS (non-SBCS)
80 * UTF-8 lead byte and middle trail byte. Unlike the older MBCS stage 2 table,
118 * will be able to use the base table and ignore the extension.
120 * The unicodeMask in the static data is part of the base table data structure.
123 * The static data unicodeMask refers only to the base table's properties if
124 * a base table is included.
170 * -- base table name for extension-only table
175 * -- normal base table with optional extensio
    [all...]
  /external/freetype/src/psnames/
psmodule.c 297 /* Build a table that maps Unicode values to glyph indices. */
300 PS_Unicodes table,
312 /* we first allocate the table */
313 table->num_maps = 0;
314 table->maps = 0;
316 if ( !FT_NEW_ARRAY( table->maps, num_glyphs + EXTRA_GLYPH_LIST_SIZE ) )
324 map = table->maps;
364 /* now compress the table a bit */
365 count = (FT_UInt)( map - table->maps );
370 FT_FREE( table->maps )
    [all...]
  /external/icu4c/tools/makeconv/
gencnvex.c 41 CnvExtAddTable(NewConverter *cnvData, UCMTable *table, UConverterStaticData *staticData);
52 /* toUnicode (state table in ucm->states) */
126 /* write the header and base table name for an extension-only table */
140 /* write the header and the base table name */
291 * the toUnicode table.
293 * for the base toUnicode table but not for the base fromUnicode table.
294 * The table must be sorted.
298 reduceToUMappings(UCMTable *table) {
    [all...]
  /external/openssl/crypto/engine/
eng_int.h 117 /* This represents an implementation table. Dependent code should instantiate it
120 int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup,
122 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e);
123 void engine_table_cleanup(ENGINE_TABLE **table);
125 ENGINE *engine_table_select(ENGINE_TABLE **table, int nid);
127 ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, const char *f, int l);
131 void engine_table_doall(ENGINE_TABLE *table, engine_table_doall_cb *cb, void *arg);
  /external/webkit/Source/JavaScriptCore/runtime/
Lookup.cpp 30 ASSERT(!table);
55 table = entries;
60 if (table) {
63 if (StringImpl* key = table[i].key())
66 delete [] table;
67 table = 0;
  /frameworks/compile/linkloader/include/impl/
ELFSectionRelTable.hxx 31 for (size_t i = 0; i < table.size(); ++i) {
32 delete table[i];
42 out() << "Relocation Table" << '\n';
62 // Seek to the start of the table
72 rt->table.push_back(ELFRelocTy::readRel(AR, i));
78 rt->table.push_back(ELFRelocTy::readRela(AR, i));
83 // Unable to read the table.
99 ELFRelocTy *rel = table[i];
115 ELFRelocTy *rel = table[i];
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3collections.c 42 // Interface functions for hash table
47 static void antlr3HashDelete (pANTLR3_HASH_TABLE table, void * key);
48 static void * antlr3HashGet (pANTLR3_HASH_TABLE table, void * key);
49 static pANTLR3_HASH_ENTRY antlr3HashRemove (pANTLR3_HASH_TABLE table, void * key);
50 static ANTLR3_INT32 antlr3HashPut (pANTLR3_HASH_TABLE table, void * key, void * element, void (ANTLR3_CDECL *freeptr)(void *));
54 static void antlr3HashDeleteI (pANTLR3_HASH_TABLE table, ANTLR3_INTKEY key);
55 static void * antlr3HashGetI (pANTLR3_HASH_TABLE table, ANTLR3_INTKEY key);
56 static pANTLR3_HASH_ENTRY antlr3HashRemoveI (pANTLR3_HASH_TABLE table, ANTLR3_INTKEY key);
57 static ANTLR3_INT32 antlr3HashPutI (pANTLR3_HASH_TABLE table, ANTLR3_INTKEY key, void * element, void (ANTLR3_CDECL *freeptr)(void *));
59 static void antlr3HashFree (pANTLR3_HASH_TABLE table);
131 pANTLR3_HASH_TABLE table; local
    [all...]
  /external/skia/src/effects/
SkTableColorFilter.cpp 34 virtual bool asComponentTable(SkBitmap* table) SK_OVERRIDE;
100 const uint8_t* table = fStorage; local
106 tableA = table; table += 256;
109 tableR = table; table += 256;
112 tableG = table; table += 256;
115 tableB = table;
186 bool SkTable_ColorFilter::asComponentTable(SkBitmap* table) {
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3collections.h 74 * is deleted from the table.
87 /** Internal structure of a hash table bucket, which tracks
101 /** Structure that tracks a hash table
105 /** Indicates whether the table allows duplicate keys
109 /** Number of buckets available in this table
118 /** How many elements currently exist in the table.
122 /** Whether the hash table should strdup the keys it is given or not.
126 /** Pointer to function to completely delete this table
128 void (*free) (struct ANTLR3_HASH_TABLE_struct * table);
131 void (*del) (struct ANTLR3_HASH_TABLE_struct * table, void * key)
161 pANTLR3_HASH_TABLE table; member in struct:ANTLR3_HASH_ENUM_struct
184 pANTLR3_HASH_TABLE table; member in struct:ANTLR3_LIST_struct
    [all...]
  /external/valgrind/main/callgrind/
jumps.c 49 jccs->table = (jCC**) CLG_MALLOC("cl.jumps.ijh.1",
54 jccs->table[i] = 0;
64 dst->table = current_jccs.table;
74 current_jccs.table = h->table;
84 /* double size of jcc table */
102 if (current_jccs.table[i] == NULL) continue;
104 curr_jcc = current_jccs.table[i];
123 VG_(free)(current_jccs.table);
    [all...]
  /external/clang/tools/scan-build/
sorttable.js 10 Add class="sortable" to any table you'd like to make sortable
34 forEach(document.getElementsByTagName('table'), function(table) {
35 if (table.className.search(/\bsortable\b/) != -1) {
36 sorttable.makeSortable(table);
42 makeSortable: function(table) {
43 if (table.getElementsByTagName('thead').length == 0) {
44 // table doesn't have a tHead. Since it should have, create one and
45 // put the first table row in it.
47 the.appendChild(table.rows[0])
    [all...]
  /frameworks/base/tools/preload/
sorttable.js 10 Add class="sortable" to any table you'd like to make sortable
34 forEach(document.getElementsByTagName('table'), function(table) {
35 if (table.className.search(/\bsortable\b/) != -1) {
36 sorttable.makeSortable(table);
42 makeSortable: function(table) {
43 if (table.getElementsByTagName('thead').length == 0) {
44 // table doesn't have a tHead. Since it should have, create one and
45 // put the first table row in it.
47 the.appendChild(table.rows[0])
    [all...]
  /external/bzip2/
bzip.css 9 #f2f2f9 very light blue nav table background
10 #3366cc medium blue nav table border
53 table.nav {
60 table.nav a { text-decoration: none; }
61 table.nav a:hover { text-decoration: underline; }
62 table.nav td { font-size: 85%; }
  /external/iptables/iptables/
ip6tables-standalone.c 14 * firewall table (aimed for the 2.3 kernels)
49 char *table = "filter"; local
66 ret = do_command6(argc, argv, &table, &handle);
iptables-standalone.c 14 * firewall table (aimed for the 2.3 kernels)
50 char *table = "filter"; local
66 ret = do_command4(argc, argv, &table, &handle);
  /external/libsepol/src/
symtab.c 7 * Implementation of the symbol table type.
42 s->table = hashtab_create(symhash, symcmp, size);
43 if (!s->table)
  /external/srec/srec/include/
prelib.h 45 void create_lookup_logadd(logadd_table_info *table, float mul_scale);
51 void destroy_lookup_logadd(logadd_table_info *table);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
Android.mk 9 symbol-table.cpp \
  /external/valgrind/main/docs/lib/
vg_basic.css 49 table.nav {
57 table.nav a { text-decoration: none; }
58 table.nav a:hover { text-decoration: underline; }
59 table.nav td { font-size: 85%; }

Completed in 1834 milliseconds

1 2 3 4 5 67 8 91011>>