HomeSort by: relevance | last modified time | path
    Searched defs:new_list (Results 1 - 18 of 18) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_cfq.c 81 QUIC_CFQ_ITEM_LIST new_list, tx_list, free_list; member in struct:quic_cfq_st
209 free_list_items(&cfq->new_list);
257 list_insert_sorted(&cfq->new_list, item, compare);
267 list_remove(&cfq->new_list, ex);
292 list_remove(&cfq->new_list, ex);
294 list_insert_sorted(&cfq->new_list, ex, compare);
301 list_insert_sorted(&cfq->new_list, ex, compare);
320 list_remove(&cfq->new_list, ex);
338 QUIC_CFQ_ITEM_EX *item = cfq->new_list.head;
  /src/external/gpl3/gcc/dist/libobjc/
selector.c 158 struct objc_method_list *new_list; local
166 new_list = objc_calloc (sizeof (struct objc_method_list)
170 curr_method = &new_list->method_list[0];
186 into the new_list. */
190 if (++new_list->method_count == max_methods_no)
191 new_list =
192 objc_realloc (new_list, sizeof (struct objc_method_list)
195 curr_method = &new_list->method_list[new_list->method_count];
204 if (new_list->method_count
    [all...]
  /src/external/gpl3/gcc.old/dist/libobjc/
selector.c 158 struct objc_method_list *new_list; local
166 new_list = objc_calloc (sizeof (struct objc_method_list)
170 curr_method = &new_list->method_list[0];
186 into the new_list. */
190 if (++new_list->method_count == max_methods_no)
191 new_list =
192 objc_realloc (new_list, sizeof (struct objc_method_list)
195 curr_method = &new_list->method_list[new_list->method_count];
204 if (new_list->method_count
    [all...]
  /src/external/mpl/dhcp/dist/client/
clparse.c 422 struct option ***append_list, **new_list, **cat_list; local
494 tmp = parse_option_list(cfile, &new_list);
496 if (tmp == 0 || new_list == NULL)
515 for (i = 0 ; new_list[i] != 0 ; i++)
516 option_reference(&cat_list[tmp++], new_list[i], MDL);
  /src/external/gpl3/gcc/dist/gcc/config/i386/
x86-tune-sched-bd.cc 226 dispatch_windows *new_list; local
229 new_list = dispatch_window_list;
231 new_list = dispatch_window_list1;
233 new_list->num_insn = 0;
234 new_list->num_uops = 0;
235 new_list->window_size = 0;
236 new_list->next = NULL;
237 new_list->prev = NULL;
238 new_list->window_num = window_num;
239 new_list->num_imm = 0
264 dispatch_windows *new_list = XNEW (struct dispatch_windows_s); local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
tree-ssa-operands.cc 430 struct use_optype_d new_list; local
446 new_list.next = NULL;
447 last = &new_list;
484 gimple_set_use_ops (stmt, new_list.next);
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
x86-tune-sched-bd.cc 226 dispatch_windows *new_list; local
229 new_list = dispatch_window_list;
231 new_list = dispatch_window_list1;
233 new_list->num_insn = 0;
234 new_list->num_uops = 0;
235 new_list->window_size = 0;
236 new_list->next = NULL;
237 new_list->prev = NULL;
238 new_list->window_num = window_num;
239 new_list->num_imm = 0
264 dispatch_windows *new_list = XNEW (struct dispatch_windows_s); local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-operands.cc 430 struct use_optype_d new_list; local
446 new_list.next = NULL;
447 last = &new_list;
484 gimple_set_use_ops (stmt, new_list.next);
  /src/external/gpl3/gdb.old/dist/sim/igen/
gen.c 274 opcode_bits *new_list; local
275 opcode_bits **last = &new_list;
276 new_list = new_opcode_bits (old_bits->next,
284 if (cmp < 0) /* new < new_list */
296 return new_list;
  /src/external/gpl3/gdb/dist/sim/igen/
gen.c 274 opcode_bits *new_list; local
275 opcode_bits **last = &new_list;
276 new_list = new_opcode_bits (old_bits->next,
284 if (cmp < 0) /* new < new_list */
296 return new_list;
  /src/crypto/external/apache2/openssl/dist/engines/
e_devcrypto.c 1113 int *new_list; local
1144 new_list = OPENSSL_zalloc(sizeof(selected_ciphers));
1145 if (!CONF_parse_list(p, ',', 1, cryptodev_select_cipher_cb, new_list)) {
1146 OPENSSL_free(new_list);
1149 memcpy(selected_ciphers, new_list, sizeof(selected_ciphers));
1150 OPENSSL_free(new_list);
1164 new_list = OPENSSL_zalloc(sizeof(selected_digests));
1165 if (!CONF_parse_list(p, ',', 1, cryptodev_select_digest_cb, new_list)) {
1166 OPENSSL_free(new_list);
1169 memcpy(selected_digests, new_list, sizeof(selected_digests))
    [all...]
  /src/crypto/external/bsd/openssl/dist/engines/
e_devcrypto.c 1136 int *new_list; local
1167 new_list=OPENSSL_zalloc(sizeof(selected_ciphers));
1168 if (!CONF_parse_list(p, ',', 1, cryptodev_select_cipher_cb, new_list)) {
1169 OPENSSL_free(new_list);
1172 memcpy(selected_ciphers, new_list, sizeof(selected_ciphers));
1173 OPENSSL_free(new_list);
1187 new_list=OPENSSL_zalloc(sizeof(selected_digests));
1188 if (!CONF_parse_list(p, ',', 1, cryptodev_select_digest_cb, new_list)) {
1189 OPENSSL_free(new_list);
1192 memcpy(selected_digests, new_list, sizeof(selected_digests))
    [all...]
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_cc.c 2483 dt_node_t *new_list = NULL; local
2494 new_list = dt_node_link(new_list, dnp);
2496 yypcb->pcb_root->dn_list = new_list;
  /src/external/gpl3/gcc/dist/gcc/common/config/riscv/
riscv-common.cc 1452 riscv_subset_list *new_list = new riscv_subset_list (m_arch, m_loc); local
1454 new_list->add (itr->name.c_str (), itr->major_version, itr->minor_version,
1457 new_list->m_xlen = m_xlen;
1458 return new_list;
  /src/external/gpl3/gdb.old/dist/gdbserver/
mem-break.cc 2143 struct breakpoint **new_list = &child_proc->breakpoints; local
2149 APPEND_TO_LIST (new_list, new_bkpt, bkpt_tail);
  /src/external/gpl3/gdb/dist/gdbserver/
mem-break.cc 2143 struct breakpoint **new_list = &child_proc->breakpoints; local
2149 APPEND_TO_LIST (new_list, new_bkpt, bkpt_tail);
  /src/external/gpl3/gcc/dist/gcc/cp/
coroutines.cc 3336 tree new_list = push_stmt_list (); local
3386 expr_list = pop_stmt_list (new_list);
  /src/external/gpl3/gcc.old/dist/gcc/cp/
coroutines.cc 3120 tree new_list = push_stmt_list (); local
3169 expr_list = pop_stmt_list (new_list);

Completed in 34 milliseconds