HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 451 - 475 of 2297) sorted by null

<<11121314151617181920>>

  /system/extras/verity/
build_verity_metadata.py 30 def sign_verity_table(table, signer_path, key_path):
31 with tempfile.NamedTemporaryFile(suffix='.table') as table_file:
33 table_file.write(table)
41 table = "1 %s %s %s %s %s %s sha256 %s %s"
42 table %= ( block_device,
50 return table
54 # build the verity table
56 # build the verity table signature
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CatchStructs.java 49 * {@code null-ok;} the underlying table; set in
52 private CatchTable table; field in class:CatchStructs
79 this.table = null;
89 if (table == null) {
90 table = code.getCatches();
101 return table.size();
123 int size = table.size();
132 handlerOffsets.put(table.get(i).getHandlers(), null);
202 int tableSize = table.size();
204 CatchTable.Entry one = table.get(i)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 46 * {@code null-ok;} the underlying table; set in
49 private CatchTable table; field in class:CatchStructs
76 this.table = null;
86 if (table == null) {
87 table = code.getCatches();
98 return table.size();
120 int size = table.size();
129 handlerOffsets.put(table.get(i).getHandlers(), null);
199 int tableSize = table.size();
201 CatchTable.Entry one = table.get(i)
    [all...]
  /external/chromium_org/third_party/icu/source/test/letest/
FontObject.cpp 55 void FontObject::deleteTable(void *table)
57 delete[] (char *) table;
62 le_uint16 table = 0; local
66 table = rangeShift;
72 if (SWAPL(directory->tableDirectory[table + probe].tag) <= tag) {
73 table += probe;
77 if (SWAPL(directory->tableDirectory[table].tag) == tag) {
78 return &directory->tableDirectory[table];
95 void *table = new char[*length]; local
98 fread(table, sizeof(char), *length, file)
    [all...]
  /external/chromium_org/third_party/zlib/
inftrees.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 ZLIB_INTERNAL inflate_table(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...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CatchStructs.java 47 * {@code null-ok;} the underlying table; set in
50 private CatchTable table; field in class:CatchStructs
77 this.table = null;
87 if (table == null) {
88 table = code.getCatches();
99 return table.size();
121 int size = table.size();
130 handlerOffsets.put(table.get(i).getHandlers(), null);
200 int tableSize = table.size();
202 CatchTable.Entry one = table.get(i)
    [all...]
  /external/freetype/src/sfnt/
sfobjs.c 170 /* Apple platform IDs might be used in the `name' table. The */
171 /* `Unicode' platform is reserved for the `cmap' table, and the */
175 /* thing and goes to suggest that all Unicode `name' table entries */
250 /* Apparently, if this value is found in a name table entry, it is */
521 WOFF_Table table = tables + nn; local
523 table->Tag = FT_GET_TAG4();
524 table->Offset = FT_GET_ULONG();
525 table->CompLength = FT_GET_ULONG();
526 table->OrigLength = FT_GET_ULONG();
527 table->CheckSum = FT_GET_ULONG()
566 WOFF_Table table = indices[nn]; local
634 WOFF_Table table = tables + nn; local
    [all...]
  /external/icu/icu4c/source/i18n/
collationdata.cpp 130 uint8_t table[256], UErrorCode &errorCode) const {
133 // Initialize the table.
137 table[lowByte] = lowByte;
143 table[highByte] = highByte;
149 table[i] = 0;
172 do { table[firstByte++] = lowByte++; } while(firstByte <= lastByte);
193 if(table[firstByte] != 0) { // Duplicate or equivalent script.
197 do { table[lastByte--] = highByte--; } while(firstByte <= lastByte);
212 if(table[firstByte] != 0) { // Duplicate or equivalent script.
216 do { table[firstByte++] = lowByte++; } while(firstByte <= lastByte)
    [all...]
  /external/icu/icu4c/source/test/letest/
FontObject.cpp 55 void FontObject::deleteTable(void *table)
57 delete[] (char *) table;
62 le_uint16 table = 0; local
66 table = rangeShift;
72 if (SWAPL(directory->tableDirectory[table + probe].tag) <= tag) {
73 table += probe;
77 if (SWAPL(directory->tableDirectory[table].tag) == tag) {
78 return &directory->tableDirectory[table];
95 void *table = new char[*length]; local
98 fread(table, sizeof(char), *length, file)
    [all...]
  /external/icu/icu4c/source/test/perf/leperf/
FontObject.cpp 55 void FontObject::deleteTable(void *table)
57 delete[] (char *) table;
62 le_uint16 table = 0; local
66 table = rangeShift;
72 if (SWAPL(directory->tableDirectory[table + probe].tag) <= tag) {
73 table += probe;
77 if (SWAPL(directory->tableDirectory[table].tag) == tag) {
78 return &directory->tableDirectory[table];
95 void *table = new char[*length]; local
98 fread(table, sizeof(char), *length, file)
    [all...]
  /external/qemu/hw/i386/
smbios.c 72 "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) + size)
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
main.cc 29 #include "hb-ot-layout-gdef-table.hh"
98 printf (" %d table(s) found in font\n", num_tables);
100 const OpenTypeTable &table = font.get_table (n_table); local
101 printf (" Table %2d of %2d: %.4s (0x%08x+0x%08x)\n", n_table, num_tables,
102 (const char *)table.tag,
103 (unsigned int) table.offset,
104 (unsigned int) table.length);
106 switch (table.tag) {
112 const GSUBGPOS &g = *CastP<GSUBGPOS> (font_data + table.offset);
115 printf (" %d script(s) found in table\n", num_scripts)
    [all...]
  /external/elfutils/0.153/libelf/
nlist.c 90 struct nlist_fshash *table; local
113 /* Find a symbol table. We prefer the real symbol table but if it
114 does not exist use the dynamic symbol table. */
138 table. */
152 /* Create the hash table. */
153 table = nlist_fshash_init (nsyms);
154 if (table == NULL)
180 /* And add it to the hash table. Note that we are using the
187 (void) nlist_fshash_overwrite (table, mem.str, 0, &mem)
    [all...]
  /external/harfbuzz_ng/src/
main.cc 29 #include "hb-ot-layout-gdef-table.hh"
98 printf (" %d table(s) found in font\n", num_tables);
100 const OpenTypeTable &table = font.get_table (n_table); local
101 printf (" Table %2d of %2d: %.4s (0x%08x+0x%08x)\n", n_table, num_tables,
102 (const char *)table.tag,
103 (unsigned int) table.offset,
104 (unsigned int) table.length);
106 switch (table.tag) {
112 const GSUBGPOS &g = *CastP<GSUBGPOS> (font_data + table.offset);
115 printf (" %d script(s) found in table\n", num_scripts)
    [all...]
  /external/qemu/ui/
keymaps.c 28 static int get_keysym(const name2keysym_t *table,
32 for(p = table; p->name != NULL; p++) {
62 static kbd_layout_t *parse_keyboard_layout(const name2keysym_t *table,
99 parse_keyboard_layout(table, line + 8, k);
107 keysym = get_keysym(table, line);
152 void *init_keyboard_layout(const name2keysym_t *table, const char *language)
154 return parse_keyboard_layout(table, language, NULL);
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/
ttload.c 45 /* Looks for a TrueType table by name. */
53 /* A pointer to the table directory entry. 0 if not found. */
105 FT_TRACE4(( "found table.\n" ));
116 FT_TRACE4(( "ignoring empty table\n" ));
118 FT_TRACE4(( "could not find table\n" ));
131 /* Looks for a TrueType table by name, then seek a stream to it. */
138 /* stream :: The stream to seek when the table is found. */
141 /* length :: The length of the table if found, undefined otherwise. */
152 TT_Table table; local
156 table = tt_face_lookup_table( face, tag )
217 TT_TableRec table; local
498 TT_Table table; local
771 TT_NameTable table; local
896 TT_NameTable table = &face->name_table; local
    [all...]
  /system/core/toolbox/
schedtop.c 46 static void grow_table(struct thread_table *table)
48 size_t size = table->allocated;
55 new_table = realloc(table->data, size * sizeof(*table->data));
60 table->data = new_table;
61 table->allocated = size;
64 static struct thread_info *get_item(struct thread_table *table)
66 if (table->active >= table->allocated)
67 grow_table(table);
    [all...]
  /external/opencv/otherlibs/highgui/
bitstrm.cpp 443 int RLBitStream::GetHuff( const short* table )
450 int table_bits = table[0];
451 val = table[Show(table_bits) + 2];
456 table += val*2;
545 int RMBitStream::GetHuff( const short* table )
552 int table_bits = table[0];
553 val = table[Show(table_bits) + 1];
558 table += val;
589 bool bsCreateDecodeHuffmanTable( const int* src, short* table, int max_size )
619 /* calc offsets of sub tables and whole size of table */
690 int* table = dst; local
    [all...]
  /external/chromium_org/third_party/freetype/src/pshinter/
pshalgo.c 63 /* destroy hints table */
65 psh_hint_table_done( PSH_Hint_Table table,
68 FT_FREE( table->zones );
69 table->num_zones = 0;
70 table->zone = 0;
72 FT_FREE( table->sort );
73 FT_FREE( table->hints );
74 table->num_hints = 0;
75 table->max_hints = 0;
76 table->sort_global = 0
1675 PSH_Hint_Table table = &glyph->hint_tables[dimension]; local
1755 PSH_Blue_Table table; local
    [all...]
  /external/freetype/src/pshinter/
pshalgo.c 63 /* destroy hints table */
65 psh_hint_table_done( PSH_Hint_Table table,
68 FT_FREE( table->zones );
69 table->num_zones = 0;
70 table->zone = 0;
72 FT_FREE( table->sort );
73 FT_FREE( table->hints );
74 table->num_hints = 0;
75 table->max_hints = 0;
76 table->sort_global = 0
1674 PSH_Hint_Table table = &glyph->hint_tables[dimension]; local
1754 PSH_Blue_Table table; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/
pshalgo.c 63 /* destroy hints table */
65 psh_hint_table_done( PSH_Hint_Table table,
68 FT_FREE( table->zones );
69 table->num_zones = 0;
70 table->zone = 0;
72 FT_FREE( table->sort );
73 FT_FREE( table->hints );
74 table->num_hints = 0;
75 table->max_hints = 0;
76 table->sort_global = 0
1675 PSH_Hint_Table table = &glyph->hint_tables[dimension]; local
1755 PSH_Blue_Table table; local
    [all...]
  /external/chromium_org/v8/src/
compilation-cache.cc 23 // Initial size of each compilation cache table allocated.
52 CompilationCacheTable* table = local
54 result = Handle<CompilationCacheTable>(table, isolate());
96 Handle<CompilationCacheTable> table = GetTable(generation); local
97 table->Remove(*function_info);
157 Handle<CompilationCacheTable> table = GetTable(generation); local
158 Handle<Object> probe = table->Lookup(source, context);
217 Handle<CompilationCacheTable> table = GetFirstTable(); local
219 CompilationCacheTable::Put(table, source, context, function_info));
229 // Make sure not to leak the table into the surrounding handl
235 Handle<CompilationCacheTable> table = GetTable(generation); local
259 Handle<CompilationCacheTable> table = GetFirstTable(); local
276 Handle<CompilationCacheTable> table = GetTable(generation); local
298 Handle<CompilationCacheTable> table = GetFirstTable(); local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteDatabase.java 72 public long insert(String table, String nullColumnHack, ContentValues values) {
73 return insertWithOnConflict(table, nullColumnHack, values, SQLiteDatabase.CONFLICT_NONE);
77 public long insertOrThrow(String table, String nullColumnHack, ContentValues values) {
80 return insertWithOnConflict(table, nullColumnHack, values, SQLiteDatabase.CONFLICT_NONE);
84 public long replace(String table, String nullColumnHack, ContentValues values) {
85 return insertWithOnConflict(table, nullColumnHack, values, SQLiteDatabase.CONFLICT_REPLACE);
89 public long insertWithOnConflict(String table, String nullColumnHack,
93 SQLStringAndBindings sqlInsertString = buildInsertString(table, initialValues, conflictAlgorithm);
114 public Cursor query(boolean distinct, String table, String[] columns,
123 String sql = SQLiteQueryBuilder.buildQueryString(distinct, table,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texstore.c 4039 static StoreTexImageFunc table[MESA_FORMAT_COUNT]; local
    [all...]
  /external/mesa3d/src/mesa/main/
texstore.c 4039 static StoreTexImageFunc table[MESA_FORMAT_COUNT]; local
    [all...]

Completed in 385 milliseconds

<<11121314151617181920>>