Searched refs:bptr (Results 1 - 24 of 24) sorted by relevance

/freebsd-current/libexec/talkd/
H A Dannounce.c95 char *bptr, *lptr, *vis_user; local
132 bptr = big_buf;
133 *bptr++ = '\007'; /* send something to wake them up */
134 *bptr++ = '\r'; /* add a \r in case of raw mode */
135 *bptr++ = '\n';
140 *(bptr++) = *(lptr++);
143 *(bptr++) = ' ';
144 *(bptr++) = '\r'; /* add a \r in case of raw mode */
145 *(bptr++) = '\n';
147 *bptr
[all...]
/freebsd-current/sys/dev/le/
H A Dlance.c688 volatile uint16_t *bptr;
692 bptr = ((volatile uint16_t *)buf) + (boff - 1);
693 *bptr = (*from++ << 8) | (*bptr & 0xff);
694 bptr += 2;
697 bptr = ((volatile uint16_t *)buf) + boff;
699 *bptr = (from[1] << 8) | (from[0] & 0xff);
700 bptr += 2;
705 *bptr = (uint16_t)*from;
713 volatile uint16_t *bptr;
[all...]
/freebsd-current/sys/kern/
H A Dsubr_module.c436 preload_modinfo_value(struct sbuf *sbp, uint32_t *bptr, int type, int len) argument
448 sbuf_printf(sbp, "%s", (char *)bptr);
452 sbuf_printf(sbp, "%lu", *(u_long *)bptr);
479 sbuf_print_vmoffset(sbp, *(vm_offset_t *)bptr);
482 sbuf_printf(sbp, "0x%08x", *bptr);
503 uint32_t *bptr, type, len; local
511 bptr = (uint32_t *)preload_metadata;
513 while (bptr[0] != MODINFO_END || bptr[1] != MODINFO_END) {
514 sbuf_printf(sbp, " %p:\n", bptr);
[all...]
/freebsd-current/contrib/tcsh/
H A Dgethost.c170 const char *ptr, *bptr, *eptr = NULL, *name; local
179 for (ptr = defs; (bptr = strstr(ptr, def)) != NULL; ptr = eptr + 1) {
180 if (ptr != bptr)
181 buf = cat(buf, ptr, bptr - ptr + 1);
189 buf = cat(buf, bptr, eptr - bptr + 1);
190 name = bptr + sizeof(def) - 1;
H A Dtw.parse.c269 Char *bptr; local
283 for (bptr = qline.s + wordp; bptr < slshp; bptr++) {
288 if (isglob(*bptr)) {
339 for (bptr = word_start; bptr < str_end; bptr++) {
344 if (isglob(*bptr)) {
418 bptr
595 Char *bptr; local
[all...]
H A Dtw.init.c266 const struct biltins *bptr; local
268 for (bptr = bfunc; bptr < &bfunc[nbfunc]; bptr++)
269 if (bptr->bname)
270 tw_cmd_add(str2short(bptr->bname));
272 for (bptr = nt_bfunc; bptr < &nt_bfunc[nt_nbfunc]; bptr++)
273 if (bptr
[all...]
H A Dsh.exec.c929 const struct biltins *bptr; local
970 for (bptr = bfunc; bptr < &bfunc[nbfunc]; bptr++) {
971 if (eq(sp->word, str2short(bptr->bname))) {
986 for (bptr = nt_bfunc; bptr < &nt_bfunc[nt_nbfunc]; bptr++) {
987 if (eq(sp->word, str2short(bptr->bname))) {
1084 const struct biltins *bptr; local
[all...]
/freebsd-current/contrib/libedit/TEST/
H A Dwtc1.c62 char *buf, *bptr; local
76 buf = bptr = malloc(mblen);
81 bptr += wctomb(bptr, ptr[i]);
83 *bptr = 0; /* Terminate multibyte string */
84 mblen = bptr - buf;
/freebsd-current/contrib/diff/src/
H A Ddiff3.c932 struct diff_block *block_list, **block_list_end, *bptr;
934 / MIN (sizeof *bptr->lines[1],
935 sizeof *bptr->lengths[1]));
940 bptr = 0; /* Pacify `gcc -W'. */
944 bptr = xmalloc (sizeof *bptr);
945 bptr->lines[0] = bptr->lines[1] = 0;
946 bptr->lengths[0] = bptr
928 struct diff_block *block_list, **block_list_end, *bptr; local
[all...]
H A Dutil.c620 long int *aptr, long int *bptr)
623 *bptr = translate_line_number (file, b + 1) - 1;
610 translate_range(struct file_data const *file, lin a, lin b, long int *aptr, long int *bptr) argument
/freebsd-current/sys/powerpc/mpc85xx/
H A Dplatform_mpc85xx.c331 vm_paddr_t rel_pa, bptr; local
355 bptr = pmap_kextract((uintptr_t)__boot_page);
359 rel->entry_h = (bptr >> 32); __asm __volatile("sync" ::: "memory");
361 rel->entry_l = bptr & 0xffffffff; __asm __volatile("sync" ::: "memory");
378 vm_paddr_t bptr; local
428 bptr = pmap_kextract((uintptr_t)__boot_page);
429 KASSERT((bptr & 0xfff) == 0,
430 ("%s: boot page is not aligned (%#jx)", __func__, (uintmax_t)bptr));
450 ccsr_write4(OCP85XX_BSTRH, bptr >> 32);
451 ccsr_write4(OCP85XX_BSTRL, bptr);
[all...]
/freebsd-current/usr.bin/gencat/
H A Dgencat.c237 static char buf[BUFSIZ], *bptr = buf, *bend = buf; local
249 for (; bptr < bend && cptr < cend; ++cptr, ++bptr) {
250 if (*bptr == '\n') {
252 ++bptr;
255 *cptr = *bptr;
261 if (bptr == bend) {
271 bptr = buf;
/freebsd-current/contrib/bc/src/
H A Dlibrary.c896 BclNum* bptr; local
914 bptr = BCL_NUM(ctxt, b);
916 assert(aptr != NULL && bptr != NULL);
917 assert(BCL_NUM_ARRAY(aptr) != NULL && BCL_NUM_ARRAY(bptr) != NULL);
922 req(BCL_NUM_NUM(aptr), BCL_NUM_NUM(bptr), ctxt->scale));
924 op(BCL_NUM_NUM(aptr), BCL_NUM_NUM(bptr), BCL_NUM_NUM_NP(c), ctxt->scale);
932 if (b.i != a.i) bcl_num_dtor(ctxt, b, bptr);
1093 BclNum* bptr; local
1110 bptr = BCL_NUM(ctxt, b);
1112 assert(aptr != NULL && bptr !
1181 BclNum* bptr; local
1252 BclNum* bptr; local
[all...]
/freebsd-current/crypto/openssl/crypto/bn/asm/
H A Dx86_64-mont.pl826 my $bptr="%rdx"; # not used
1112 my ($aptr, $bptr, $nptr, $tptr, $mi, $bi, $zero, $num)=
1114 my $rptr=$bptr;
1116 lea 8($bp),$bptr
1124 mov $bptr,8(%rsp) # off-load &b[i]
1129 mov $mi,$bptr # borrow $bptr
1140 adcx %rax,$bptr # discarded
1146 mov 48(%rsp),$bptr # counter value
1197 dec $bptr # o
[all...]
H A Dx86_64-mont5.pl1090 my $bptr="%rdx"; # const void *table,
1198 movq $bptr,%xmm4
1212 movq %xmm4,$bptr
2245 my ($aptr, $bptr, $nptr, $tptr, $mi, $bi, $zero, $num)=
2247 my $rptr=$bptr;
2254 lea 128($bp),$bptr # size optimization
2306 pand `16*($i+0)-128`($bptr),%xmm0 # while it's still in register
2307 pand `16*($i+1)-128`($bptr),%xmm1
2308 pand `16*($i+2)-128`($bptr),%xmm2
2310 pand `16*($i+3)-128`($bptr),
[all...]
H A Darmv4-mont.pl311 my ($rptr,$aptr,$bptr,$nptr,$n0,$num)=map("r$_",(0..5));
333 vld1.32 {${Bi}[0]}, [$bptr,:32]!
386 vld1.32 {${Bi}[0]}, [$bptr,:32]!
477 vld1.32 {${Bi}[0]},[$bptr,:32]! @ *b++
500 vld1.32 {${Bi}[0]},[$bptr,:32]! @ *b++
690 add $bptr,sp,$num,lsl#2
699 teq $aptr,$bptr @ preserves carry
706 sub r11,$bptr,r11 @ this is num*4
710 mov $nptr,$bptr @ second 3/4th of frame
738 teq $aptr,$bptr
[all...]
H A Dia64-mont.pl103 rptr=r8; aptr=r9; bptr=r14; nptr=r15;
125 $ADDP bptr=0,in2
133 { .mmi; ldf8 bi=[bptr],8 // (*bp++)
215 { .mmi; ldf8 bi=[bptr],8 // (*bp++)
349 mov bptr=tptr
357 (p16) ld8 t[0]=[bptr],8
427 $ADDP bptr=0,in2 }
431 { .mmi; ldf8 bj[7]=[bptr],16 // bp[0]
444 { .mfi; (p4)ldf8 bj[5]=[bptr],16 // bp[2]
467 { .mfi; (p8)ldf8 bj[3]=[bptr],1
[all...]
H A Darmv8-mont.pl307 my ($rptr,$aptr,$bptr,$nptr,$n0,$num)=map("x$_",(0..5));
359 ldr $sBi,[$bptr],#4 // *b++
381 ldr $sBi,[$bptr],#4 // *b++
589 add $bptr,sp,$num,lsl#2
600 sub x17,$bptr,$aptr
608 sub x11,$bptr,x11 // this is num*4
612 mov $nptr,$bptr // second 3/4th of frame
645 sub x17,$bptr,$aptr // preserves carry
/freebsd-current/sys/geom/vinum/
H A Dgeom_vinum_subr.c61 char *aptr, *bptr, *cptr; local
71 for (aptr = buf; *aptr != '\0'; aptr = bptr) {
72 bptr = aptr;
76 while (*bptr != '\n')
77 bptr++;
78 *bptr = '\0';
79 bptr++;
/freebsd-current/contrib/openbsm/libbsm/
H A Dbsm_io.c1863 u_char *bptr; local
1870 bptr = buf + tok->len;
1872 tok->tt.execarg.text[i] = (char*)bptr;
1875 while (bptr && (*bptr != '\0')) {
1878 bptr = buf + tok->len;
1880 if (!bptr)
1921 u_char *bptr; local
1928 bptr = buf + tok->len;
1930 tok->tt.execenv.text[i] = (char*)bptr;
4512 u_char *bptr; local
[all...]
/freebsd-current/contrib/file/src/
H A Dreadelf.c983 char *bptr; local
1002 for (bptr = buf; *bptr && isprint(CAST(unsigned char, *bptr)); bptr++)
1004 if (*bptr != '\0')
1007 return bptr - buf;
/freebsd-current/sys/powerpc/ofw/
H A Dofw_syscons.c1064 u_int16_t *bptr = base; local
1067 *bptr++ = pat;
/freebsd-current/crypto/openssl/crypto/ec/asm/
H A Decp_nistz256-armv4.pl974 my ($rptr,$aptr,$bptr,$toutptr)=map("r$_",(0..3));
989 vld1.32 {${Bi}[0]},[$bptr,:32]!
1011 vld1.32 {${Bi}[0]},[$bptr,:32]!
/freebsd-current/crypto/openssh/
H A Dsshkey.c3216 char *bptr; local
3280 if ((blen = BIO_get_mem_data(bio, &bptr)) <= 0) {
3284 if ((r = sshbuf_put(blob, bptr, blen)) != 0)

Completed in 340 milliseconds