Searched refs:tile_pixels (Results 1 – 3 of 3) sorted by relevance
/external/ImageMagick/MagickCore/ |
D | shear.c | 812 *magick_restrict tile_pixels; in IntegralRotateImage() local 827 tile_pixels=p+((height-1)*width+y)*GetPixelChannels(image); in IntegralRotateImage() 842 SetPixelChannel(rotate_image,channel,tile_pixels[i],q); in IntegralRotateImage() 844 tile_pixels-=width*GetPixelChannels(image); in IntegralRotateImage() 1009 *magick_restrict tile_pixels; in IntegralRotateImage() local 1023 tile_pixels=p+((width-1)-y)*GetPixelChannels(image); in IntegralRotateImage() 1038 SetPixelChannel(rotate_image,channel,tile_pixels[i],q); in IntegralRotateImage() 1040 tile_pixels+=width*GetPixelChannels(image); in IntegralRotateImage()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | depthwise_conv_op_gpu.h | 494 const int tile_pixels = tile_width * tile_height; in DepthwiseConv2dGPUKernelNCHWSmall() local 495 const int tile_size = tile_pixels * kBlockDepth; in DepthwiseConv2dGPUKernelNCHWSmall() 520 const int data_idx = thread_depth * tile_pixels + data_pix; in DepthwiseConv2dGPUKernelNCHWSmall() 633 const int tile_pixels = tile_height * tile_width; in LaunchDepthwiseConv2dGPUSmall() local 636 kBlockDepth * (tile_pixels + filter_pixels) * sizeof(S); in LaunchDepthwiseConv2dGPUSmall() 1473 const int tile_pixels = tile_width * tile_height; 1474 const int tile_size = tile_pixels * kBlockDepth; 1504 const int data_idx = thread_depth * tile_pixels + data_pix; 1592 const int tile_pixels = tile_height * tile_width; 1595 kBlockDepth * (tile_pixels + filter_pixels * kAccumPixels) * sizeof(S);
|
/external/ImageMagick/coders/ |
D | tiff.c | 2066 *tile_pixels, in ReadTIFFImage() local 2081 if (HeapOverflowSanityCheck(rows,sizeof(*tile_pixels)) != MagickFalse) in ReadTIFFImage() 2083 tile_pixels=(uint32 *) AcquireQuantumMemory(columns,rows* in ReadTIFFImage() 2084 sizeof(*tile_pixels)); in ReadTIFFImage() 2085 if (tile_pixels == (uint32 *) NULL) in ReadTIFFImage() 2113 if (TIFFReadRGBATile(tiff,(uint32) x,(uint32) y,tile_pixels) == 0) in ReadTIFFImage() 2118 p=tile_pixels+(rows-rows_remaining)*columns; in ReadTIFFImage() 2163 tile_pixels=(uint32 *) RelinquishMagickMemory(tile_pixels); in ReadTIFFImage()
|