| /lib/ |
| A D | membuf.c | 17 mb->head = mb->start; in membuf_purge() 39 if (mb->head >= mb->tail) { in membuf_putrawflex() 41 len = mb->end - mb->head - 1; in membuf_putrawflex() 47 mb->head += len; in membuf_putrawflex() 56 mb->head = mb->start; in membuf_putrawflex() 68 mb->head += len; in membuf_putrawflex() 109 if (mb->head > mb->tail) { in membuf_getraw() 112 len = mb->head - mb->tail; in membuf_getraw() 245 if (mb->tail > mb->head) { in membuf_makecontig() 298 end = mb->head >= mb->tail ? mb->head : mb->end; in membuf_readline() [all …]
|
| A D | list_sort.c | 27 struct list_head head, *tail = &head; in merge() local 41 return head.next; in merge() 54 struct list_head *head, in merge_and_restore_back_links() argument 57 struct list_head *tail = head; in merge_and_restore_back_links() 87 tail->next = head; in merge_and_restore_back_links() 88 head->prev = tail; in merge_and_restore_back_links() 115 if (list_empty(head)) in list_sort() 120 head->prev->next = NULL; in list_sort() 121 list = head->next; in list_sort() 221 LIST_HEAD(head); in list_sort_test() [all …]
|
| /lib/mbedtls/external/mbedtls/scripts/mbedtls_dev/ |
| A D | crypto_knowledge.py | 214 if self.head == 'HMAC' and alg.head == 'HMAC': 216 if self.head == 'DES': 230 if self.head == 'CHACHA20' and alg.head == 'CHACHA20_POLY1305': 235 if self.head == 'RSA' and alg.head.startswith('RSA_'): 246 if self.head == 'ECC': 259 if self.head == 'DH' and alg.head == 'FFDH': 326 head = m.group(1) 331 head = m.group(1) 332 head = re.sub(r'_ANY\Z', r'', head) 335 return head [all …]
|
| /lib/zlib/ |
| A D | inflate.c | 23 state->head = Z_NULL; in inflateReset() 375 if (state->head != Z_NULL) in inflate() 376 state->head->done = -1; in inflate() 418 if (state->head != Z_NULL) in inflate() 426 if (state->head != Z_NULL) in inflate() 427 state->head->time = hold; in inflate() 434 if (state->head != Z_NULL) { in inflate() 446 if (state->head != Z_NULL) in inflate() 451 else if (state->head != Z_NULL) in inflate() 532 if (state->head != Z_NULL) { in inflate() [all …]
|
| A D | deflate.c | 180 match_head = s->head[s->ins_h], \ 181 s->head[s->ins_h] = (Pos)(str)) 186 s->head[s->ins_h] = (Pos)(str)) 194 s->head[s->hash_size-1] = NIL; \ 195 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head)); 419 int ZEXPORT deflateSetHeader (strm, head) in deflateSetHeader() argument 421 gz_headerp head; 425 strm->state->gzhead = head; 943 TRY_FREE(strm, strm->state->head); 995 zmemcpy(ds->head, ss->head, ds->hash_size * sizeof(Pos)); [all …]
|
| A D | inflate.h | 86 gz_headerp head; /* where to save gzip header information */ member
|
| /lib/lwip/lwip/src/api/ |
| A D | netbuf.c | 176 netbuf_chain(struct netbuf *head, struct netbuf *tail) in netbuf_chain() argument 178 LWIP_ERROR("netbuf_chain: invalid head", (head != NULL), return;); in netbuf_chain() 180 pbuf_cat(head->p, tail->p); in netbuf_chain() 181 head->ptr = head->p; in netbuf_chain()
|
| /lib/mbedtls/external/mbedtls/tests/suites/ |
| A D | test_suite_asn1parse.function | 590 cur = &head; 728 mbedtls_asn1_named_data head = 732 TEST_CALLOC(head.oid.p, 1); 735 TEST_CALLOC(head.val.p, 1); 738 head.next = &next; 744 TEST_ASSERT(head.next == NULL); 748 mbedtls_free(head.oid.p); 749 mbedtls_free(head.val.p); 762 new->next = head; 763 head = new; [all …]
|
| A D | test_suite_asn1write.function | 472 mbedtls_asn1_named_data *head = NULL; 486 head = pointers[from]; 487 found = mbedtls_asn1_store_named_data(&head, 499 TEST_ASSERT(head == pointers[from]); 503 TEST_ASSERT(found == head); 526 mbedtls_asn1_named_data *head = &nd; 544 TEST_ASSERT(head == &nd); 545 TEST_ASSERT(found == head); 567 mbedtls_asn1_named_data *head = NULL; 577 found = mbedtls_asn1_store_named_data(&head, [all …]
|
| /lib/lwip/lwip/test/unit/arch/ |
| A D | sys_arch.c | 217 mbox->head = mbox->tail = 0; in sys_mbox_new() 260 q->q_mem[q->head] = msg; in sys_mbox_post() 261 q->head++; in sys_mbox_post() 262 if (q->head >= (unsigned int)q->size) { in sys_mbox_post() 263 q->head = 0; in sys_mbox_post() 265 LWIP_ASSERT("mbox is full!", q->head != q->tail); in sys_mbox_post()
|
| A D | sys_arch.h | 44 unsigned int head, tail; member
|
| /lib/lwip/lwip/contrib/ports/win32/ |
| A D | sys_arch.c | 538 mbox->head = 0; in sys_mbox_new() 577 q->q_mem[q->head] = msg; in sys_mbox_post() 578 q->head++; in sys_mbox_post() 579 if (q->head >= MAX_QUEUE_ENTRIES) { in sys_mbox_post() 580 q->head = 0; in sys_mbox_post() 582 LWIP_ASSERT("mbox is full!", q->head != q->tail); in sys_mbox_post() 605 new_head = q->head + 1; in sys_mbox_trypost() 614 q->q_mem[q->head] = msg; in sys_mbox_trypost() 615 q->head = new_head; in sys_mbox_trypost() 616 LWIP_ASSERT("mbox is full!", q->head != q->tail); in sys_mbox_trypost()
|
| /lib/mbedtls/external/mbedtls/library/ |
| A D | x509_create.c | 281 int mbedtls_x509_string_to_names(mbedtls_asn1_named_data **head, const char *name) in mbedtls_x509_string_to_names() argument 296 mbedtls_asn1_free_named_data_list(head); in mbedtls_x509_string_to_names() 347 mbedtls_asn1_store_named_data(head, (char *) oid.p, oid.len, in mbedtls_x509_string_to_names() 380 int mbedtls_x509_set_extension(mbedtls_asn1_named_data **head, const char *oid, size_t oid_len, in mbedtls_x509_set_extension() argument 389 if ((cur = mbedtls_asn1_store_named_data(head, oid, oid_len, in mbedtls_x509_set_extension()
|
| A D | asn1write.c | 375 mbedtls_asn1_named_data **head, in mbedtls_asn1_store_named_data() argument 382 if ((cur = asn1_find_named_data(*head, oid, oid_len)) == NULL) { in mbedtls_asn1_store_named_data() 410 cur->next = *head; in mbedtls_asn1_store_named_data() 411 *head = cur; in mbedtls_asn1_store_named_data()
|
| A D | asn1parse.c | 433 void mbedtls_asn1_free_named_data_list(mbedtls_asn1_named_data **head) in mbedtls_asn1_free_named_data_list() argument 437 while ((cur = *head) != NULL) { in mbedtls_asn1_free_named_data_list() 438 *head = cur->next; in mbedtls_asn1_free_named_data_list()
|
| A D | x509_internal.h | 51 int mbedtls_x509_set_extension(mbedtls_asn1_named_data **head, const char *oid, size_t oid_len,
|
| /lib/lwip/lwip/src/include/lwip/ |
| A D | pbuf.h | 295 void pbuf_cat(struct pbuf *head, struct pbuf *tail); 296 void pbuf_chain(struct pbuf *head, struct pbuf *tail);
|
| A D | netbuf.h | 80 void netbuf_chain (struct netbuf *head, struct netbuf *tail);
|
| /lib/lwip/lwip/contrib/ports/win32/include/arch/ |
| A D | sys_arch.h | 59 u32_t head, tail; member
|
| /lib/efi_loader/ |
| A D | elf_efi.ldsi | 18 *(.text.head)
|
| /lib/mbedtls/external/mbedtls/scripts/ |
| A D | footprint.sh | 92 GIT_HEAD=$( git rev-parse HEAD | head -c 10 )
|
| /lib/mbedtls/external/mbedtls/include/mbedtls/ |
| A D | asn1.h | 622 void mbedtls_asn1_free_named_data_list(mbedtls_asn1_named_data **head);
|
| A D | x509.h | 340 int mbedtls_x509_string_to_names(mbedtls_asn1_named_data **head, const char *name);
|
| /lib/lwip/lwip/contrib/addons/ipv6_static_routing/ |
| A D | README | 42 -- To fetch a pointer to the head of the table, the application can call
|
| /lib/lwip/lwip/src/apps/mqtt/ |
| A D | mqtt.c | 315 struct mqtt_request_t *head = NULL; in mqtt_append_request() local 324 head = iter; in mqtt_append_request() 329 if (head == NULL) { in mqtt_append_request() 332 head->next = r; in mqtt_append_request()
|