/titanic_50/usr/src/lib/libslp/clib/ |
H A D | slp_queue.c | 119 slp_queue_entry_t *qe; in slp_enqueue() local 122 if ((qe = malloc(sizeof (*qe))) == NULL) { in slp_enqueue() 128 qe->msg = msg; in slp_enqueue() 129 qe->next = NULL; in slp_enqueue() 131 q->tail->next = qe; in slp_enqueue() 132 q->tail = qe; in slp_enqueue() 134 q->head = q->tail = qe; in slp_enqueue() 148 slp_queue_entry_t *qe; in slp_enqueue_at_head() local 151 if ((qe = malloc(sizeof (*qe))) == NULL) { in slp_enqueue_at_head() 157 qe->msg = msg; in slp_enqueue_at_head() [all …]
|
/titanic_50/usr/src/uts/common/io/virtio/ |
H A D | virtio.c | 579 struct vq_entry *qe; in vq_alloc_entry() local 586 qe = list_remove_head(&vq->vq_freelist); in vq_alloc_entry() 593 qe->qe_next = NULL; in vq_alloc_entry() 594 qe->qe_indirect_next = 0; in vq_alloc_entry() 595 (void) memset(qe->qe_desc, 0, sizeof (struct vring_desc)); in vq_alloc_entry() 597 return (qe); in vq_alloc_entry() 601 vq_free_entry(struct virtqueue *vq, struct vq_entry *qe) in vq_free_entry() argument 605 list_insert_head(&vq->vq_freelist, qe); in vq_free_entry() 638 virtio_ve_set(struct vq_entry *qe, uint64_t paddr, uint32_t len, in virtio_ve_set() argument 641 virtio_ve_set_desc(qe->qe_desc, paddr, len, write); in virtio_ve_set() [all …]
|
H A D | virtiovar.h | 186 void vq_free_entry(struct virtqueue *vq, struct vq_entry *qe); 188 unsigned int virtio_ve_indirect_available(struct vq_entry *qe); 193 void virtio_ve_add_cookie(struct vq_entry *qe, ddi_dma_handle_t dma_handle, 195 void virtio_ve_add_indirect_buf(struct vq_entry *qe, uint64_t paddr, 197 void virtio_ve_set(struct vq_entry *qe, uint64_t paddr, uint32_t len, 200 void virtio_push_chain(struct vq_entry *qe, boolean_t sync);
|
/titanic_50/usr/src/lib/libast/common/string/ |
H A D | fmtesc.c | 44 fmtquote(const char* as, const char* qb, const char* qe, size_t n, int flags) in fmtquote() argument 61 if (qe) in fmtquote() 62 c += strlen((char*)qe); in fmtquote() 146 else if (qe && strchr(qe, c)) in fmtquote() 200 if (qe && (escaped || spaced)) in fmtquote() 201 while (*b = *qe++) in fmtquote()
|
/titanic_50/usr/src/uts/common/io/mr_sas/ |
H A D | ld_pd_map.c | 154 MR_QUAD_ELEMENT *qe; in MR_GetSpanBlock() local 160 qe = &pSpanBlock->block_span_info.quads[j]; in MR_GetSpanBlock() 161 if (qe->diff == 0) { in MR_GetSpanBlock() 165 if (qe->logStart <= row && row <= qe->logEnd && in MR_GetSpanBlock() 166 (((row - qe->logStart) % qe->diff)) == 0) { in MR_GetSpanBlock() 169 blk = ((row - qe->logStart) / in MR_GetSpanBlock() 170 (qe->diff)); in MR_GetSpanBlock() 172 blk = (blk + qe->offsetInSpan) << in MR_GetSpanBlock()
|
/titanic_50/usr/src/lib/libast/common/misc/ |
H A D | magic.c | 1913 int qe = 0; in load() local 1927 if (!qe) in load() 1928 qe = '}'; in load() 1929 if (qe == '}') in load() 1933 if (!qe) in load() 1934 qe = ')'; in load() 1935 if (qe == ')') in load() 1939 if (!qe) in load() 1940 qe = ']'; in load() 1941 if (qe == ']') in load() [all …]
|
/titanic_50/usr/src/lib/libm/common/complex/ |
H A D | k_atan2l.c | 523 static const long double qe[] = { variable 664 mx_polyl(zz, qe, ee, 2); in mx_atanl() 707 mx_polyl(zz, qe, ee, 2); in mx_atanl()
|
/titanic_50/usr/src/cmd/svc/startd/ |
H A D | restarter.c | 1960 restarter_instance_qentry_t *qe; in restarter_queue_event() local 1966 qe = startd_zalloc(sizeof (restarter_instance_qentry_t)); in restarter_queue_event() 1967 qe->riq_type = e->rpe_type; in restarter_queue_event() 1968 qe->riq_reason = e->rpe_reason; in restarter_queue_event() 1970 uu_list_node_init(qe, &qe->riq_link, restarter_queue_pool); in restarter_queue_event() 1971 r = uu_list_insert_before(ri->ri_queue, NULL, qe); in restarter_queue_event()
|
/titanic_50/usr/src/lib/libpp/common/ |
H A D | ppproto.c | 579 char* qe = 0; in lex() local 731 if (c == '"' && qe) in lex() 733 …for (n = 0, t = qe + 1; t < op && (*t == ' ' || *t == '\t' || *t == '\n' && ++n || *t >= 'A' && *t… in lex() 736 op = qe; in lex() 737 qe = 0; in lex() 754 qe = (c == '"') ? op : (char*)0; in lex()
|