Searched refs:bp (Results 251 - 275 of 671) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/ruby-106/ruby/
H A Dvm_debug.h27 #define bp() ruby_debug_breakpoint() macro
/macosx-10.10.1/adv_cmds-158/finger/
H A Dutil.c341 char *bp, name[1024]; local
355 (void)strncpy(bp = tbuf, pw->pw_gecos, sizeof(tbuf));
357 if (*bp == '*')
358 ++bp;
361 if (!(p = strsep(&bp, ",")))
379 pn->office = ((p = strsep(&bp, ",")) && *p) ?
381 pn->officephone = ((p = strsep(&bp, ",")) && *p) ?
383 pn->homephone = ((p = strsep(&bp, ",")) && *p) ?
/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dmatch_service.c104 char *bp = saved_patterns; local
107 while ((item = mystrtok(&bp, delim)) != 0)
/macosx-10.10.1/tcpdump-61/tcpdump/
H A Dprint-ppi.c21 ppi_header_print(struct netdissect_options *ndo, const u_char *bp, u_int length) argument
27 hdr = (const ppi_header_t *)bp;
H A Dprint-tftp.c75 tftp_print(register const u_char *bp, u_int length) argument
83 tp = (const struct tftphdr *)bp;
H A Dprint-timed.c47 timed_print(register const u_char *bp) argument
50 struct tsp *tsp = (struct tsp *)bp;
/macosx-10.10.1/bootp-298/bootpd.tproj/
H A Dbootpd.c1595 sendreply(interface_t * if_p, struct bootp * bp, int n, argument
1609 if (bp->bp_ciaddr.s_addr) {
1610 dst = bp->bp_ciaddr;
1613 else if (bp->bp_giaddr.s_addr) {
1614 dst = bp->bp_giaddr;
1619 bp->bp_unused = htons(ntohs(bp->bp_unused | DHCP_FLAGS_BROADCAST));
1622 if (broadcast || (ntohs(bp->bp_unused) & DHCP_FLAGS_BROADCAST)) {
1630 dst = bp->bp_yiaddr;
1631 hwaddr = bp
1843 S_relay_packet(struct bootp * bp, int n, interface_t * if_p) argument
1946 S_dispatch_packet(struct bootp * bp, int n, interface_t * if_p, struct in_addr * dstaddr_p) argument
[all...]
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dexec.c160 const char *p, *bp; local
167 bp = name;
171 bp = buf;
214 retry: (void)_execve(bp, argv, envp);
231 memp[1] = bp;
254 if (stat(bp, &sb) != 0)
/macosx-10.10.1/OpenSSL098-52/src/crypto/bio/
H A Dbss_mem.c278 static int mem_gets(BIO *bp, char *buf, int size) argument
283 BUF_MEM *bm=(BUF_MEM *)bp->ptr;
285 BIO_clear_retry_flags(bp);
308 i=mem_read(bp,buf,i);
314 static int mem_puts(BIO *bp, const char *str) argument
319 ret=mem_write(bp,str,n);
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/bashdb/
H A Dbashdb425 local i j start end bp cl
501 local i=0 bp=' ' line=$1 cl=' '
504 bp='*'
512 _msg "${_guineapig/*\//}:$line $bp $cl${_lines[$line]}"
514 _msg "${_guineapig/*\//}:$line $bp $cl${_lines[$line]}"
516 _msg "${_guineapig/*\//}:$line $bp $cl${_lines[$line]}"
/macosx-10.10.1/xnu-2782.1.97/bsd/vfs/
H A Dvfs_journal.h60 struct buf *bp; member in union:block_info::__anon14714
326 int journal_modify_block_start(journal *jnl, struct buf *bp);
327 int journal_modify_block_abort(journal *jnl, struct buf *bp);
328 int journal_modify_block_end(journal *jnl, struct buf *bp, void (*func)(struct buf *bp, void *arg), void *arg);
329 int journal_kill_block(journal *jnl, struct buf *bp);
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dscp.c584 char *bp, *host, *src, *suser, *thost, *tuser, *arg; local
632 xasprintf(&bp, "%s -f %s%s", cmd,
634 if (do_cmd(host, suser, bp, &remin, &remout) < 0)
636 (void) xfree(bp);
638 xasprintf(&bp, "%s -t %s%s", cmd,
640 if (do_cmd2(host, tuser, bp, remin, remout) < 0)
642 (void) xfree(bp);
685 xasprintf(&bp, "%s -t %s%s", cmd,
688 if (do_cmd(host, tuser, bp, &remin,
693 (void) xfree(bp);
704 char *bp, *host, *src, *suser; local
758 BUF *bp; local
985 BUF *bp; local
1445 allocbuf(BUF *bp, int fd, int blksize) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/dev/vn/
H A Dvn.c642 shadow_read(struct vn_softc * vn, struct buf * bp, char * base, argument
652 offset = buf_blkno(bp);
653 resid = buf_resid(bp) / blocksize;
685 buf_setresid(bp, resid * blocksize);
690 shadow_write(struct vn_softc * vn, struct buf * bp, char * base, argument
700 offset = buf_blkno(bp);
701 resid = buf_resid(bp) / blocksize;
736 buf_setresid(bp, resid * blocksize);
741 vn_readwrite_io(struct vn_softc * vn, struct buf * bp, vfs_context_t ctx) argument
747 if (buf_map(bp,
773 vnstrategy(struct buf *bp) argument
[all...]
/macosx-10.10.1/lsof-53/lsof/
H A Dproc.c87 _PROTOTYPE(static char *alloc_fflbuf,(char **bp, int *al, int lr));
95 alloc_fflbuf(bp, al, lr)
96 char **bp; /* current buffer pointer */
103 if (*bp && (sz <= *al))
104 return(*bp);
105 if (*bp)
106 *bp = (char *)realloc((MALLOC_P *)*bp, (MALLOC_S)sz);
108 *bp = (char *)malloc((MALLOC_S)sz);
109 if (!*bp) {
913 static char *bp = (char *)NULL; local
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/hfs/hfscommon/BTree/
H A DBTreeAllocate.c631 buf_t bp; local
642 bp = NULL;
690 bp = buf_getblk(vp, nodeNumber + bitNumber, btreePtr->nodeSize, 0, 0, BLK_META);
691 if (bp == NULL)
698 if (buf_flags(bp) & B_LOCKED) {
704 buf_brelse(bp);
708 buf_clear(bp);
709 buf_markaged(bp);
722 err = VNOP_BWRITE(bp);
728 buf_bawrite(bp);
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Darc-dis.c236 char *bp; local
244 bp = buf;
245 *bp = 0;
257 *bp++ = p[-1];
287 #define inc_bp() bp = bp + strlen (bp)
297 sprintf (bp, "0x%x_%04x", u >> 16, u & 0xffff);
299 sprintf (bp, "0x%x", u);
309 sprintf (bp, "
[all...]
/macosx-10.10.1/Libc-1044.1.2/gdtoa/FreeBSD/
H A Dgdtoa-gethex.c44 gethex(sp, fpi, exp, bp, sign, loc)
45 CONST char **sp; CONST FPI *fpi; Long *exp; Bigint **bp; int sign; locale_t loc;
47 gethex( CONST char **sp, CONST FPI *fpi, Long *exp, Bigint **bp, int sign, locale_t loc)
77 *bp = 0;
198 *bp = b = Balloc(k);
340 *bp = b;
404 *bp = b;
/macosx-10.10.1/msdosfs-209.1.1/msdosfs.kextproj/msdosfs.kmodproj/
H A Dmsdosfs_vnops.c798 buf_t bp; local
818 error = (int)buf_meta_bread(pmp->pm_devvp, lbn, blsize, vfs_context_ucred(context), &bp);
820 buf_brelse(bp);
823 if (ISSET(ap->a_ioflag, IO_NOCACHE) && buf_fromcache(bp) == 0)
824 buf_markaged(bp);
831 diff = blsize - buf_resid(bp);
834 error = uiomove((char *)buf_dataptr(bp) + on, (int) n, uio);
835 buf_brelse(bp);
1363 struct buf *bp; local
1680 error = (int)buf_meta_bread(pmp->pm_devvp, bn, pmp->pm_bpcluster, vfs_context_ucred(context), &bp);
1756 struct buf *bp; local
2085 struct buf *bp; local
2451 buf_t bp = ap->a_bp; local
2561 buf_t bp = NULL; local
2690 buf_t bp = NULL; local
2878 buf_t bp = NULL; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/pds/
H A Dtif_pdsdirwrite.c743 { unsigned char* bp = (unsigned char*) w; local
745 bp[i] = (unsigned char) v[i];
749 if (!TIFFWriteByteArray(tif, dir, (char*) bp))
754 { signed char* bp = (signed char*) w; local
756 bp[i] = (signed char) v[i];
760 if (!TIFFWriteByteArray(tif, dir, (char*) bp))
765 { uint16* bp = (uint16*) w; local
767 bp[i] = (uint16) v[i];
768 if (!TIFFWriteShortArray(tif, type, tag, dir, n, (uint16*)bp))
773 { int16* bp local
781 { uint32* bp = (uint32*) w; local
789 { int32* bp = (int32*) w; local
797 { float* bp = (float*) w; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_lzw.c188 #define NextCode(tif, sp, bp, code, get) get(sp, bp, code)
330 #define GetNextCode(sp, bp, code) { \
331 nextdata = (nextdata<<8) | *(bp)++; \
334 nextdata = (nextdata<<8) | *(bp)++; \
356 unsigned char *bp; local
408 bp = (unsigned char *)tif->tif_rawcp;
418 NextCode(tif, sp, bp, code, GetNextCode);
428 NextCode(tif, sp, bp, code, GetNextCode);
526 tif->tif_rawcp = (tidata_t) bp;
567 unsigned char *bp; local
825 LZWEncode(TIFF* tif, tidata_t bp, tsize_t cc, tsample_t s) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/miscfs/specfs/
H A Dspec_vnops.c445 struct buf *bp; local
498 (int *)&bsize, 1, NOCRED, &bp);
500 error = buf_bread(vp, bn, (int)bsize, NOCRED, &bp);
506 n = bsize - buf_resid(bp);
510 buf_brelse(bp);
515 error = uiomove((char *)buf_dataptr(bp) + on, n, uio);
517 buf_markaged(bp);
518 buf_brelse(bp);
538 struct buf *bp; local
614 bp
1960 buf_t bp; local
[all...]
/macosx-10.10.1/libxml2-26/libxml2/
H A Dnanohttp.c655 char *bp = buf; local
658 while (bp - buf < 4095) {
661 if (bp == buf)
664 *bp = 0;
671 *bp = *ctxt->inrptr++;
672 if (*bp == '\n') {
673 *bp = 0;
676 if (*bp != '\r')
677 bp++;
1351 char *bp, * local
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dnanohttp.c650 char *bp = buf; local
653 while (bp - buf < 4095) {
656 if (bp == buf)
659 *bp = 0;
666 *bp = *ctxt->inrptr++;
667 if (*bp == '\n') {
668 *bp = 0;
671 if (*bp != '\r')
672 bp++;
1344 char *bp, * local
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/progmodes/
H A Didlw-shell.el541 (defcustom idlwave-shell-breakpoint-face 'idlwave-shell-bp
550 (copy-face 'underline 'idlwave-shell-bp)
552 (defface idlwave-shell-bp
559 'idlwave-shell-disabled-bp
568 (copy-face 'underline 'idlwave-shell-disabled-bp)
570 (defface idlwave-shell-disabled-bp
739 (defvar idlwave-shell-bp-query "help,/breakpoints"
867 (defvar idlwave-shell-bp-alist)
877 (defvar idlwave-shell-bp-buffer)
1006 ;; (make-local-variable 'idlwave-shell-bp
[all...]
/macosx-10.10.1/autofs-246/automountlib/
H A Dauto_subr.c410 register char *bp, *bq; local
419 bp = buffp; bq = buffq;
426 if ((int)((bp - buffp) + strlen(key)) < size) {
428 *bp++ = *s;
498 if ((int)((bp - buffp) + strlen(s)) < size) {
500 *bp++ = *s++;
519 if (bp - buffp == size - 1) {
530 *bp++ = *p++;
536 *bp = '\0';
560 register char *ip, *bp, *q local
[all...]

Completed in 209 milliseconds

<<11121314151617181920>>