HomeSort by relevance Sort by last modified time
    Searched defs:num_to_check (Results 1 - 4 of 4) sorted by null

  /external/libpng/
pngread.c 365 num_to_check = 8 - num_checked; local
367 png_read_data(png_ptr, &(info_ptr->signature[num_checked]), num_to_check);
370 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check))
373 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4))
    [all...]
pngpread.c 122 num_to_check = 8 - num_checked; local
124 if (png_ptr->buffer_size < num_to_check)
126 num_to_check = png_ptr->buffer_size;
130 num_to_check);
131 png_ptr->sig_bytes = (png_byte)(png_ptr->sig_bytes + num_to_check);
133 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check))
136 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4))
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngread.c 333 num_to_check = 8 - num_checked; local
335 png_read_data(png_ptr, &(info_ptr->signature[num_checked]), num_to_check);
338 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check))
341 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4))
    [all...]
pngpread.c 108 num_to_check = 8 - num_checked; local
110 if (png_ptr->buffer_size < num_to_check)
112 num_to_check = png_ptr->buffer_size;
116 num_to_check);
117 png_ptr->sig_bytes = (png_byte)(png_ptr->sig_bytes+num_to_check);
119 if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check))
122 png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4))
    [all...]

Completed in 54 milliseconds