Lines Matching refs:bp
188 #define NextCode(tif, sp, bp, code, get) get(sp, bp, code)
340 #define GetNextCode(sp, bp, code) { \
341 nextdata = (nextdata<<8) | *(bp)++; \
344 nextdata = (nextdata<<8) | *(bp)++; \
367 unsigned char *bp;
427 bp = (unsigned char *)tif->tif_rawcp;
440 NextCode(tif, sp, bp, code, GetNextCode);
451 NextCode(tif, sp, bp, code, GetNextCode);
555 tif->tif_rawcc -= (tmsize_t)( (uint8*) bp - tif->tif_rawcp );
556 tif->tif_rawcp = (uint8*) bp;
584 #define GetNextCodeCompat(sp, bp, code) { \
585 nextdata |= (unsigned long) *(bp)++ << nextbits; \
588 nextdata |= (unsigned long) *(bp)++ << nextbits;\
604 unsigned char *bp;
657 bp = (unsigned char *)tif->tif_rawcp;
667 NextCode(tif, sp, bp, code, GetNextCodeCompat);
678 NextCode(tif, sp, bp, code, GetNextCodeCompat);
767 tif->tif_rawcp = (uint8*) bp;
883 LZWEncode(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
926 ent = *bp++; cc--; incount++;
929 c = *bp++; cc--; incount++;