Searched refs:outpos (Results 1 - 5 of 5) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jffs2/
H A Dcompr_rtime.c37 int outpos = 0; local
42 while (pos < (*sourcelen) && outpos <= (*dstlen)-2) {
48 cpage_out[outpos++] = data_in[pos++];
58 cpage_out[outpos++] = runlen;
61 if (outpos >= pos) {
68 *dstlen = outpos;
79 int outpos = 0; local
84 while (outpos<destlen) {
90 cpage_out[outpos++] = value; /* first the verbatim copied byte */
94 positions[value]=outpos;
[all...]
H A Dcompr_rubin.c264 int outpos = 0; local
277 if (outpos > pos) {
285 outpos = (pushedbits(&rs.pp)+7)/8;
287 if (outpos >= pos)
290 *dstlen = outpos;
361 int outpos = 0; local
367 while (outpos < destlen) {
368 page_out[outpos++] = in_byte(&rs);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/archival/libunarchive/
H A Ddecompress_uncompress.c85 int outpos; local
133 outpos = 0;
198 outbuf[outpos++] = (unsigned char) finchar;
252 if (outpos + i >= OBUFSIZ) {
254 if (i > OBUFSIZ - outpos) {
255 i = OBUFSIZ - outpos;
259 memcpy(outbuf + outpos, stackp, i);
260 outpos += i;
263 if (outpos >= OBUFSIZ) {
264 full_write(fd_out, outbuf, outpos);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wan/
H A Dsbni.c80 unsigned int inppos, outpos; /* positions in rx/tx buffers */ member in struct:net_local
688 unsigned len = min_t(unsigned int, skb->len - nl->outpos, nl->framelen);
690 outsb( dev->base_addr + DAT, skb->data + nl->outpos, len );
691 *crc_p = calc_crc32( *crc_p, skb->data + nl->outpos, len );
771 nl->outpos = 0;
786 nl->outpos += nl->framelen;
791 nl->tx_buf_p->len - nl->outpos);
853 nl->outpos = 0;
893 nl->outpos = 0;
917 if( nl->outpos
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Dunistr.c669 ntfschar *outpos; local
682 outpos = *outs;
689 *outpos++ = cpu_to_le16(wc);
692 *outpos++ = cpu_to_le16((wc >> 10) + 0xd800);
693 *outpos++ = cpu_to_le16((wc & 0x3ff) + 0xdc00);
700 ret = --outpos - *outs;

Completed in 99 milliseconds