Searched defs:curr (Results 1 - 8 of 8) sorted by relevance

/vbox/src/libs/zlib-1.2.6/contrib/infback9/
H A Dinftree9.c44 unsigned curr; /* number of index bits for current table */ local
145 filled is at next and has curr index bits. The code being used is huff
147 bits off of the bottom. For codes where len is less than drop + curr,
148 those top drop + curr - len bits are incremented through all values to
198 curr = root; /* current table index bits */
228 fill = 1U << curr;
259 next += 1U << curr;
262 curr = len - drop;
263 left = (int)(1 << curr);
264 while (curr
[all...]
/vbox/src/libs/zlib-1.2.6/
H A Dinftrees.c44 unsigned curr; /* number of index bits for current table */ local
151 filled is at next and has curr index bits. The code being used is huff
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
204 curr = root; /* current table index bits */
234 fill = 1U << curr;
266 next += min; /* here min is 1 << curr */
269 curr = len - drop;
270 left = (int)(1 << curr);
271 while (curr
[all...]
H A Ddeflate.c1502 ulg curr = s->strstart + (ulg)(s->lookahead); local
1505 if (s->high_water < curr) {
1509 init = s->window_size - curr;
1512 zmemzero(s->window + curr, (unsigned)init);
1513 s->high_water = curr + init;
1515 else if (s->high_water < (ulg)curr + WIN_INIT) {
1520 init = (ulg)curr + WIN_INIT - s->high_water;
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A Dne2k_isa.c274 unsigned char rstat, curr, next; local
285 curr = inb(eth_nic_base+D8390_P1_CURR);
287 if (curr >= eth_memsize) curr=eth_rx_start;
288 if (curr == next) return(0);
H A Dns8390.c505 unsigned char rstat, curr, next; local
523 curr = inb(eth_nic_base+D8390_P1_CURR);
525 if (curr >= eth_memsize) curr=eth_rx_start;
526 if (curr == next) return(0);
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_db.c907 struct server *head, *curr, *next; local
909 head = curr = lnk->server;
911 next = curr->next;
912 free(curr);
913 } while ((curr = next) != head);
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsLocalFileOS2.cpp1549 BYTE *curr; local
1568 curr = DBCSInfo;
1570 while(( *curr != 0 ) && ( *(curr+1) != 0)) {
1571 if(( c >= *curr ) && ( c <= *(curr+1) )) {
1575 curr+=2;
/vbox/src/VBox/Devices/Storage/
H A DDevATA.cpp789 uint8_t curr; local
794 curr = pCtl->AsyncIOReqTail;
797 if (curr == pCtl->AsyncIOReqHead)
799 switch (pCtl->aAsyncIORequests[curr].ReqType)
802 LogRel(("new transfer request, iIf=%d iBeginTransfer=%d iSourceSink=%d cbTotalTransfer=%d uTxDir=%d\n", pCtl->aAsyncIORequests[curr].u.t.iIf, pCtl->aAsyncIORequests[curr].u.t.iBeginTransfer, pCtl->aAsyncIORequests[curr].u.t.iSourceSink, pCtl->aAsyncIORequests[curr].u.t.cbTotalTransfer, pCtl->aAsyncIORequests[curr].u.t.uTxDir));
817 LogRel(("abort request, iIf=%d fResetDrive=%d\n", pCtl->aAsyncIORequests[curr]
[all...]

Completed in 432 milliseconds