Searched defs:num_bytes (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_lists.c39 int num_bytes = __gl_CallListsNumBytes( type ) * n; local
40 if (num_bytes < 0)
50 num_bytes;
55 crMemcpy( data_ptr + 8, lists, num_bytes );
/vbox/src/libs/libpng-1.2.8/
H A Dpng.c85 /* Tells libpng that we have already handled the first "num_bytes" bytes
87 * stream we can set num_bytes = 8 so that libpng will not attempt to read
92 png_set_sig_bytes(png_structp png_ptr, int num_bytes) argument
95 if (num_bytes > 8)
98 png_ptr->sig_bytes = (png_byte)(num_bytes < 0 ? 0 : num_bytes);
148 png_uint_32 num_bytes; local
155 num_bytes = (png_uint_32)items * size;
158 ptr = (png_voidp)png_malloc((png_structp)png_ptr, num_bytes);
165 if (num_bytes > (png_uint_3
[all...]

Completed in 53 milliseconds