Home
last modified time | relevance | path

Searched refs:DecodeContext (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/core/lib/png/
Dpng_io.h47 struct DecodeContext { struct
59 DecodeContext() : png_ptr(NULL), info_ptr(NULL) {} in DecodeContext() argument
78 int desired_channel_bits, DecodeContext* context);
80 bool CommonFinishDecode(png_bytep data, int row_bytes, DecodeContext* context);
85 void CommonFreeDecode(DecodeContext* context);
Dpng_io.cc79 DecodeContext* const ctx = in ErrorHandler()
80 absl::bit_cast<DecodeContext*>(png_get_io_ptr(png_ptr)); in ErrorHandler()
92 DecodeContext* const ctx = in StringReader()
93 absl::bit_cast<DecodeContext*>(png_get_io_ptr(png_ptr)); in StringReader()
128 void CommonFreeDecode(DecodeContext* context) { in CommonFreeDecode()
141 DecodeContext context; in DecodeHeader()
200 int desired_channel_bits, DecodeContext* context) { in CommonInitDecode()
308 bool CommonFinishDecode(png_bytep data, int row_bytes, DecodeContext* context) { in CommonFinishDecode()
/external/tensorflow/tensorflow/core/kernels/
Ddecode_image_op.cc236 png::DecodeContext decode; in DecodePng()