Searched refs:tile_pixels (Results 1 – 3 of 3) sorted by relevance
/external/ImageMagick/MagickCore/ |
D | shear.c | 828 *magick_restrict tile_pixels; in IntegralRotateImage() local 843 tile_pixels=p+((height-1)*width+y)*GetPixelChannels(image); in IntegralRotateImage() 858 SetPixelChannel(rotate_image,channel,tile_pixels[i],q); in IntegralRotateImage() 860 tile_pixels-=width*GetPixelChannels(image); in IntegralRotateImage() 1025 *magick_restrict tile_pixels; in IntegralRotateImage() local 1039 tile_pixels=p+((width-1)-y)*GetPixelChannels(image); in IntegralRotateImage() 1054 SetPixelChannel(rotate_image,channel,tile_pixels[i],q); in IntegralRotateImage() 1056 tile_pixels+=width*GetPixelChannels(image); in IntegralRotateImage()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | depthwise_conv_op_gpu.h | 520 const int tile_pixels = tile_width * tile_height; 521 const int tile_size = tile_pixels * kBlockDepth; 546 const int data_idx = thread_depth * tile_pixels + data_pix; 660 const int tile_pixels = tile_height * tile_width; 663 kBlockDepth * (tile_pixels + filter_pixels) * sizeof(S); 1431 const int tile_pixels = tile_width * tile_height; 1432 const int tile_size = tile_pixels * kBlockDepth; 1462 const int data_idx = thread_depth * tile_pixels + data_pix; 1551 const int tile_pixels = tile_height * tile_width; 1554 kBlockDepth * (tile_pixels + filter_pixels * kAccumPixels) * sizeof(S);
|
/external/ImageMagick/coders/ |
D | tiff.c | 1985 *tile_pixels; in ReadTIFFImage() local 1994 if (HeapOverflowSanityCheck(rows,sizeof(*tile_pixels)) != MagickFalse) in ReadTIFFImage() 2002 tile_pixels=(unsigned char *) AcquireQuantumMemory(extent, in ReadTIFFImage() 2003 sizeof(*tile_pixels)); in ReadTIFFImage() 2004 if (tile_pixels == (unsigned char *) NULL) in ReadTIFFImage() 2006 (void) memset(tile_pixels,0,extent*sizeof(*tile_pixels)); in ReadTIFFImage() 2044 if (TIFFReadTile(tiff,tile_pixels,(uint32) x,(uint32) y,0,i) == 0) in ReadTIFFImage() 2046 p=tile_pixels; in ReadTIFFImage() 2074 tile_pixels=(unsigned char *) RelinquishMagickMemory(tile_pixels); in ReadTIFFImage()
|