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

  /external/e2fsprogs/lib/ss/
invocation.c 31 register ss_data *new_table; local
36 new_table = (ss_data *) malloc(sizeof(ss_data));
49 table[sci_idx] = new_table;
51 new_table->subsystem_name = subsystem_name;
52 new_table->subsystem_version = version_string;
53 new_table->argv = (char **)NULL;
54 new_table->current_request = (char *)NULL;
55 new_table->info_dirs = (char **)malloc(sizeof(char *));
56 *new_table->info_dirs = (char *)NULL;
57 new_table->info_ptr = info_ptr
    [all...]
  /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;
  /system/core/toolbox/
schedtop.c 52 struct thread_info *new_table; local
58 new_table = realloc(table->data, size * sizeof(*table->data));
59 if (new_table == NULL) {
63 table->data = new_table;
  /external/bison/lib/
hash.c 821 Hash_table *new_table; local
826 new_table = hash_initialize (candidate, table->tuning, table->hasher,
828 if (new_table == NULL)
833 obstack_free (&new_table->entry_stack, NULL);
834 new_table->entry_stack = table->entry_stack;
836 new_table->free_entry_list = table->free_entry_list;
844 = (new_table->bucket
845 + new_table->hasher (data, new_table->n_buckets));
847 if (! (new_bucket < new_table->bucket_limit)
    [all...]
  /external/dbus/bus/
services.c 683 DBusHashTable *new_table; local
686 new_table = bus_selinux_id_table_new ();
687 if (!new_table)
696 if (!bus_selinux_id_table_insert (new_table,
704 registry->service_sid_table = new_table;
    [all...]
  /external/openfst/src/include/fst/
symbol-table.h 495 SymbolTable *new_table = new SymbolTable( local
500 new_table->AddSymbol(table->Find(pairs[i].first), pairs[i].second);
502 return new_table;
  /external/qemu/block/
qcow2-refcount.c 339 uint64_t *new_table = qemu_mallocz(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 qemu_free(new_table);
    [all...]
  /external/v8/src/
runtime.cc 800 Handle<ObjectHashTable> new_table = PutIntoObjectHashTable(table, key, value); local
801 holder->set_table(*new_table);
834 Handle<ObjectHashTable> new_table = PutIntoObjectHashTable(table, key, value); local
835 weakmap->set_table(*new_table);
    [all...]
heap.cc 5157 Object* new_table; local
5172 Object* new_table; local
5189 Object* new_table; local
5207 Object* new_table; local
5223 Object* new_table; local
    [all...]

Completed in 923 milliseconds