| /src/external/mpl/bind/dist/lib/isc/ |
| job_p.h | 36 struct cds_wfcq_tail tail; member in struct:isc_jobqueue
|
| /src/lib/libc/locale/ |
| newlocale.c | 47 char head[_LOCALENAME_LEN_MAX * (_LC_LAST - 1)], *tail; local 65 tail = __UNCONST(strchr(tokens[0], '/')); 66 if (tail == NULL) { 75 *tail++ = '\0'; 83 *tail++ = '\0'; 84 tokens[i] = (const char *)tail; 85 tail = __UNCONST(strchr(tokens[i], '/')); 86 if (tail == NULL) { 91 *tail++ = '\0'; 92 tokens[howmany] = tail; [all...] |
| generic_lc_all.c | 58 char head[_LOCALENAME_LEN_MAX * (_LC_LAST - 1)], *tail; local 68 tail = __UNCONST(strchr(tokens[1], '/')); 69 if (tail == NULL) { 73 *tail++ = '\0'; 75 tokens[i] = (const char *)tail; 76 tail = __UNCONST(strchr(tokens[i], '/')); 77 if (tail == NULL) 79 *tail++ = '\0'; 81 tokens[_LC_LAST - 1] = (const char *)tail; 82 tail = __UNCONST(strchr(tokens[i], '/')) [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/com_err/ |
| compile_et.h | 63 struct error_code *next, **tail; member in struct:error_code 72 (L)->tail = &(V)->next; \ 75 *(L)->tail = (V); \ 76 (L)->tail = &(V)->next; \
|
| /src/external/bsd/pam-u2f/dist/ |
| expand.c | 41 uint8_t *tail, *head; local 45 if (str == NULL || (tail = head = malloc(size)) == NULL) { 66 free(tail); 69 return (char *) tail;
|
| /src/external/gpl3/binutils/dist/gprof/ |
| search_list.h | 43 struct search_list_elem *tail; member in struct:__anon10170
|
| /src/external/gpl3/binutils.old/dist/gprof/ |
| search_list.h | 43 struct search_list_elem *tail; member in struct:__anon11643
|
| /src/external/gpl3/gcc/dist/libobjc/objc-private/ |
| objc-list.h | 32 struct objc_list *tail; member in struct:objc_list 35 /* Return a cons cell produced from (head . tail). */ 37 list_cons (void* head, struct objc_list* tail) 43 cell->tail = tail; 52 if ((*list)->tail) 55 struct objc_list* tail = (*list)->tail; local 58 *(*list) = *tail; 61 objc_free (tail); [all...] |
| /src/external/gpl3/gcc.old/dist/libobjc/objc-private/ |
| objc-list.h | 32 struct objc_list *tail; member in struct:objc_list 35 /* Return a cons cell produced from (head . tail). */ 37 list_cons (void* head, struct objc_list* tail) 43 cell->tail = tail; 52 if ((*list)->tail) 55 struct objc_list* tail = (*list)->tail; local 58 *(*list) = *tail; 61 objc_free (tail); [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.reverse/ |
| insn-reverse.c | 68 char *tail; local 69 test_nr = strtol (argv[1], &tail, 10); 70 if (*tail != '\0')
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.reverse/ |
| insn-reverse.c | 68 char *tail; local 69 test_nr = strtol (argv[1], &tail, 10); 70 if (*tail != '\0')
|
| /src/external/mpl/dhcp/dist/includes/omapip/ |
| buffer.h | 33 the tail never catches up to the head, there's room in the buffer for 36 - If the tail and the head are equal, the buffer is empty. 38 - If the tail is less than the head, the contents of the buffer 40 the bytes between the beginning of the buffer and the tail, not 41 including the byte addressed by the tail. 43 - If the tail is greater than the head, then the buffer contains 45 ending with the byte before the byte addressed by the tail. 47 There will always be at least one byte of waste, because the tail can't 54 u_int16_t head, tail; /* Buffers are organized in a ring. */ member in struct:_omapi_buffer 60 ((x) -> tail > (x) -> head [all...] |
| /src/sys/arch/hp300/stand/common/ |
| dcm.c | 145 unsigned int tail; local 150 tail = pp->t_tail & TX_MASK; 152 while (tail != (pp->t_head & TX_MASK) && --timo) 154 dcm->dcm_tfifos[3-port][tail].data_char = c; 155 pp->t_tail = tail = (tail + 1) & TX_MASK; 161 while (tail != (pp->t_head & TX_MASK) && --timo)
|
| /src/sys/arch/ia64/stand/common/ |
| ls.c | 146 char *path, *tail; local 148 tail = NULL;
|
| /src/sys/dev/pci/cxgb/ |
| cxgb_mbuf.h | 37 struct mbuf *tail; member in struct:mbuf_head 45 l->head = l->tail = NULL; 65 l->tail->m_nextpkt = m; 66 l->tail = m; 76 if (m == l->tail) 77 l->tail = NULL;
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
| intel_ring_types.h | 45 u32 tail; /* updated on submission, used for RING_TAIL */ member in struct:intel_ring
|
| /src/sys/external/bsd/drm2/dist/include/drm/ |
| spsc_queue.h | 45 atomic_long_t tail; member in struct:spsc_queue 53 atomic_long_set(&queue->tail, (long)&queue->head); 69 struct spsc_node **tail; local 75 tail = (struct spsc_node **)atomic_long_xchg(&queue->tail, (long)&node->next); 76 WRITE_ONCE(*tail, node); 87 return tail == &queue->head; 109 if (atomic_long_cmpxchg(&queue->tail, 111 /* Updating tail failed wait for new next to appear */
|
| /src/sys/external/bsd/drm2/linux/ |
| linux_list_sort.c | 128 struct list_head head, *tail = &head; local 137 tail = tail->next = *first; 144 tail->next = (a != NULL? a : b); 176 struct list_head *tail = (a == NULL? b : a); local 177 while (tail != NULL) { 178 prev->next = tail; 179 tail->prev = prev; 181 tail = tail->next [all...] |
| /src/usr.bin/find/ |
| operator.c | 82 PLAN *tail; /* pointer to tail of subplan */ local 96 for (tail = subplan = NULL;;) { 115 tail = subplan = next; 117 tail->next = next; 118 tail = next; 120 tail->next = NULL; 134 PLAN *tail; /* pointer to tail of result plan */ local 137 result = tail = NULL 172 PLAN *tail; \/* pointer to tail of result plan *\/ local 230 PLAN *tail; \/* pointer to tail of result plan *\/ local [all...] |
| /src/usr.bin/msgc/ |
| msgdb.c | 55 static struct id_rec *head = NULL, *tail = NULL; variable in typeref:struct: 69 if (tail == NULL) 70 head = tail = tmp; 72 tail->next = tmp; 73 tail = tmp;
|
| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| quic_sf_list.h | 43 STREAM_FRAME *head, *tail; member in struct:sframe_list_st 44 /* Is the tail frame final. */ 112 * fin is set to 1 if the head frame is also the tail frame.
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_rc4_hmac_md5.h | 20 MD5_CTX head, tail, md; member in struct:prov_rc4_hmac_md5_ctx_st
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_rc4_hmac_md5.h | 20 MD5_CTX head, tail, md; member in struct:prov_rc4_hmac_md5_ctx_st
|
| /src/external/bsd/nvi/dist/common/ |
| util.c | 109 * tail -- 110 * Return tail of a path. 112 * PUBLIC: const char *tail __P((const char *)); 115 tail(const char *path) function
|
| /src/external/gpl2/groff/dist/src/devices/grohtml/ |
| html.h | 48 word *tail; member in class:word_list
|