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

12

/freebsd-11-stable/sys/dev/sfxge/common/
H A Dsiena_sram.c89 unsigned int rptr; local
114 for (wptr = 0, rptr = 0; wptr < rows; ++wptr) {
118 if ((wptr - rptr) < 64 && wptr < rows - 1)
123 for (; rptr <= wptr; ++rptr) {
124 func(rptr, B_FALSE, &qword);
125 EFX_BAR_TBL_READQ(enp, FR_AZ_BUF_HALF_TBL, rptr,
136 for (wptr = 0, rptr = 0; wptr < rows; ++wptr) {
140 if ((wptr - rptr) < 64 && wptr < rows - 1)
145 for (; rptr <
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Drandom.c174 (MAX_TYPES * (rptr - state)) + TYPE_3 == TYPE_3. */
194 (The position of the rear pointer, rptr, is really 0 (as explained above
199 static long int *rptr = &randtbl[1]; variable
240 rptr = &state[0];
266 state[-1] = (MAX_TYPES * (rptr - state)) + rand_type;
310 state[-1] = (MAX_TYPES * (rptr - state)) + rand_type;
336 state[-1] = (MAX_TYPES * (rptr - state)) + rand_type;
358 rptr = &state[rear];
390 *fptr += *rptr;
397 ++rptr;
[all...]
/freebsd-11-stable/contrib/binutils/libiberty/
H A Drandom.c174 (MAX_TYPES * (rptr - state)) + TYPE_3 == TYPE_3. */
194 (The position of the rear pointer, rptr, is really 0 (as explained above
199 static long int *rptr = &randtbl[1]; variable
240 rptr = &state[0];
266 state[-1] = (MAX_TYPES * (rptr - state)) + rand_type;
310 state[-1] = (MAX_TYPES * (rptr - state)) + rand_type;
336 state[-1] = (MAX_TYPES * (rptr - state)) + rand_type;
358 rptr = &state[rear];
390 *fptr += *rptr;
397 ++rptr;
[all...]
/freebsd-11-stable/lib/libc/stdlib/
H A Drandom.c156 * MAX_TYPES * (rptr - state) + TYPE_3 == TYPE_3.
170 * fptr and rptr are two pointers into the state info, a front and a rear
179 * (The position of the rear pointer, rptr, is really 0 (as explained above
184 static uint32_t *rptr = &randtbl[1]; variable
250 rptr = &state[0];
286 rptr = &state[0];
324 state[-1] = MAX_TYPES * (rptr - state) + rand_type;
352 int_arg_state[0] = MAX_TYPES * (rptr - state) + rand_type;
388 state[-1] = MAX_TYPES * (rptr - state) + rand_type;
394 rptr
[all...]
/freebsd-11-stable/contrib/ntp/libntp/
H A Dntp_random.c156 * MAX_TYPES * (rptr - state) + TYPE_3 == TYPE_3.
181 * fptr and rptr are two pointers into the state info, a front and a rear
190 * (The position of the rear pointer, rptr, is really 0 (as explained above
195 static unsigned long *rptr = &randtbl[1]; variable
273 rptr = &state[0];
360 state[-1] = MAX_TYPES * (rptr - state) + rand_type;
393 long_arg_state[0] = MAX_TYPES * (rptr - state) + rand_type;
429 state[-1] = MAX_TYPES * (rptr - state) + rand_type;
446 rptr = &state[rear];
485 f = fptr; r = rptr;
[all...]
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-hfa.h212 uint64_t rptr:40; member in struct:__anon8545::__anon8546
214 uint64_t rptr:40;
224 uint64_t rptr:40; member in struct:__anon8545::__anon8547
226 uint64_t rptr:40;
237 uint64_t rptr:40; member in struct:__anon8545::__anon8548
239 uint64_t rptr:40;
248 uint64_t rptr:40; member in struct:__anon8545::__anon8549
250 uint64_t rptr:40;
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_ring.c294 * There is a rptr (read pointer) that determines where the
359 u32 rptr; local
362 rptr = le32_to_cpu(rdev->wb.wb[ring->rptr_offs/4]);
364 rptr = RREG32(ring->rptr_reg);
365 ring->rptr = (rptr & ring->ptr_reg_mask) >> ring->ptr_reg_shift;
367 ring->ring_free_dw = (ring->rptr + (ring->ring_size / 4));
501 * Used for lockup detection to see if the rptr is advancing.
508 if (ring->rptr == ring->wptr) {
522 * Update the last rptr valu
553 uint32_t rptr; local
[all...]
/freebsd-11-stable/libexec/rbootd/
H A Ddefs.h101 #define EnetStr(rptr) GetEtherAddr(&(rptr)->rmp.hp_hdr.saddr[0])
/freebsd-11-stable/sys/dev/cxgb/ulp/iw_cxgb/
H A Diw_cxgb_wr.h39 #define Q_EMPTY(rptr,wptr) ((rptr)==(wptr))
40 #define Q_FULL(rptr,wptr,size_log2) ( (((wptr)-(rptr))>>(size_log2)) && \
41 ((rptr)!=(wptr)) )
43 #define Q_FREECNT(rptr,wptr,size_log2) ((1UL<<size_log2)-((wptr)-(rptr)))
44 #define Q_COUNT(rptr,wptr) ((wptr)-(rptr))
660 u32 rptr; member in struct:t3_cq
[all...]
H A Diw_cxgb_hal.c114 u32 rptr; local
132 if (Q_PTR2IDX((cq->rptr), cq->size_log2) != ret) {
135 rptr = cq->rptr;
138 * Keep the generation correct by bumping rptr until it
141 while (Q_PTR2IDX((rptr+1), cq->size_log2) != ret)
142 rptr++;
145 * Now rptr is the index for the (last) cqe that was
149 cqe = cq->queue + Q_PTR2IDX(rptr, cq->size_log2);
150 while (!CQ_VLD_ENTRY(rptr, c
1125 u32 rptr = wq->oldest_read - wq->sq + 1; local
[all...]
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dip_ftp_pxy.c625 char *rptr, *wptr, cmd[6], c; local
631 rptr = f->ftps_rptr;
635 c = rptr[i];
693 while ((*rptr++ != '\n') && (rptr < wptr))
695 f->ftps_rptr = rptr;
1006 char *rptr, *wptr; local
1012 rptr = f->ftps_rptr;
1015 DT2(ftp_server_response, char *, rptr, int, ftp->ftp_passok);
1016 if (*rptr
1294 char *rptr, *wptr, *s; local
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bn/asm/
H A Dx86_64-mont.pl777 my $rptr="%rdi"; # const BN_ULONG *rptr,
784 my ($i,$j,$tptr)=("%rbp","%rcx",$rptr);
865 movq $rptr,%xmm1 # save $rptr
882 movq %xmm1,$rptr
898 movq %xmm1,$rptr
914 mov %r12,8*0($rptr)
915 mov %r13,8*1($rptr)
916 mov %r14,8*2($rptr)
[all...]
H A Dia64-mont.pl93 rptr=r8; aptr=r9; bptr=r14; nptr=r15;
131 $ADDP rptr=0,in0 }
322 { .mib; (p18) st8 [rptr]=n[2],8 // *(rp++)=r
335 { .mmb; sub rptr=rptr,len // rewind
338 { .mmi; mov aptr=rptr
349 { .mmb; (p17) st8 [rptr]=a[1],8
407 $ADDP rptr=0,in0 };;
810 { .mmi; (p32)st8 [rptr]=n1,8
811 (p34)st8 [rptr]
[all...]
H A Darmv4-mont.pl258 my ($rptr,$aptr,$bptr,$nptr,$n0,$num)=map("r$_",(0..5));
624 stmia $rptr!, {r8-r11}
632 sub $rptr,$rptr,r11 @ rewind $rptr
638 ldmia $rptr, {r8-r11}
646 stmia $rptr!, {r8-r11}
648 ldmia $rptr, {r8-r11}
656 stmia $rptr!, {r8-r11}
H A Dx86_64-mont5.pl470 # Ensure that stack frame doesn't alias with $rptr+3*$num
986 mov 56+8(%rsp),%rdi # rptr in .sqr4x_sub
1039 my $rptr="%rdi"; # BN_ULONG *rptr,
1047 my ($i,$j,$tptr)=("%rbp","%rcx",$rptr);
1080 # Ensure that stack frame doesn't alias with $rptr+3*$num
1088 sub $rptr,%r11
1137 movq $rptr,%xmm1 # save $rptr, used in sqr8x
1155 mov $aptr,$rptr
[all...]
/freebsd-11-stable/sys/arm/arm/
H A Dtrap-v4.c701 * If the read succeeds, the value is written to 'rptr' and zero is returned.
705 badaddr_read(void *addr, size_t size, void *rptr) argument
720 if (rv == 0 && rptr)
721 *(uint8_t *) rptr = u.v1;
726 if (rv == 0 && rptr)
727 *(uint16_t *) rptr = u.v2;
732 if (rv == 0 && rptr)
733 *(uint32_t *) rptr = u.v4;
/freebsd-11-stable/lib/libopenbsd/
H A Dimsg.h48 u_char *rptr; member in struct:ibuf_read
H A Dimsg.c144 ibuf->r.rptr = ibuf->r.buf + IMSG_HEADER_SIZE;
155 memcpy(imsg->data, ibuf->r.rptr, datalen);
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dauth_context.c164 krb5_address *lptr = NULL, *rptr = NULL; local
204 rptr = &remote_k_address;
209 rptr);
213 if (rptr)
214 krb5_free_address (context, rptr);
/freebsd-11-stable/contrib/ofed/libcxgb4/
H A Dcq.c178 u32 rptr = wq->sq.oldest_read - wq->sq.sw_sq + 1; local
180 if (rptr == wq->sq.size)
181 rptr = 0;
182 while (rptr != wq->sq.pidx) {
183 wq->sq.oldest_read = &wq->sq.sw_sq[rptr];
187 if (++rptr == wq->sq.size)
188 rptr = 0;
/freebsd-11-stable/contrib/binutils/bfd/
H A Dcoff-alpha.c643 alpha_adjust_reloc_in (abfd, intern, rptr)
646 arelent *rptr;
654 rptr->addend = 0;
655 rptr->howto = NULL;
669 rptr->addend = 0;
671 rptr->addend = - (intern->r_vaddr + 4);
679 rptr->addend += ecoff_data (abfd)->gp;
687 rptr->addend = intern->r_size;
694 rptr->addend = (intern->r_offset << 8) + intern->r_size;
703 rptr
[all...]
H A Dcoff-mips.c373 mips_adjust_reloc_in (abfd, intern, rptr)
376 arelent *rptr;
384 rptr->addend += ecoff_data (abfd)->gp;
389 rptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
391 rptr->howto = &mips_howto_table[intern->r_type];
/freebsd-11-stable/contrib/groff/src/preproc/refer/
H A Drefer.cpp620 reference **rptr; // pointer to next reference member in class:label_processing_state
832 : state(NORMAL), count(0), rptr(p), rcount(n), fp(f)
854 output_citation_group(rptr, count, type, fp);
855 rptr += count ;
866 output_citation_group(rptr, count, type, fp);
867 rptr += count;
882 output_citation_group(rptr, count, type, fp);
883 rptr += count;
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/
H A Dcq.c339 u32 rptr = wq->sq.oldest_read - wq->sq.sw_sq + 1; local
341 if (rptr == wq->sq.size)
342 rptr = 0;
343 while (rptr != wq->sq.pidx) {
344 wq->sq.oldest_read = &wq->sq.sw_sq[rptr];
348 if (++rptr == wq->sq.size)
349 rptr = 0;
/freebsd-11-stable/sys/dev/liquidio/base/
H A Dlio_iq.h220 uint64_t rptr; member in struct:lio_instr3_64B

Completed in 178 milliseconds

12