Searched refs:bp (Results 201 - 225 of 671) sorted by relevance

1234567891011>>

/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_thunder.c69 register unsigned char *bp; local
74 bp = (unsigned char *)tif->tif_rawcp;
81 n = *bp++, cc--;
121 tif->tif_rawcp = (tidata_t) bp;
H A Dtif_luv.c188 unsigned char* bp; local
206 bp = (unsigned char*) tif->tif_rawcp;
211 if (*bp >= 128) { /* run */
212 rc = *bp++ + (2-128);
213 b = (int16)(*bp++ << shft);
218 rc = *bp++; /* nul is noop */
220 tp[i++] |= (int16)*bp++ << shft;
226 tif->tif_rawcp = (tidata_t) bp;
232 tif->tif_rawcp = (tidata_t) bp;
245 unsigned char* bp; local
287 unsigned char* bp; local
343 LogLuvDecodeStrip(TIFF* tif, tidata_t bp, tsize_t cc, tsample_t s) argument
359 LogLuvDecodeTile(TIFF* tif, tidata_t bp, tsize_t cc, tsample_t s) argument
373 LogL16Encode(TIFF* tif, tidata_t bp, tsize_t cc, tsample_t s) argument
461 LogLuvEncode24(TIFF* tif, tidata_t bp, tsize_t cc, tsample_t s) argument
506 LogLuvEncode32(TIFF* tif, tidata_t bp, tsize_t cc, tsample_t s) argument
596 LogLuvEncodeStrip(TIFF* tif, tidata_t bp, tsize_t cc, tsample_t s) argument
611 LogLuvEncodeTile(TIFF* tif, tidata_t bp, tsize_t cc, tsample_t s) argument
[all...]
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/racoon/
H A Doakley.c638 vchar_t *buf = NULL, *res = NULL, *bp; local
678 bp = (side == INITIATOR ? iph2->nonce : iph2->nonce_p);
679 memcpy(p, bp->v, bp->l);
680 p += bp->l;
682 bp = (side == INITIATOR ? iph2->nonce_p : iph2->nonce);
683 memcpy(p, bp->v, bp->l);
684 p += bp->l;
939 vchar_t *buf = NULL, *res = NULL, *bp; local
1019 vchar_t *buf = NULL, *res = NULL, *bp; local
1149 vchar_t *buf = NULL, *res = NULL, *bp; local
2595 vchar_t *bp; local
3013 vchar_t *buf = NULL, *bp; local
[all...]
/macosx-10.10.1/ntp-92/ntpd/
H A Drefclock_palisade.c1194 u_char *bp
1199 ((char *) &sval)[0] = *bp++;
1200 ((char *) &sval)[1] = *bp++;
1201 ((char *) &sval)[2] = *bp++;
1202 ((char *) &sval)[3] = *bp++;
1204 ((char *) &sval)[3] = *bp++;
1205 ((char *) &sval)[2] = *bp++;
1206 ((char *) &sval)[1] = *bp++;
1207 ((char *) &sval)[0] = *bp;
1218 u_char *bp
[all...]
/macosx-10.10.1/text_cmds-88/ul/
H A Dul.c448 char *bp = tcapbuf; local
451 CURS_UP = tgetstr("up", &bp);
452 CURS_RIGHT = tgetstr("ri", &bp);
454 CURS_RIGHT = tgetstr("nd", &bp);
455 CURS_LEFT = tgetstr("le", &bp);
457 CURS_LEFT = tgetstr("bc", &bp);
461 ENTER_STANDOUT = tgetstr("so", &bp);
462 EXIT_STANDOUT = tgetstr("se", &bp);
463 ENTER_UNDERLINE = tgetstr("us", &bp);
464 EXIT_UNDERLINE = tgetstr("ue", &bp);
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/vmalloc/
H A Dvmpool.c122 Block_t *bp, *tp; local
144 for(bp = vd->free; bp; bp = SEGLINK(bp))
145 if(bp == tp)
167 Block_t *bp; local
178 bp = (Block_t*)data;
179 SIZE(bp) = POOLFREE;
180 SEGLINK(bp)
[all...]
/macosx-10.10.1/libresolv-57/
H A Ddst_hmac_link.c277 char *bp; local
292 bp = (char *) strchr(buff, '\0');
293 b_len = buff_len - (bp - buff);
303 strcat(bp, "Key: ");
304 bp += strlen("Key: ");
305 b_len = buff_len - (bp - buff);
307 len = b64_ntop(key, key_len, bp, b_len);
310 bp += len;
311 *(bp++) = '\n';
312 *bp
[all...]
/macosx-10.10.1/system_cmds-643.1.1/chpass.tproj/
H A Dedit.c168 char *bp, *gecos, *p; local
240 if ((bp = gecos = strdup(pw->pw_gecos)) == NULL) {
246 p = strsep(&bp, ",");
252 p = strsep(&bp, ",");
258 p = strsep(&bp, ",");
264 p = strsep(&bp, ",");
270 bp = strdup(bp ? bp : "");
271 list[E_OTHER].save = bp;
[all...]
/macosx-10.10.1/tcpdump-61/tcpdump/
H A Dprint-dccp.c115 static void dccp_print_ack_no(const u_char *bp) argument
117 const struct dccp_hdr *dh = (const struct dccp_hdr *)bp;
119 (struct dccp_hdr_ack_bits *)(bp + dccp_basic_hdr_len(dh));
164 * @bp - beginning of dccp packet
168 void dccp_print(const u_char *bp, const u_char *data2, u_int len) argument
180 dh = (const struct dccp_hdr *)bp;
234 if (vflag && TTEST2(bp[0], len)) {
254 (struct dccp_hdr_request *)(bp + dccp_basic_hdr_len(dh));
263 (struct dccp_hdr_response *)(bp + dccp_basic_hdr_len(dh));
293 (struct dccp_hdr_reset *)(bp
[all...]
H A Dprint-ap1394.c58 ap1394_hdr_print(register const u_char *bp, u_int length) argument
63 fp = (const struct firewire_header *)bp;
H A Dprint-hsrp.c101 hsrp_print(register const u_int8_t *bp, register u_int len) argument
103 struct hsrp *hp = (struct hsrp *) bp;
H A Dprint-ipnet.c24 ipnet_hdr_print(struct netdissect_options *ndo, const u_char *bp, u_int length) argument
27 hdr = (const ipnet_hdr_t *)bp;
H A Dprint-lane.c64 lane_hdr_print(netdissect_options *ndo, const u_char *bp) argument
66 (void)ND_PRINT((ndo, "lecid:%x ", EXTRACT_16BITS(bp)));
H A Dprint-rt6.c44 rt6_print(register const u_char *bp, const u_char *bp2 _U_) argument
52 dp = (struct ip6_rthdr *)bp;
H A Dprint-symantec.c49 symantec_hdr_print(register const u_char *bp, u_int length) argument
54 sp = (const struct symantec_header *)bp;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/openssl/
H A Dx509.h501 #define d2i_X509_bio(bp,x509) (X509 *)ASN1_d2i_bio((char *(*)())X509_new, \
502 (char *(*)())d2i_X509, (bp),(unsigned char **)(x509))
503 #define i2d_X509_bio(bp,x509) ASN1_i2d_bio(i2d_X509,bp,(unsigned char *)x509)
512 #define d2i_X509_CRL_bio(bp,crl) (X509_CRL *)ASN1_d2i_bio((char *(*)()) \
513 X509_CRL_new,(char *(*)())d2i_X509_CRL, (bp),\
515 #define i2d_X509_CRL_bio(bp,crl) ASN1_i2d_bio(i2d_X509_CRL,bp,\
525 #define d2i_PKCS7_bio(bp,p7) (PKCS7 *)ASN1_d2i_bio((char *(*)()) \
526 PKCS7_new,(char *(*)())d2i_PKCS7, (bp),\
[all...]
/macosx-10.10.1/Chess-310.6/sjeng/
H A Dleval.c128 int wp = 0, bp = 0; local
249 bp++;
318 bp++;
330 bp++;
342 bp++;
355 bp++;
375 if (wp + bp > 10)
415 else if (!bp) score = -INF;
/macosx-10.10.1/OpenSSL098-52/src/crypto/bio/
H A Dbss_null.c140 static int null_gets(BIO *bp, char *buf, int size) argument
145 static int null_puts(BIO *bp, const char *str) argument
/macosx-10.10.1/ncurses-44/ncurses/form/
H A Dfty_alnum.c143 unsigned char *bp = (unsigned char *)field_buffer(field, 0); local
146 Check_CTYPE_Field(result, bp, width, Check_This_Character);
H A Dfty_alpha.c143 unsigned char *bp = (unsigned char *)field_buffer(field, 0); local
146 Check_CTYPE_Field(result, bp, width, Check_This_Character);
/macosx-10.10.1/remote_cmds-47/rpc_yppasswdd.tproj/
H A Dyppasswdd_mkpw.c202 char buf[10], *bp = NULL, *p, *t; local
214 p = bp = malloc((resid = st.st_size) + 1);
226 p = bp;
228 for (n = 1; p < bp + st.st_size; n++, p = t) {
244 if (p >= bp + st.st_size)
310 free(bp);
321 if (bp)
322 free(bp);
/macosx-10.10.1/tidy-15.15/tidy/include/
H A Dbuffio.h31 byte* bp; /**< Pointer to bytes */ member in struct:_TidyBuffer
56 TIDY_EXPORT void TIDY_CALL tidyBufAttach( TidyBuffer* buf, byte* bp, uint size );
/macosx-10.10.1/xnu-2782.1.97/bsd/vfs/
H A Dvfs_journal.c339 buf_t bp; local
355 bp = alloc_io_buf(jnl->jdev, 1);
385 * To address this, we use the extended bufattr struct embedded in the bp.
388 bap = &bp->b_attr;
392 buf_setflags(bp, B_READ);
399 buf_setsize(bp, curlen);
400 buf_setcount(bp, curlen);
401 buf_setdataptr(bp, (uintptr_t)data);
402 buf_setblkno(bp, (daddr64_t) ((jnl->jdev_offset + *offset) / (off_t)jnl->jhdr->jhdr_size));
403 buf_setlblkno(bp, (daddr64_
569 buffer_flushed_callback(struct buf *bp, void *arg) argument
2601 journal_modify_block_start(journal *jnl, struct buf *bp) argument
2709 journal_modify_block_abort(journal *jnl, struct buf *bp) argument
2776 journal_modify_block_end(journal *jnl, struct buf *bp, void (*func)(buf_t bp, void *arg), void *arg) argument
2914 journal_kill_block(journal *jnl, struct buf *bp) argument
3733 struct buf *bp; local
4036 buf_t bp, *bparray; local
4387 buf_t bp, tbp, sbp; local
4855 journal_modify_block_start(__unused journal *jnl, __unused struct buf *bp) argument
4861 journal_modify_block_end(__unused journal *jnl, __unused struct buf *bp, __unused void (*func)(struct buf *bp, void *arg), __unused void *arg) argument
4870 journal_kill_block(__unused journal *jnl, __unused struct buf *bp) argument
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/pem/
H A Dpem_lib.c225 int PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm, const char *name, BIO *bp, argument
236 if (!PEM_read_bio(bp,&nm,&header,&data,&len)) {
285 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, argument
373 i=PEM_write_bio(bp,name,buf,data,i);
539 int PEM_write_bio(BIO *bp, const char *name, char *header, unsigned char *data, argument
550 if ( (BIO_write(bp,"-----BEGIN ",11) != 11) ||
551 (BIO_write(bp,name,nlen) != nlen) ||
552 (BIO_write(bp,"-----\n",6) != 6))
558 if ( (BIO_write(bp,header,i) != i) ||
559 (BIO_write(bp,"\
619 PEM_read_bio(BIO *bp, char **name, char **header, unsigned char **data, long *len) argument
[all...]
/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dmail_copy.c136 char *bp; local
227 bp = vstring_str(buf);
229 if ((flags & MAIL_COPY_QUOTE) && *bp == 'F' && !strncmp(bp, "From ", 5))
231 if ((flags & MAIL_COPY_DOT) && *bp == '.')

Completed in 464 milliseconds

1234567891011>>