Searched refs:bp (Results 226 - 250 of 579) sorted by relevance

1234567891011>>

/macosx-10.9.5/xnu-2422.115.4/bsd/dev/vn/
H A Dvn.c648 shadow_read(struct vn_softc * vn, struct buf * bp, char * base, argument
658 offset = buf_blkno(bp);
659 resid = buf_resid(bp) / blocksize;
691 buf_setresid(bp, resid * blocksize);
696 shadow_write(struct vn_softc * vn, struct buf * bp, char * base, argument
706 offset = buf_blkno(bp);
707 resid = buf_resid(bp) / blocksize;
742 buf_setresid(bp, resid * blocksize);
747 vn_readwrite_io(struct vn_softc * vn, struct buf * bp, vfs_context_t ctx) argument
753 if (buf_map(bp,
779 vnstrategy(struct buf *bp) argument
[all...]
/macosx-10.9.5/lsof-52/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.9.5/xnu-2422.115.4/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.9.5/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.9.5/Libc-997.90.3/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.9.5/msdosfs-198/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);
1359 struct buf *bp; local
1676 error = (int)buf_meta_bread(pmp->pm_devvp, bn, pmp->pm_bpcluster, vfs_context_ucred(context), &bp);
1752 struct buf *bp; local
2081 struct buf *bp; local
2447 buf_t bp = ap->a_bp; local
2557 buf_t bp = NULL; local
2686 buf_t bp = NULL; local
2874 buf_t bp = NULL; local
[all...]
/macosx-10.9.5/tcl-102/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.9.5/tcl-102/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.9.5/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.9.5/pyobjc-42/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.9.5/emacs-92/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.9.5/autofs-234/automountlib/
H A Dauto_subr.c408 register char *bp, *bq; local
417 bp = buffp; bq = buffq;
424 if ((int)((bp - buffp) + strlen(key)) < size) {
426 *bp++ = *s;
496 if ((int)((bp - buffp) + strlen(s)) < size) {
498 *bp++ = *s++;
517 if (bp - buffp == size - 1) {
528 *bp++ = *p++;
534 *bp = '\0';
558 register char *ip, *bp, *q local
[all...]
/macosx-10.9.5/awk-18/src/
H A Dtran.c423 uschar *buf, *bp; local
427 for (bp = buf; (c = *s) != delim; s++) {
431 *bp++ = c;
435 *bp++ = '\\';
439 case '\\': *bp++ = '\\'; break;
440 case 'n': *bp++ = '\n'; break;
441 case 't': *bp++ = '\t'; break;
442 case 'b': *bp++ = '\b'; break;
443 case 'f': *bp++ = '\f'; break;
444 case 'r': *bp
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
H A Drpcmutex.h107 ** void RPC_MUTEX_TRY_LOCK(m,bp)
298 # define RPC_MUTEX_TRY_LOCK(mutex,bp) \
302 if (! rpc__mutex_try_lock(&(mutex), (bp), __FILE__, __LINE__)) \
313 *(bp) = dcethread_mutex_trylock_throw(&(mutex).m); \
317 # define RPC_MUTEX_TRY_LOCK(mutex,bp) \
320 *(bp) = dcethread_mutex_trylock_throw(&(mutex).m); \
623 boolean * /*bp*/,
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/demos/tcl/
H A Drecord.tcl26 button .f1.bp -bitmap snackPlay -command Play
30 pack .f1.bp .f1.bu .f1.bs .f1.br -side left
126 .f1.bp configure -relief raised
135 .f1.bp configure -relief groove
144 .f1.bp configure -relief raised
/macosx-10.9.5/xnu-2422.115.4/bsd/miscfs/specfs/
H A Dspec_vnops.c443 struct buf *bp; local
497 (int *)&bsize, 1, NOCRED, &bp);
499 error = buf_bread(vp, bn, (int)bsize, NOCRED, &bp);
505 n = bsize - buf_resid(bp);
509 buf_brelse(bp);
514 error = uiomove((char *)buf_dataptr(bp) + on, n, uio);
516 buf_markaged(bp);
517 buf_brelse(bp);
537 struct buf *bp; local
613 bp
1914 buf_t bp; local
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/vmalloc/
H A Dvmbest.c564 reg Block_t *bp, *t; local
585 bp = BLOCK(seg->baddr);
586 if(!ISPFREE(SIZE(bp)) )
589 bp = LAST(bp); /**/ASSERT(vmisfree(vd,bp));
590 size = SIZE(bp);
591 if(bp == vd->wild)
614 else REMOVE(vd,bp,INDEX(size),t,bestsearch);
615 CLRPFREE(SIZE(NEXT(bp)));
852 reg Block_t *bp; local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/libedit/src/
H A Dmap.c1126 el_bindings_t *bp, *ep; local
1131 for (bp = el->el_map.help; bp < ep; bp++)
1132 if (bp->func == map[(unsigned char) *in]) {
1134 "%s\t->\t" FSTR "\n", outbuf, bp->name);
1148 el_bindings_t *bp, *ep; local
1166 for (bp = el->el_map.help; bp < ep; bp
1254 el_bindings_t *bp, *ep; local
[all...]
/macosx-10.9.5/libedit-39/src/
H A Dmap.c1125 el_bindings_t *bp, *ep; local
1130 for (bp = el->el_map.help; bp < ep; bp++)
1131 if (bp->func == map[(unsigned char) *in]) {
1133 "%s\t->\t" FSTR "\n", outbuf, bp->name);
1147 el_bindings_t *bp, *ep; local
1165 for (bp = el->el_map.help; bp < ep; bp
1253 el_bindings_t *bp, *ep; local
[all...]
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libedit/
H A Dmap.c1123 el_bindings_t *bp; local
1127 for (bp = el->el_map.help; bp->name != NULL; bp++)
1128 if (bp->func == map[(unsigned char) *in]) {
1130 "%s\t->\t%s\n", outbuf, bp->name);
1144 el_bindings_t *bp; local
1159 for (bp = el->el_map.help; bp->name != NULL; bp
1242 el_bindings_t *bp; local
[all...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dmatch_list.c103 char *bp = string; local
117 while ((start = mystrtok(&bp, delim)) != 0) {
120 myname, start, bp);
/macosx-10.9.5/tcl-102/tcl_ext/tls/tls/
H A DtlsX509.c36 static char bp[128]; local
63 sprintf(bp,"%s %2d %02d:%02d:%02d %d%s",
65 return bp;
/macosx-10.9.5/cctools-845/ld/
H A Dindirect_sections.c946 struct indirect_item_bucket *bp; local
959 for(bp = data->hashtable[hashval]; bp; bp = bp->next){
963 if(bp->indirect_item->merged_symbol == merged_symbol &&
966 return(bp->output_offset);
970 bp = allocate(sizeof(struct indirect_item_bucket));
984 bp->indirect_item = indirect_item;
985 bp
1213 struct indirect_item_bucket *bp, *next_bp; local
[all...]
/macosx-10.9.5/file_cmds-230/mv/
H A Dmv.c325 static char *bp; local
335 if (bp != NULL)
336 free(bp);
337 if ((bp = malloc((size_t)sbp->st_blksize)) == NULL) {
373 while ((nread = read(from_fd, bp, (size_t)blen)) > 0)
374 if (write(to_fd, bp, (size_t)nread) != nread) {
/macosx-10.9.5/Libinfo-449.1.3/rpc.subproj/
H A Dxdr_sizeof.c85 x_putbytes(xdrs, bp, len)
87 char *bp;

Completed in 200 milliseconds

1234567891011>>