Home
last modified time | relevance | path

Searched refs:read_pixel (Results 1 – 2 of 2) sorted by relevance

/external/libjpeg-turbo/
Drdtarga.c64 void (*read_pixel) (tga_source_ptr sinfo); member
186 (*source->read_pixel) (source); /* Load next pixel into tga_pixel */ in get_8bit_gray_row()
205 (*source->read_pixel) (source); /* Load next pixel into tga_pixel */ in get_8bit_row()
227 (*source->read_pixel) (source); /* Load next pixel into tga_pixel */ in get_16bit_row()
254 (*source->read_pixel) (source); /* Load next pixel into tga_pixel */ in get_24bit_row()
378 source->read_pixel = read_rle_pixel; in start_input_tga()
383 source->read_pixel = read_non_rle_pixel; in start_input_tga()
/external/tensorflow/tensorflow/contrib/image/kernels/
Dsegmentation_ops.h169 T pixel = read_pixel(batch, row, col); in union_down()
172 if (row + 1 < num_rows_ && read_pixel(batch, row + 1, col) == pixel) { in union_down()
183 T pixel = read_pixel(batch, row, col); in union_right()
186 if (col + 1 < num_cols_ && read_pixel(batch, row, col + 1) == pixel) { in union_right()
195 read_pixel(const OutputType batch, const OutputType row, in read_pixel() function