HomeSort by relevance Sort by last modified time
    Searched defs:new_table (Results 1 - 15 of 15) sorted by null

  /external/e2fsprogs/lib/ss/
invocation.c 29 register ss_data *new_table; local
34 new_table = (ss_data *) malloc(sizeof(ss_data));
51 table[sci_idx] = new_table;
53 new_table->subsystem_name = subsystem_name;
54 new_table->subsystem_version = version_string;
55 new_table->argv = (char **)NULL;
56 new_table->current_request = (char *)NULL;
57 new_table->info_dirs = (char **)malloc(sizeof(char *));
58 *new_table->info_dirs = (char *)NULL;
59 new_table->info_ptr = info_ptr
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/
stats.cc 53 Ptr<FontDataTable> new_table = new_font->GetTable(it->first); local
56 if (new_table) {
57 new_size = new_table->DataLength();
  /external/sfntly/cpp/src/sample/subtly/
stats.cc 53 Ptr<FontDataTable> new_table = new_font->GetTable(it->first); local
56 if (new_table) {
57 new_size = new_table->DataLength();
  /external/valgrind/main/callgrind/
jumps.c 88 jCC** new_table; local
93 new_table = (jCC**) CLG_MALLOC("cl.jumps.rjt.1",
96 if (!new_table) return;
99 new_table[i] = NULL;
111 curr_jcc->next_hash = new_table[new_idx];
112 new_table[new_idx] = curr_jcc;
131 current_jccs.table = new_table;
bb.c 70 BB **new_table, *curr, *next; local
74 new_table = (BB**) CLG_MALLOC("cl.bb.rbt.1",
77 if (!new_table) return;
80 new_table[i] = NULL;
91 curr->next = new_table[new_idx];
92 new_table[new_idx] = curr;
111 bbs.table = new_table;
context.c 94 Context **new_table, *curr, *next; local
98 new_table = (Context**) CLG_MALLOC("cl.context.rct.1",
101 if (!new_table) return;
104 new_table[i] = NULL;
115 curr->next = new_table[new_idx];
116 new_table[new_idx] = curr;
135 cxts.table = new_table;
bbcc.c 196 BBCC** new_table; local
201 new_table = (BBCC**) CLG_MALLOC("cl.bbcc.rbh.1",
204 if (!new_table) return;
207 new_table[i] = NULL;
220 curr_BBCC->next = new_table[new_idx];
221 new_table[new_idx] = curr_BBCC;
240 current_bbccs.table = new_table;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
eblc_table.cc 268 Ptr<EblcTable> new_table = new EblcTable(header(), data); local
269 return new_table.Detach();
  /external/sfntly/cpp/src/sfntly/table/bitmap/
eblc_table.cc 268 Ptr<EblcTable> new_table = new EblcTable(header(), data); local
269 return new_table.Detach();
  /system/core/toolbox/
schedtop.c 49 struct thread_info *new_table; local
55 new_table = realloc(table->data, size * sizeof(*table->data));
56 if (new_table == NULL) {
60 table->data = new_table;
  /external/bison/lib/
hash.c 946 Hash_table *new_table; local
953 new_table = &storage;
954 new_table->bucket = calloc (new_size, sizeof *new_table->bucket);
955 if (new_table->bucket == NULL)
957 new_table->n_buckets = new_size;
958 new_table->bucket_limit = new_table->bucket + new_size;
959 new_table->n_buckets_used = 0;
960 new_table->n_entries = 0
    [all...]
  /external/openfst/src/include/fst/
symbol-table.h 511 SymbolTable *new_table = new SymbolTable( local
516 new_table->AddSymbol(table->Find(pairs[i].first), pairs[i].second);
518 return new_table;
  /external/qemu/block/
qcow2-refcount.c 339 uint64_t *new_table = g_malloc0(table_size * sizeof(uint64_t)); local
344 memcpy(new_table, s->refcount_table,
346 new_table[refcount_table_index] = new_block;
350 new_table[blocks_used + i] = meta_offset + (i * s->cluster_size);
371 cpu_to_be64s(&new_table[i]);
375 ret = bdrv_pwrite_sync(bs->file, table_offset, new_table,
382 cpu_to_be64s(&new_table[i]);
401 s->refcount_table = new_table;
418 g_free(new_table);
    [all...]
  /external/chromium_org/v8/src/
runtime.cc 1658 Handle<OrderedHashMap> new_table = local
1683 Handle<OrderedHashMap> new_table = OrderedHashMap::Put(table, key, value); local
1804 Handle<ObjectHashTable> new_table = local
1821 Handle<ObjectHashTable> new_table = ObjectHashTable::Put(table, key, value); local
    [all...]
objects.cc 4649 Handle<ObjectHashTable> new_table = ObjectHashTable::Put(hashtable, key, local
13923 Handle<Derived> new_table = HashTable::New( local
13955 Handle<Derived> new_table = HashTable::New( local
15445 Handle<Derived> new_table = local
15476 Handle<Derived> new_table = local
    [all...]

Completed in 320 milliseconds