Home
last modified time | relevance | path

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

/external/libpng/contrib/tools/
Dpngfix.c2785 process_chunk(struct file *file, png_uint_32 file_crc, png_uint_32 next_length, in process_chunk() argument
2866 file->length = next_length; in process_chunk()
2946 file->length = next_length; in process_chunk()
3031 png_uint_32 next_length = get32(buffer, nused); in sync_stream() local
3033 if (next_length < 0x7fffffff) in sync_stream()
3040 process_chunk(file, file_crc, next_length, next_type); in sync_stream()
3127 png_uint_32 next_length; in read_chunk() local
3129 nread += read_4(file, &next_length); in read_chunk()
3130 if (nread == 8 && next_length <= 0x7fffffff) in read_chunk()
3142 process_chunk(file, file_crc, next_length, next_type); in read_chunk()
/external/v8/src/runtime/
Druntime-strings.cc855 int next_length = 0; in ConvertCaseHelper() local
857 next_length = mapping->get(next, 0, chars); in ConvertCaseHelper()
858 if (next_length == 0) next_length = 1; in ConvertCaseHelper()
860 int current_length = i + char_length + next_length; in ConvertCaseHelper()