Home | History | Annotate | Download | only in libtiff

Lines Matching defs: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;
426 bp = (unsigned char *)tif->tif_rawcp;
436 NextCode(tif, sp, bp, code, GetNextCode);
447 NextCode(tif, sp, bp, code, GetNextCode);
547 tif->tif_rawcp = (uint8*) bp;
575 #define GetNextCodeCompat(sp, bp, code) { \
576 nextdata |= (unsigned long) *(bp)++ << nextbits; \
579 nextdata |= (unsigned long) *(bp)++ << nextbits;\
595 unsigned char *bp;
647 bp = (unsigned char *)tif->tif_rawcp;
657 NextCode(tif, sp, bp, code, GetNextCodeCompat);
668 NextCode(tif, sp, bp, code, GetNextCodeCompat);
753 tif->tif_rawcp = (uint8*) bp;
869 LZWEncode(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
912 ent = *bp++; cc--; incount++;
915 c = *bp++; cc--; incount++;