Searched refs:new_table (Results 1 - 9 of 9) sorted by path

/freebsd-11-stable/contrib/com_err/
H A Dcom_err.c157 add_to_error_table(struct et_list *new_table) argument
162 if (et->table->base == new_table->table->base)
166 new_table->next = _et_list;
167 _et_list = new_table;
H A Dcom_err.h74 add_to_error_table (struct et_list *new_table);
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Dht-internal.h321 struct type **new_table; \
332 if ((new_table = mallocfn(new_len*sizeof(struct type*)))) { \
334 memset(new_table, 0, new_len*sizeof(struct type*)); \
342 elm->field.hte_next = new_table[b2]; \
343 new_table[b2] = elm; \
349 head->hth_table = new_table; \
352 new_table = reallocfn(head->hth_table, new_len*sizeof(struct type*)); \
353 if (!new_table) return -1; \
354 memset(new_table + head->hth_table_length, 0, \
358 for (pE = &new_table[
[all...]
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dst.c382 st_table *new_table; local
386 new_table = alloc(st_table);
387 if (new_table == 0) {
391 *new_table = *old_table;
392 new_table->bins = (st_table_entry **)
395 if (new_table->bins == 0) {
396 free(new_table);
401 new_table->bins[i] = 0;
406 free(new_table->bins);
407 free(new_table);
[all...]
/freebsd-11-stable/crypto/heimdal/lib/com_err/
H A Dcom_err.c160 add_to_error_table(struct et_list *new_table) argument
165 if (et->table->base == new_table->table->base)
169 new_table->next = _et_list;
170 _et_list = new_table;
H A Dcom_err.h74 add_to_error_table (struct et_list *new_table);
/freebsd-11-stable/lib/libc/db/hash/
H A Dhash.c104 int bpages, hdrsize, new_table, nsegs, save_errno; local
126 new_table = _fstat(hashp->fp, &statbuf) == 0 &&
129 new_table = 1;
131 if (new_table) {
185 hashp->new_file = new_table;
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_lock.cpp3047 kmp_indirect_lock_t **new_table = (kmp_indirect_lock_t **)__kmp_allocate( local
3049 KMP_MEMCPY(new_table, __kmp_i_lock_table.table,
3052 __kmp_i_lock_table.table = new_table;
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_sa.c570 struct sa_prot_map *new_table,
1144 sapopulateprots(struct sa_prot_state *cur_state, struct sa_prot_map *new_table, argument
1149 bcopy(sa_prot_table, new_table, min(table_ents * sizeof(*new_table),
1155 new_table[i].value = (uint32_t *)((uint8_t *)cur_state +
1156 new_table[i].offset);

Completed in 345 milliseconds