Home
last modified time | relevance | path

Searched refs:new_table (Results 1 – 17 of 17) sorted by relevance

/external/e2fsprogs/lib/ss/
Dinvocation.c30 register ss_data *new_table; in ss_create_invocation() local
35 new_table = (ss_data *) malloc(sizeof(ss_data)); in ss_create_invocation()
49 free(new_table); in ss_create_invocation()
53 table[sci_idx] = new_table; in ss_create_invocation()
55 new_table->subsystem_name = subsystem_name; in ss_create_invocation()
56 new_table->subsystem_version = version_string; in ss_create_invocation()
57 new_table->argv = (char **)NULL; in ss_create_invocation()
58 new_table->current_request = (char *)NULL; in ss_create_invocation()
59 new_table->info_dirs = (char **)malloc(sizeof(char *)); in ss_create_invocation()
60 *new_table->info_dirs = (char *)NULL; in ss_create_invocation()
[all …]
/external/bison/lib/
Dhash.c946 Hash_table *new_table; in hash_rehash() local
953 new_table = &storage; in hash_rehash()
954 new_table->bucket = calloc (new_size, sizeof *new_table->bucket); in hash_rehash()
955 if (new_table->bucket == NULL) in hash_rehash()
957 new_table->n_buckets = new_size; in hash_rehash()
958 new_table->bucket_limit = new_table->bucket + new_size; in hash_rehash()
959 new_table->n_buckets_used = 0; in hash_rehash()
960 new_table->n_entries = 0; in hash_rehash()
961 new_table->tuning = table->tuning; in hash_rehash()
962 new_table->hasher = table->hasher; in hash_rehash()
[all …]
/external/libevent/
Dht-internal.h317 struct type **new_table; \
328 if ((new_table = mallocfn(new_len*sizeof(struct type*)))) { \
330 memset(new_table, 0, new_len*sizeof(struct type*)); \
338 elm->field.hte_next = new_table[b2]; \
339 new_table[b2] = elm; \
345 head->hth_table = new_table; \
348 new_table = reallocfn(head->hth_table, new_len*sizeof(struct type*)); \
349 if (!new_table) return -1; \
350 memset(new_table + head->hth_table_length, 0, \
354 for (pE = &new_table[b], e = *pE; e != NULL; e = *pE) { \
[all …]
/external/valgrind/callgrind/
Djumps.c86 jCC** new_table; in resize_jcc_table() local
91 new_table = (jCC**) CLG_MALLOC("cl.jumps.rjt.1", in resize_jcc_table()
95 new_table[i] = NULL; in resize_jcc_table()
107 curr_jcc->next_hash = new_table[new_idx]; in resize_jcc_table()
108 new_table[new_idx] = curr_jcc; in resize_jcc_table()
127 current_jccs.table = new_table; in resize_jcc_table()
Dcontext.c89 Context **new_table, *curr, *next; in resize_cxt_table() local
93 new_table = (Context**) CLG_MALLOC("cl.context.rct.1", in resize_cxt_table()
97 new_table[i] = NULL; in resize_cxt_table()
108 curr->next = new_table[new_idx]; in resize_cxt_table()
109 new_table[new_idx] = curr; in resize_cxt_table()
128 cxts.table = new_table; in resize_cxt_table()
Dbb.c70 BB **new_table, *curr, *next; in resize_bb_table() local
74 new_table = (BB**) CLG_MALLOC("cl.bb.rbt.1", in resize_bb_table()
78 new_table[i] = NULL; in resize_bb_table()
89 curr->next = new_table[new_idx]; in resize_bb_table()
90 new_table[new_idx] = curr; in resize_bb_table()
109 bbs.table = new_table; in resize_bb_table()
Dbbcc.c196 BBCC** new_table; in resize_bbcc_hash() local
201 new_table = (BBCC**) CLG_MALLOC("cl.bbcc.rbh.1", in resize_bbcc_hash()
205 new_table[i] = NULL; in resize_bbcc_hash()
218 curr_BBCC->next = new_table[new_idx]; in resize_bbcc_hash()
219 new_table[new_idx] = curr_BBCC; in resize_bbcc_hash()
238 current_bbccs.table = new_table; in resize_bbcc_hash()
/external/sfntly/cpp/src/sample/subtly/
Dstats.cc53 Ptr<FontDataTable> new_table = new_font->GetTable(it->first); in PrintComparison() local
56 if (new_table) { in PrintComparison()
57 new_size = new_table->DataLength(); in PrintComparison()
/external/e2fsprogs/lib/et/
Derror_message.c340 add_to_error_table(struct et_list *new_table) in add_to_error_table() argument
342 add_error_table(new_table->table); in add_to_error_table()
Dcom_err.h51 extern void add_to_error_table(struct et_list *new_table);
/external/autotest/client/site_tests/firmware_TouchMTB/
Dreport_html.py124 new_table = self.table.safe_substitute(gestures=gestures)
126 logs=new_table)
/external/sfntly/cpp/src/sfntly/table/bitmap/
Deblc_table.cc268 Ptr<EblcTable> new_table = new EblcTable(header(), data); in SubBuildTable() local
269 return new_table.Detach(); in SubBuildTable()
/external/v8/src/
Dobjects.cc16341 Handle<Derived> new_table, in Rehash() argument
16343 DCHECK(NumberOfElements() < new_table->Capacity()); in Rehash()
16346 WriteBarrierMode mode = new_table->GetWriteBarrierMode(no_gc); in Rehash()
16352 new_table->set(i, get(i), mode); in Rehash()
16357 Heap* heap = new_table->GetHeap(); in Rehash()
16366 EntryToIndex(new_table->FindInsertionEntry(hash)); in Rehash()
16368 new_table->set(insertion_index + j, get(from_index + j), mode); in Rehash()
16372 new_table->SetNumberOfElements(NumberOfElements()); in Rehash()
16373 new_table->SetNumberOfDeletedElements(0); in Rehash()
16472 Handle<Derived> new_table = HashTable::New( in EnsureCapacity() local
[all …]
Dobjects.h3465 void Rehash(Handle<Derived> new_table, Key key);
/external/protobuf/php/ext/google/protobuf/
Dupb.c4304 upb_strtable new_table; in upb_strtable_resize() local
4307 if (!init(&new_table.t, t->t.ctype, size_lg2)) in upb_strtable_resize()
4312 &new_table, in upb_strtable_resize()
4318 *t = new_table; in upb_strtable_resize()
4506 upb_table new_table; in upb_inttable_insert() local
4507 if (!init(&new_table, t->t.ctype, t->t.size_lg2 + 1)) in upb_inttable_insert()
4516 insert(&new_table, intkey(e->key), e->key, v, hash, &inthash, &inteql); in upb_inttable_insert()
4519 assert(t->t.count == new_table.count); in upb_inttable_insert()
4522 t->t = new_table; in upb_inttable_insert()
/external/protobuf/ruby/ext/google/protobuf_c/
Dupb.c4546 upb_strtable new_table; in upb_strtable_resize() local
4551 if (!init(&new_table.t, t->t.ctype, size_lg2, a)) in upb_strtable_resize()
4556 &new_table, in upb_strtable_resize()
4563 *t = new_table; in upb_strtable_resize()
4754 upb_table new_table; in upb_inttable_insert2() local
4756 if (!init(&new_table, t->t.ctype, t->t.size_lg2 + 1, a)) { in upb_inttable_insert2()
4767 insert(&new_table, intkey(e->key), e->key, v, hash, &inthash, &inteql); in upb_inttable_insert2()
4770 assert(t->t.count == new_table.count); in upb_inttable_insert2()
4773 t->t = new_table; in upb_inttable_insert2()
/external/v8/src/crankshaft/
Dhydrogen.cc12350 HValue* new_table = BuildAllocateOrderedHashTable<CollectionType>(); in BuildOrderedHashTableClear() local
12353 new_table); in BuildOrderedHashTableClear()
12359 new_table); in BuildOrderedHashTableClear()