Searched refs:new_table (Results 1 - 20 of 20) sorted by relevance

/external/e2fsprogs/lib/ss/
H A Dinvocation.c29 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
[all...]
/external/bison/lib/
H A Dhash.c946 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
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/
H A Dstats.cc53 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/
H A Dstats.cc53 Ptr<FontDataTable> new_table = new_font->GetTable(it->first); local
56 if (new_table) {
57 new_size = new_table->DataLength();
/external/valgrind/main/callgrind/
H A Djumps.c88 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;
H A Dbb.c70 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;
H A Dcontext.c94 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;
H A Dbbcc.c196 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/ppapi/c/documentation/
H A Ddoxy_cleanup.py76 new_table = Tag(self.soup, name='table', attrs=table.attrs)
77 table_parent.insert(table_index + 1, new_table)
80 new_table.insert(index, row)
/external/chromium_org/ppapi/cpp/documentation/
H A Ddoxy_cleanup.py75 new_table = Tag(self.soup, name='table', attrs=table.attrs)
76 table_parent.insert(table_index + 1, new_table)
79 new_table.insert(index, row)
/external/e2fsprogs/lib/et/
H A Dcom_err.h51 extern void add_to_error_table(struct et_list *new_table);
H A Derror_message.c336 add_to_error_table(struct et_list *new_table) argument
338 add_error_table(new_table->table);
/external/chromium_org/native_client_sdk/src/doc/doxygen/
H A Ddoxy_cleanup.py120 new_table = Tag(self.soup, name='table', attrs=table.attrs)
121 table_parent.insert(table_index + 1, new_table)
124 new_table.insert(index, row)
/external/qemu/block/
H A Dqcow2-refcount.c339 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);
/external/openfst/src/include/fst/
H A Dsymbol-table.h511 SymbolTable *new_table = new SymbolTable( local
516 new_table->AddSymbol(table->Find(pairs[i].first), pairs[i].second);
518 return new_table;
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
H A Deblc_table.cc268 Ptr<EblcTable> new_table = new EblcTable(header(), data); local
269 return new_table.Detach();
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Deblc_table.cc268 Ptr<EblcTable> new_table = new EblcTable(header(), data); local
269 return new_table.Detach();
/external/chromium_org/v8/src/
H A Dobjects.cc4649 Handle<ObjectHashTable> new_table = ObjectHashTable::Put(hashtable, key, local
4651 if (*new_table != *hashtable) {
4654 SetHiddenPropertiesHashTable(object, new_table);
13799 Handle<Derived> new_table,
13801 DCHECK(NumberOfElements() < new_table->Capacity());
13804 WriteBarrierMode mode = new_table->GetWriteBarrierMode(no_gc);
13810 new_table->set(i, get(i), mode);
13821 EntryToIndex(new_table->FindInsertionEntry(hash));
13823 new_table->set(insertion_index + j, get(from_index + j), mode);
13827 new_table
13798 Rehash( Handle<Derived> new_table, Key key) argument
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...]
H A Druntime.cc1658 Handle<OrderedHashMap> new_table = local
1660 holder->set_table(*new_table);
1683 Handle<OrderedHashMap> new_table = OrderedHashMap::Put(table, key, value); local
1684 holder->set_table(*new_table);
1804 Handle<ObjectHashTable> new_table = local
1806 weak_collection->set_table(*new_table);
1821 Handle<ObjectHashTable> new_table = ObjectHashTable::Put(table, key, value); local
1822 weak_collection->set_table(*new_table);
H A Dobjects.h3362 void Rehash(Handle<Derived> new_table, Key key);

Completed in 2095 milliseconds