Home
last modified time | relevance | path

Searched refs:image_bytes (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/glx/
Dindirect_texture_compression.c48 size_t image_bytes; in __indirect_glGetCompressedTexImage() local
56 image_bytes = reply.width; in __indirect_glGetCompressedTexImage()
57 assert(image_bytes <= ((4 * reply.length) - 0)); in __indirect_glGetCompressedTexImage()
58 assert(image_bytes >= ((4 * reply.length) - 3)); in __indirect_glGetCompressedTexImage()
60 if (image_bytes != 0) { in __indirect_glGetCompressedTexImage()
61 _XRead(dpy, (char *) img, image_bytes); in __indirect_glGetCompressedTexImage()
62 if (image_bytes < (4 * reply.length)) { in __indirect_glGetCompressedTexImage()
63 _XEatData(dpy, (4 * reply.length) - image_bytes); in __indirect_glGetCompressedTexImage()
/external/tensorflow/tensorflow/contrib/model_pruning/examples/cifar10/
Dcifar10_input.py71 image_bytes = result.height * result.width * result.depth
74 record_bytes = label_bytes + image_bytes
93 [label_bytes + image_bytes]),
/external/libpng/contrib/gregbook/
Dwpng.c706 ulg image_bytes; in main() local
717 image_bytes = rowbytes * wpng_info.height; in main()
719 wpng_info.image_data = (uch *)malloc(image_bytes); in main()
729 bytes = fread(wpng_info.image_data, 1, image_bytes, wpng_info.infile); in main()
730 if (bytes != image_bytes) { in main()
732 image_bytes, bytes); in main()
/external/tensorflow/tensorflow/python/kernel_tests/
Ddecode_image_op_test.py112 image_bytes = b"ThisIsNotAnImage!"
113 decode = image_ops.decode_image(image_bytes)
/external/mesa3d/src/gallium/tests/graw/
Dgraw_util.h224 const int image_bytes = row_stride * height; in graw_util_create_tex2d() local
254 image_bytes); in graw_util_create_tex2d()
/external/libpng/contrib/tools/
Dpngfix.c856 udigit image_bytes[5]; member
1499 image_digits = uarb_mult32(file->image_bytes, image_digits, in calc_image_size()
1521 file->image_digits = uarb_mult32(file->image_bytes, 0, in calc_image_size()
1975 cmp = uarb_cmp(file->image_bytes, file->image_digits, in process_IDAT()