Home | History | Annotate | Download | only in src

Lines Matching refs:bptr

352         uchar* bptr = can_use_src_as_trow && y1 < y && y+1 < y2 ? (uchar*)(src - bsz1) : trow;
354 if( bptr != trow )
357 trow[i] = bptr[i];
359 trow[i] = bptr[i + width_n];
361 else if( !(((size_t)(bptr + bsz1)|(size_t)src|width_n) & (sizeof(int)-1)) )
363 *(int*)(bptr + i + bsz1) = *(int*)(src + i);
366 bptr[i + bsz1] = src[i];
373 bptr[i] = bptr[j];
378 bptr[i + width_n] = bptr[j];
385 bptr[i] = bt[i];
388 bptr[i + width_n] = bt[i];
393 x_func( bptr, buf_tail, this );
394 if( bptr != trow )
397 bptr[i] = trow[i];
399 bptr[i + width_n] = trow[i];
542 uchar* bptr;
551 bptr = buf_head;
554 rows[i+top_rows] = bptr;
555 bptr += buf_step;
556 if( bptr >= buf_end )
557 bptr = buf_start;
580 for( bptr = row_count > 0 ?rows[count] : 0; buf_head != bptr && buf_count > 0; buf_count-- )