Searched refs:rptr (Results 1 - 25 of 75) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/pppdump/
H A Ddeflate.c239 u_char *rptr, *wptr; local
243 rptr = mi;
244 if (*rptr == 0)
245 ++rptr;
246 ++rptr;
249 seq = (rptr[0] << 8) + rptr[1];
250 rptr += 2;
265 state->strm.next_in = rptr;
266 state->strm.avail_in = mi + inlen - rptr;
311 u_char *rptr; local
[all...]
H A Dbsd-comp.c442 u_char *rptr; local
445 rptr = dmsg;
446 ent = rptr[0]; /* get the protocol */
448 ++rptr;
450 ent = rptr[0];
457 ++rptr;
458 slen = dmsg + mlen - rptr;
461 c = *rptr++;
561 u_char *p, *rptr, *wptr; local
565 rptr
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/pppdump/
H A Ddeflate.c229 u_char *rptr, *wptr; local
233 rptr = mi;
234 if (*rptr == 0)
235 ++rptr;
236 ++rptr;
239 seq = (rptr[0] << 8) + rptr[1];
240 rptr += 2;
255 state->strm.next_in = rptr;
256 state->strm.avail_in = mi + inlen - rptr;
301 u_char *rptr; local
[all...]
H A Dbsd-comp.c440 u_char *rptr; local
443 rptr = dmsg;
444 ent = rptr[0]; /* get the protocol */
446 ++rptr;
448 ent = rptr[0];
455 ++rptr;
456 slen = dmsg + mlen - rptr;
459 c = *rptr++;
559 u_char *p, *rptr, *wptr; local
563 rptr
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavutil/
H A Dfifo.h33 uint8_t *rptr, *wptr, *end; member in struct:AVFifoBuffer
126 uint8_t *ptr = f->rptr + offs;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/include/asm/
H A Dm68360_pram.h89 unsigned long rptr; /* Rx internal data pointer */ member in struct:hdlc_pram
149 unsigned long rptr; /* Rx internal data pointer */ member in struct:uart_pram
201 unsigned long rptr; /* Rx internal data pointer */ member in struct:bisync_pram
252 unsigned long rptr; /* Rx internal data pointer */ member in struct:spi_pram
270 unsigned long rptr; /* Rx internal data pointer */ member in struct:smc_uart_pram
294 unsigned long rptr; /* Rx internal data pointer */ member in struct:smc_trnsp_pram
323 unsigned long rptr; /* Rx internal data pointer */ member in struct:ethernet_pram
400 unsigned long rptr; /* Rx internal data pointer */ member in struct:transparent_pram
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dfifo.c73 f->wptr = f->rptr = f->buffer;
155 int len = FFMIN(f->end - f->rptr, buf_size);
157 func(dest, f->rptr, len);
159 memcpy(dest, f->rptr, len);
173 f->rptr += size;
174 if (f->rptr >= f->end)
175 f->rptr -= f->end - f->buffer;
H A Dfifo.h33 uint8_t *rptr, *wptr, *end; member in struct:AVFifoBuffer
150 uint8_t *ptr = f->rptr + offs;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dfifo.c48 f->wptr = f->rptr = f->buffer;
109 int len = FFMIN(f->end - f->rptr, buf_size);
110 if(func) func(dest, f->rptr, len);
112 memcpy(dest, f->rptr, len);
125 f->rptr += size;
126 if (f->rptr >= f->end)
127 f->rptr -= f->end - f->buffer;
H A Dfifo.h32 uint8_t *rptr, *wptr, *end; member in struct:AVFifoBuffer
122 uint8_t *ptr = f->rptr + offs;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/modules/
H A Ddeflate.c303 u_char *rptr, *wptr; local
311 rptr = mp->b_rptr;
312 if (rptr + PPP_HDRLEN > mp->b_wptr) {
315 rptr = mp->b_rptr;
317 proto = PPP_PROTOCOL(rptr);
345 wptr[0] = PPP_ADDRESS(rptr);
346 wptr[1] = PPP_CONTROL(rptr);
361 rptr += (proto > 0xff)? 2: 3; /* skip 1st proto byte if 0 */
362 state->strm.next_in = rptr;
363 state->strm.avail_in = mp->b_wptr - rptr;
572 u_char *rptr, *wptr; local
713 u_char *rptr; local
[all...]
H A Dbsd-comp.c509 u_char *rptr, *wptr; local
545 rptr = mp->b_rptr;
546 if (rptr + PPP_HDRLEN > mp->b_wptr) {
549 rptr = mp->b_rptr;
551 ent = PPP_PROTOCOL(rptr); /* get the protocol */
589 wptr[0] = PPP_ADDRESS(rptr);
590 wptr[1] = PPP_CONTROL(rptr);
598 rptr += PPP_HDRLEN;
600 slen = mp->b_wptr - rptr;
607 rptr
734 u_char *rptr; local
862 u_char *p, *rptr, *wptr; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/modules/
H A Ddeflate.c291 u_char *rptr, *wptr; local
299 rptr = mp->b_rptr;
300 if (rptr + PPP_HDRLEN > mp->b_wptr) {
303 rptr = mp->b_rptr;
305 proto = PPP_PROTOCOL(rptr);
333 wptr[0] = PPP_ADDRESS(rptr);
334 wptr[1] = PPP_CONTROL(rptr);
349 rptr += (proto > 0xff)? 2: 3; /* skip 1st proto byte if 0 */
350 state->strm.next_in = rptr;
351 state->strm.avail_in = mp->b_wptr - rptr;
560 u_char *rptr, *wptr; local
701 u_char *rptr; local
[all...]
H A Dbsd-comp.c505 u_char *rptr, *wptr; local
541 rptr = mp->b_rptr;
542 if (rptr + PPP_HDRLEN > mp->b_wptr) {
545 rptr = mp->b_rptr;
547 ent = PPP_PROTOCOL(rptr); /* get the protocol */
585 wptr[0] = PPP_ADDRESS(rptr);
586 wptr[1] = PPP_CONTROL(rptr);
594 rptr += PPP_HDRLEN;
596 slen = mp->b_wptr - rptr;
603 rptr
730 u_char *rptr; local
858 u_char *p, *rptr, *wptr; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/
H A Dmaxinefb.c77 unsigned char *rptr; local
80 rptr = regs + 0x80000 + (regno << 4);
81 j = *((volatile unsigned short *) rptr);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/riptide/
H A Driptide.c814 union cmdret rptr = CMDRET_ZERO; local
818 SEND_RMEM(cif, 0x02, addr, &rptr);
819 rptr.retlongs[0] &= (~mask);
823 SEND_WMEM(cif, 0x02, (rptr.retlongs[0] | data));
824 SEND_RMEM(cif, 0x02, addr, &rptr);
825 if ((rptr.retlongs[0] & data) == data) {
829 rptr.retlongs[0] &= ~mask;
940 union cmdret rptr = CMDRET_ZERO; local
946 SEND_RDGV(cif, num, num, &rptr);
947 if (rptr
974 union cmdret rptr = CMDRET_ZERO; local
991 union cmdret rptr = CMDRET_ZERO; local
1043 union cmdret rptr = CMDRET_ZERO; local
1076 union cmdret rptr = CMDRET_ZERO; local
1260 union cmdret rptr = CMDRET_ZERO; local
1370 union cmdret rptr = CMDRET_ZERO; local
1403 union cmdret rptr = CMDRET_ZERO; local
1758 union cmdret rptr = CMDRET_ZERO; local
1778 union cmdret rptr = CMDRET_ZERO; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/bn/asm/
H A Dx86_64-mont.pl761 my $rptr="%rdi"; # const BN_ULONG *rptr,
768 my ($i,$j,$tptr)=("%rbp","%rcx",$rptr);
839 movq $rptr,%xmm1 # save $rptr
856 movq %xmm1,$rptr
872 movq %xmm1,$rptr
888 mov %r12,8*0($rptr)
889 mov %r13,8*1($rptr)
890 mov %r14,8*2($rptr)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/bn/asm/
H A Dx86_64-mont.pl761 my $rptr="%rdi"; # const BN_ULONG *rptr,
768 my ($i,$j,$tptr)=("%rbp","%rcx",$rptr);
839 movq $rptr,%xmm1 # save $rptr
856 movq %xmm1,$rptr
872 movq %xmm1,$rptr
888 mov %r12,8*0($rptr)
889 mov %r13,8*1($rptr)
890 mov %r14,8*2($rptr)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/lirc/
H A Dlirc_parallel.c86 unsigned int rptr; variable
223 if (nwptr == rptr) {
344 if (rptr != wptr) {
345 if (copy_to_user(buf+count, (char *) &rbuf[rptr],
350 rptr = (rptr + 1) & (RBUF_SIZE - 1);
454 if (rptr != wptr)
519 rptr = 0;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/
H A Dppp_deflate.c70 static int z_compress(void *state, unsigned char *rptr,
201 * @rptr: uncompressed packet (input)
209 static int z_compress(void *arg, unsigned char *rptr, unsigned char *obuf, argument
219 proto = PPP_PROTOCOL(rptr);
233 wptr[0] = PPP_ADDRESS(rptr);
234 wptr[1] = PPP_CONTROL(rptr);
247 rptr += off;
248 state->strm.next_in = rptr;
H A Dtehuti.c118 f->rptr = 0;
1187 size = f->m.wptr - f->m.rptr;
1193 rxdd = (struct rxd_desc *)(f->m.va + f->m.rptr);
1208 f->m.rptr += tmp_len;
1210 tmp_len = f->m.rptr - f->m.memsz;
1212 f->m.rptr = tmp_len;
1214 DBG("wrapped desc rptr=%d tmp_len=%d\n",
1215 f->m.rptr, tmp_len);
1267 WRITE_REG(priv, f->m.reg_RPTR, f->m.rptr & TXF_WPTR_WR_PTR);
1342 int taken = db->wptr - db->rptr;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/infiniband/hw/cxgb3/
H A Dcxio_hal.c76 u32 rptr; local
92 if (Q_PTR2IDX((cq->rptr), cq->size_log2) != ret) {
95 rptr = cq->rptr;
98 * Keep the generation correct by bumping rptr until it
101 while (Q_PTR2IDX((rptr+1), cq->size_log2) != ret)
102 rptr++;
105 * Now rptr is the index for the (last) cqe that was
109 cqe = cq->queue + Q_PTR2IDX(rptr, cq->size_log2);
110 while (!CQ_VLD_ENTRY(rptr, c
1118 u32 rptr = wq->oldest_read - wq->sq + 1; local
[all...]
H A Dcxio_wr.h46 #define Q_EMPTY(rptr,wptr) ((rptr)==(wptr))
47 #define Q_FULL(rptr,wptr,size_log2) ( (((wptr)-(rptr))>>(size_log2)) && \
48 ((rptr)!=(wptr)) )
50 #define Q_FREECNT(rptr,wptr,size_log2) ((1UL<<size_log2)-((wptr)-(rptr)))
51 #define Q_COUNT(rptr,wptr) ((wptr)-(rptr))
717 u32 rptr; member in struct:t3_cq
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/alsa-lib-1.0.26/src/pcm/
H A Dpcm_meter.c56 snd_pcm_uframes_t rptr; member in struct:_snd_pcm_meter
103 snd_pcm_uframes_t rptr, old_rptr; local
108 rptr = *pcm->hw.ptr;
109 old_rptr = meter->rptr;
110 meter->rptr = rptr;
111 frames = rptr - old_rptr;
127 snd_pcm_uframes_t rptr, old_rptr; local
134 rptr = *pcm->hw.ptr;
135 old_rptr = meter->rptr;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/
H A Dchvalid.c160 * @rptr: pointer to range to be used to validate
168 xmlCharInRange (unsigned int val, const xmlChRangeGroup *rptr) { argument
173 if (rptr == NULL) return(0);
175 if (rptr->nbShortRange == 0)
178 high = rptr->nbShortRange - 1;
179 sptr = rptr->shortRange;
193 if (rptr->nbLongRange == 0) {
197 high = rptr->nbLongRange - 1;
198 lptr = rptr->longRange;

Completed in 188 milliseconds

123