new_table         212 opal/class/opal_hash_table.c     opal_hash_element_t* new_table;
new_table         222 opal/class/opal_hash_table.c     new_table    = (opal_hash_element_t*) calloc(new_capacity, sizeof(new_table[0]));
new_table         223 opal/class/opal_hash_table.c     if (NULL == new_table) {
new_table         242 opal/class/opal_hash_table.c                 new_elt = &new_table[ii];
new_table         251 opal/class/opal_hash_table.c     ht->ht_table = new_table;
new_table         317 opal/mca/event/libevent2022/libevent/ht-internal.h     struct type **new_table;                                            \
new_table         328 opal/mca/event/libevent2022/libevent/ht-internal.h     if ((new_table = mallocfn(new_len*sizeof(struct type*)))) {         \
new_table         330 opal/mca/event/libevent2022/libevent/ht-internal.h       memset(new_table, 0, new_len*sizeof(struct type*));               \
new_table         338 opal/mca/event/libevent2022/libevent/ht-internal.h           elm->field.hte_next = new_table[b2];                          \
new_table         339 opal/mca/event/libevent2022/libevent/ht-internal.h           new_table[b2] = elm;                                          \
new_table         345 opal/mca/event/libevent2022/libevent/ht-internal.h       head->hth_table = new_table;                                      \
new_table         348 opal/mca/event/libevent2022/libevent/ht-internal.h       new_table = reallocfn(head->hth_table, new_len*sizeof(struct type*)); \
new_table         349 opal/mca/event/libevent2022/libevent/ht-internal.h       if (!new_table) return -1;                                        \
new_table         350 opal/mca/event/libevent2022/libevent/ht-internal.h       memset(new_table + head->hth_table_length, 0,                     \
new_table         354 opal/mca/event/libevent2022/libevent/ht-internal.h         for (pE = &new_table[b], e = *pE; e != NULL; e = *pE) {         \
new_table         360 opal/mca/event/libevent2022/libevent/ht-internal.h             e->field.hte_next = new_table[b2];                          \
new_table         361 opal/mca/event/libevent2022/libevent/ht-internal.h             new_table[b2] = e;                                          \
new_table         365 opal/mca/event/libevent2022/libevent/ht-internal.h       head->hth_table = new_table;                                      \
new_table         162 opal/mca/pmix/pmix4x/pmix/src/class/pmix_hash_table.c     pmix_hash_element_t* new_table;
new_table         172 opal/mca/pmix/pmix4x/pmix/src/class/pmix_hash_table.c     new_table    = (pmix_hash_element_t*) calloc(new_capacity, sizeof(new_table[0]));
new_table         173 opal/mca/pmix/pmix4x/pmix/src/class/pmix_hash_table.c     if (NULL == new_table) {
new_table         192 opal/mca/pmix/pmix4x/pmix/src/class/pmix_hash_table.c                 new_elt = &new_table[ii];
new_table         201 opal/mca/pmix/pmix4x/pmix/src/class/pmix_hash_table.c     ht->ht_table = new_table;