Searched refs:prod (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/Runtime/common/math/gcc/
H A Dmuldi3.c110 union uu u, v, low, prod; local
138 prod.q = __lmulq(u0, v0);
163 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] +
165 prod.ul[L] = low.ul[L];
167 return (negall ? -prod.q : prod.q);
196 union uu prod; local
222 /* prod = (high << 2N) + (high << N); */
226 /* if (neg) prod -= mid << N; else prod
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/grammar/
H A Dgrammar.h68 returns 1 on success, the <prod> points to newly allocated buffer with production and <size>
70 call grammar_alloc_free to free the memory block pointed by <prod>
72 int grammar_check (grammar id, const byte *text, byte **prod, unsigned int *size);
80 int grammar_fast_check (grammar id, const byte *text, byte **prod, unsigned int *size,
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A Dmyson.c227 ring->prod = 0;
243 while ( ( myson->rx.prod - myson->rx.cons ) < MYSON_NUM_RX_DESC ) {
262 rx_idx = ( myson->rx.prod++ % MYSON_NUM_RX_DESC );
408 if ( ( myson->tx.prod - myson->tx.cons ) >= MYSON_NUM_TX_DESC ) {
413 tx_idx = ( myson->tx.prod++ % MYSON_NUM_TX_DESC );
448 while ( myson->tx.cons != myson->tx.prod ) {
487 while ( myson->rx.cons != myson->rx.prod ) {
H A Dnatsemi.c490 ring->prod = 0;
506 while ( ( natsemi->rx.prod - natsemi->rx.cons ) < NATSEMI_NUM_RX_DESC ){
525 rx_idx = ( natsemi->rx.prod++ % NATSEMI_NUM_RX_DESC );
664 if ( ( natsemi->tx.prod - natsemi->tx.cons ) >= NATSEMI_NUM_TX_DESC ) {
669 tx_idx = ( natsemi->tx.prod++ % NATSEMI_NUM_TX_DESC );
704 while ( natsemi->tx.cons != natsemi->tx.prod ) {
742 while ( natsemi->rx.cons != natsemi->rx.prod ) {
H A Dintel.c431 ring->prod = 0;
447 while ( ( intel->rx.prod - intel->rx.cons ) < INTEL_RX_FILL ) {
457 rx_idx = ( intel->rx.prod++ % INTEL_NUM_RX_DESC );
458 rx_tail = ( intel->rx.prod % INTEL_NUM_RX_DESC );
587 if ( ( intel->tx.prod - intel->tx.cons ) >= INTEL_NUM_TX_DESC ) {
591 tx_idx = ( intel->tx.prod++ % INTEL_NUM_TX_DESC );
592 tx_tail = ( intel->tx.prod % INTEL_NUM_TX_DESC );
625 while ( intel->tx.cons != intel->tx.prod ) {
656 while ( intel->rx.cons != intel->rx.prod ) {
H A Dintel.h206 unsigned int prod; member in struct:intel_ring
H A Dmyson.h143 unsigned int prod; member in struct:myson_ring
H A Drealtek.c453 ring->prod = 0;
473 while ( ( rtl->rx.prod - rtl->rx.cons ) < RTL_NUM_RX_DESC ) {
483 rx_idx = ( rtl->rx.prod++ % RTL_NUM_RX_DESC );
607 if ( ( rtl->tx.prod - rtl->tx.cons ) >= RTL_NUM_TX_DESC ) {
611 tx_idx = ( rtl->tx.prod++ % RTL_NUM_TX_DESC );
669 while ( rtl->tx.cons != rtl->tx.prod ) {
770 while ( rtl->rx.cons != rtl->rx.prod ) {
H A Dnatsemi.h258 unsigned int prod; member in struct:natsemi_ring
H A Drealtek.h217 unsigned int prod; member in struct:realtek_ring
H A Dbnx2.c2041 u16 prod, ring_prod; local
2047 ring_prod = prod = bp->rx_prod = 0;
2078 prod = NEXT_RX_BD(prod);
2079 ring_prod = RX_RING_IDX(prod);
2081 bp->rx_prod = prod;
2365 u16 prod, ring_prod; local
2369 prod = bp->tx_prod;
2370 ring_prod = TX_RING_IDX(prod);
2376 while((hw_cons != prod)
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/infiniband/
H A Dqib7322.c57 unsigned int prod; member in struct:qib7322_send_buffers
71 unsigned int prod; member in struct:qib7322_send_work_queue
510 used = ( send_bufs->cons - send_bufs->prod );
536 send_bufs->avail[ send_bufs->prod++ & mask ] = send_buf;
610 qib7322_wq->prod = 0;
818 DBGC ( qib7322, "QIB7322 %p port %d QPN %ld CTX %d hdrs [%lx,%lx) prod "
1206 assert ( wq->iobufs[qib7322_wq->prod] == NULL );
1207 wq->iobufs[qib7322_wq->prod] = iobuf;
1208 qib7322_wq->used[qib7322_wq->prod] = send_buf;
1246 qib7322, qp->qpn, send_buf, qib7322_wq->prod,
[all...]
H A Dlinda.c47 unsigned int prod; member in struct:linda_send_work_queue
487 linda_wq->prod = 0;
660 DBGC ( linda, "Linda %p QPN %ld CTX %d hdrs [%lx,%lx) prod %lx\n",
964 assert ( wq->iobufs[linda_wq->prod] == NULL );
965 wq->iobufs[linda_wq->prod] = iobuf;
966 linda_wq->send_buf[linda_wq->prod] = send_buf;
1003 linda, qp->qpn, send_buf, linda_wq->prod,
1007 linda_wq->prod = ( ( linda_wq->prod + 1 ) & ( wq->num_wqes - 1 ) );
/vbox/src/libs/libxml2-2.6.31/
H A Dxmlreader.c5620 unsigned long cons, tmp, tmp2, prod;
5634 prod = 0;
5639 printf("%ld %ld\n", cons, prod);
5640 ret = xmlBase64Decode(&input[cons], &tmp2, &output2[prod], &tmp);
5642 prod += tmp;
5643 printf("%ld %ld\n", cons, prod);
5646 printf("ret: %d, cons: %ld , prod: %ld, output: '%s'\n", ret, cons, prod, output2);
5652 prod = 0;
5654 tmp = 100 - prod;
[all...]

Completed in 101 milliseconds