Searched refs:new_hdr (Results 1 – 4 of 4) sorted by relevance
/third_party/mesa3d/src/util/ |
D | u_debug_memory.c | 225 struct debug_memory_header *old_hdr, *new_hdr; in debug_realloc() local 255 new_hdr = os_malloc(sizeof(*new_hdr) + new_size + sizeof(*new_ftr)); in debug_realloc() 256 if (!new_hdr) { in debug_realloc() 262 new_hdr->no = old_hdr->no; in debug_realloc() 263 new_hdr->file = old_hdr->file; in debug_realloc() 264 new_hdr->line = old_hdr->line; in debug_realloc() 265 new_hdr->function = old_hdr->function; in debug_realloc() 266 new_hdr->size = new_size; in debug_realloc() 267 new_hdr->magic = DEBUG_MEMORY_MAGIC; in debug_realloc() 268 new_hdr->tag = 0; in debug_realloc() [all …]
|
/third_party/openssl/crypto/asn1/ |
D | asn_mime.c | 680 MIME_HEADER *mhdr = NULL, *new_hdr = NULL; in STACK_OF() local 717 new_hdr = mime_hdr_new(ntmp, strip_ends(q)); in STACK_OF() 718 if (new_hdr == NULL) in STACK_OF() 720 if (!sk_MIME_HEADER_push(headers, new_hdr)) in STACK_OF() 722 mhdr = new_hdr; in STACK_OF() 723 new_hdr = NULL; in STACK_OF() 774 new_hdr = mime_hdr_new(ntmp, strip_ends(q)); in STACK_OF() 775 if (new_hdr == NULL) in STACK_OF() 777 if (!sk_MIME_HEADER_push(headers, new_hdr)) in STACK_OF() 779 mhdr = new_hdr; in STACK_OF() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
D | asn_mime.c | 686 MIME_HEADER *mhdr = NULL, *new_hdr = NULL; in STACK_OF() local 723 new_hdr = mime_hdr_new(ntmp, strip_ends(q)); in STACK_OF() 724 if (new_hdr == NULL) in STACK_OF() 726 if (!sk_MIME_HEADER_push(headers, new_hdr)) in STACK_OF() 728 mhdr = new_hdr; in STACK_OF() 729 new_hdr = NULL; in STACK_OF() 780 new_hdr = mime_hdr_new(ntmp, strip_ends(q)); in STACK_OF() 781 if (new_hdr == NULL) in STACK_OF() 783 if (!sk_MIME_HEADER_push(headers, new_hdr)) in STACK_OF() 785 mhdr = new_hdr; in STACK_OF() [all …]
|
/third_party/libcoap/src/ |
D | coap_pdu.c | 248 uint8_t *new_hdr; in coap_pdu_resize() local 262 new_hdr = (uint8_t *)coap_realloc_type(COAP_PDU_BUF, in coap_pdu_resize() 265 if (new_hdr == NULL) { in coap_pdu_resize() 269 pdu->token = new_hdr + pdu->max_hdr_size; in coap_pdu_resize()
|