/src/lib/libc/locale/ |
newlocale.c | 47 char head[_LOCALENAME_LEN_MAX * (_LC_LAST - 1)], *tail; local in function:__weak_alias 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 in function:_generic_LC_ALL_setlocale 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/sys/arch/ia64/stand/common/ |
ls.c | 146 char *path, *tail; local in function:ls_getdir 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 in function:spsc_queue_push 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 */
|
drm_debugfs_crc.h | 55 * @tail: tail of circular queue 64 int head, tail; member in struct:drm_crtc_crc
|
/src/sys/external/bsd/drm2/linux/ |
linux_list_sort.c | 128 struct list_head head, *tail = &head; local in function:list_sort_merge 137 tail = tail->next = *first; 144 tail->next = (a != NULL? a : b); 176 struct list_head *tail = (a == NULL? b : a); local in function:list_sort_merge_into 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 in function:yankexpr 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 in function:paren_squish 137 result = tail = NULL 172 PLAN *tail; \/* pointer to tail of result plan *\/ local in function:not_squish 230 PLAN *tail; \/* pointer to tail of result plan *\/ local in function:or_squish [all...] |
find.c | 69 PLAN *plan, *tail, *new; local in function:find_formplan 87 for (plan = tail = NULL; *argv;) { 91 tail = plan = new; 93 tail->next = new; 94 tail = new; 106 tail = plan = new; 112 tail->next = new; 113 tail = new; 115 tail->next = new; 116 tail = new [all...] |
/src/sys/arch/hp300/stand/common/ |
dcm.c | 145 unsigned int tail; local in function:dcmputchar 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/lib/libc/stdio/ |
fmemopen.c | 46 char *head, *tail, *cur, *eob; member in struct:fmemopen_cookie 61 if (p->cur == p->tail) 80 if (p->cur >= p->tail) 84 if (p->cur == p->tail - 1) { 110 if (p->cur >= p->tail) 138 if (offset >= (off_t)0 && offset <= p->tail - p->head) { 212 cookie->tail = cookie->head + size;
|
/src/tests/lib/libc/locale/ |
t_wcstod.c | 434 wchar_t *tail; local in function:ATF_TC_BODY 436 (void)printf("Checking wcstod(\"%S\", &tail):\n", t->wcs); 439 d = wcstod(t->wcs, &tail); 445 n = (size_t)(tail - t->wcs);
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_symbolize.cc | 59 SymbolizedStack *tail; member in struct:__tsan::SymbolizedStackBuilder 66 if (ssb->tail) { 67 ssb->tail->next = SymbolizedStack::New(ssb->addr); 68 ssb->tail = ssb->tail->next; 70 ssb->head = ssb->tail = SymbolizedStack::New(ssb->addr); 72 AddressInfo *info = &ssb->tail->info;
|
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_dsb.c | 311 u32 tail; local in function:intel_dsb_commit 325 tail = ALIGN(dsb->free_pos * 4, CACHELINE_BYTES); 326 if (tail > dsb->free_pos * 4) 328 (tail - dsb->free_pos * 4)); 334 DRM_DEBUG_KMS("DSB execution started - head 0x%x, tail 0x%x\n", 335 i915_ggtt_offset(dsb->vma), tail); 336 I915_WRITE(DSB_TAIL(pipe, dsb->id), i915_ggtt_offset(dsb->vma) + tail);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/falcon/ |
nouveau_nvkm_falcon_cmdq.c | 36 u32 tail = nvkm_falcon_rd32(cmdq->qmgr->falcon, cmdq->tail_reg); local in function:nvkm_falcon_cmdq_has_room 41 if (head >= tail) { 51 if (head < tail) 52 free = tail - head - 1; 188 cmdq->tail_reg = func->cmdq.tail + index * func->cmdq.stride;
|
nouveau_nvkm_falcon_msgq.c | 54 u32 tail = nvkm_falcon_rd32(msgq->qmgr->falcon, msgq->tail_reg); local in function:nvkm_falcon_msgq_empty 55 return head == tail; 62 u32 head, tail, available; local in function:nvkm_falcon_msgq_pop 69 tail = msgq->position; 71 available = head - tail; 78 nvkm_falcon_read_dmem(falcon, tail, size, 0, data); 169 msgq->tail_reg = falcon->func->msgq.tail; 170 msgq->offset = nvkm_falcon_rd32(falcon, falcon->func->msgq.tail); 190 msgq->tail_reg = func->msgq.tail + index * func->msgq.stride;
|
/src/usr.sbin/tpctl/ |
data.c | 67 char *res, *tail; local in function:strdup_prune 69 tail = &s[strlen(s) - 1]; 70 while (s <= tail && strchr(" \t", *tail) != NULL) 71 tail--; 73 res = alloc(tail - s + 2); 74 memcpy(res, s, tail - s + 1); 75 res[tail - s + 1] = '\0';
|
/src/sys/arch/vax/include/ |
qevent.h | 96 int tail; /* index into events */ member in struct:_vs_eventqueue
|
/src/sys/dev/qbus/ |
qevent.h | 96 int tail; /* index into events */ member in struct:_vs_eventqueue
|
/src/sys/external/bsd/drm2/dist/drm/ |
drm_debugfs_crc.c | 184 return CIRC_CNT(crc->head, crc->tail, DRM_CRC_ENTRIES_NR); 193 crc->tail = 0; 320 entry = &crc->entries[crc->tail]; 328 crc->tail = (crc->tail + 1) & (DRM_CRC_ENTRIES_NR - 1); 401 int head, tail; local in function:drm_crtc_add_crc_entry 413 tail = crc->tail; 415 if (CIRC_SPACE(head, tail, DRM_CRC_ENTRIES_NR) < 1) {
|
/src/sys/external/bsd/drm2/include/linux/ |
kfifo.h | 138 const size_t tail = meta->kfm_tail; local in function:_kfifo_len 141 return (head <= tail ? tail - head : nbytes + tail - head); 156 const size_t tail = meta->kfm_tail; local in function:_kfifo_out_peek 158 if (head <= tail) { 159 if (size <= tail - head) { 167 } else if (size <= nbytes + tail - head) { 191 const size_t tail = meta->kfm_tail; local in function:_kfifo_out 193 if (head <= tail) { 229 const size_t tail = meta->kfm_tail; local in function:_kfifo_in [all...] |
/src/sys/external/bsd/ena-com/ |
ena_eth_com.h | 103 u16 tail, next_to_comp, cnt; local in function:ena_com_free_desc 106 tail = io_sq->tail; 107 cnt = tail - next_to_comp; 133 u16 tail; local in function:ena_com_write_sq_doorbell 135 tail = io_sq->tail; 137 ena_trc_dbg("write submission queue doorbell for queue: %d tail: %d\n", 138 io_sq->qid, tail); 140 ENA_REG_WRITE32(io_sq->bus, tail, io_sq->db_addr) [all...] |
/src/usr.bin/mklocale/ |
mklocaledb.c | 95 char *tail; local in function:save_as_uint8 99 value = _bcs_strtoul(head, &tail, 0); 100 if (head == tail || value > 0xFF)
|
/src/usr.sbin/rpcbind/ |
rpcb_svc_4.c | 326 rpcb_entry_list_ptr rp, tail; local in function:rpcbproc_getaddrlist_4_local 335 tail = NULL; 402 tail = rp; 403 } else if (tail) { 404 tail->rpcb_entry_next = rp; 405 tail = rp;
|