Home
last modified time | relevance | path

Searched refs:newlength (Results 1 – 8 of 8) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DStringSearch.java645 int newlength = destinationlength; in addToIntArray() local
646 if (offset + 1 == newlength) { in addToIntArray()
647 newlength += increments; in addToIntArray()
648 int temp[] = new int[newlength]; in addToIntArray()
670 int newlength = destinationlength; in addToLongArray() local
671 if (offset + 1 == newlength) { in addToLongArray()
672 newlength += increments; in addToLongArray()
673 long temp[] = new long[newlength]; in addToLongArray()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DStringSearch.java662 int newlength = destinationlength; in addToIntArray() local
663 if (offset + 1 == newlength) { in addToIntArray()
664 newlength += increments; in addToIntArray()
665 int temp[] = new int[newlength]; in addToIntArray()
687 int newlength = destinationlength; in addToLongArray() local
688 if (offset + 1 == newlength) { in addToLongArray()
689 newlength += increments; in addToLongArray()
690 long temp[] = new long[newlength]; in addToLongArray()
/external/pdfium/third_party/libpng16/
Dpngrutil.c603 png_alloc_size_t *newlength /* must be initialized to the maximum! */, in png_decompress_chunk() argument
630 if (limit < *newlength) in png_decompress_chunk()
631 *newlength = limit; in png_decompress_chunk()
642 /* output: */ NULL, newlength); in png_decompress_chunk()
660 png_alloc_size_t new_size = *newlength; in png_decompress_chunk()
670 text + prefix_size, newlength); in png_decompress_chunk()
674 if (new_size == *newlength) in png_decompress_chunk()
677 text[prefix_size + *newlength] = 0; in png_decompress_chunk()
/external/skia/third_party/libpng/
Dpngrutil.c603 png_alloc_size_t *newlength /* must be initialized to the maximum! */, in png_decompress_chunk() argument
630 if (limit < *newlength) in png_decompress_chunk()
631 *newlength = limit; in png_decompress_chunk()
642 /* output: */ NULL, newlength); in png_decompress_chunk()
660 png_alloc_size_t new_size = *newlength; in png_decompress_chunk()
670 text + prefix_size, newlength); in png_decompress_chunk()
674 if (new_size == *newlength) in png_decompress_chunk()
677 text[prefix_size + *newlength] = 0; in png_decompress_chunk()
/external/libpng/
Dpngrutil.c604 png_alloc_size_t *newlength /* must be initialized to the maximum! */, in png_decompress_chunk() argument
631 if (limit < *newlength) in png_decompress_chunk()
632 *newlength = limit; in png_decompress_chunk()
643 /* output: */ NULL, newlength); in png_decompress_chunk()
661 png_alloc_size_t new_size = *newlength; in png_decompress_chunk()
671 text + prefix_size, newlength); in png_decompress_chunk()
675 if (new_size == *newlength) in png_decompress_chunk()
678 text[prefix_size + *newlength] = 0; in png_decompress_chunk()
/external/icu/icu4c/source/i18n/
Dusearch.cpp219 uint32_t newlength = *destinationlength; in addTouint32_tArray() local
220 if (offset + 1 == newlength) { in addTouint32_tArray()
221 newlength += increments; in addTouint32_tArray()
223 sizeof(int32_t) * newlength, status); in addTouint32_tArray()
228 *destinationlength = newlength; in addTouint32_tArray()
259 uint32_t newlength = *destinationlength; in addTouint64_tArray() local
260 if (offset + 1 == newlength) { in addTouint64_tArray()
261 newlength += increments; in addTouint64_tArray()
263 sizeof(int64_t) * newlength, status); in addTouint64_tArray()
270 *destinationlength = newlength; in addTouint64_tArray()
/external/python/cpython2/Modules/
Darraymodule.c1230 Py_ssize_t newlength; in array_fromfile() local
1233 if ((newlength = Py_SIZE(self) + n) <= 0 || in array_fromfile()
1234 (newbytes = newlength * itemsize) / itemsize != in array_fromfile()
1235 (size_t)newlength) in array_fromfile()
/external/syslinux/com32/lib/libpng/
Dpngrutil.c322 png_size_t prefix_size, png_size_t *newlength) in png_decompress_chunk() argument
382 *newlength = prefix_size + expanded_size; in png_decompress_chunk()
428 *newlength = prefix_size; in png_decompress_chunk()