/external/libnetfilter_conntrack/src/conntrack/ |
D | copy.c | 12 static void copy_attr_orig_ipv4_src(struct nf_conntrack *dest, in copy_attr_orig_ipv4_src() argument 15 dest->head.orig.src.v4 = orig->head.orig.src.v4; in copy_attr_orig_ipv4_src() 18 static void copy_attr_orig_ipv4_dst(struct nf_conntrack *dest, in copy_attr_orig_ipv4_dst() argument 21 dest->head.orig.dst.v4 = orig->head.orig.dst.v4; in copy_attr_orig_ipv4_dst() 24 static void copy_attr_repl_ipv4_src(struct nf_conntrack *dest, in copy_attr_repl_ipv4_src() argument 27 dest->repl.src.v4 = orig->repl.src.v4; in copy_attr_repl_ipv4_src() 30 static void copy_attr_repl_ipv4_dst(struct nf_conntrack *dest, in copy_attr_repl_ipv4_dst() argument 33 dest->repl.dst.v4 = orig->repl.dst.v4; in copy_attr_repl_ipv4_dst() 36 static void copy_attr_orig_ipv6_src(struct nf_conntrack *dest, in copy_attr_orig_ipv6_src() argument 39 memcpy(&dest->head.orig.src, in copy_attr_orig_ipv6_src() [all …]
|
/external/llvm-project/clang/test/Analysis/ |
D | cstring-syntax.c | 24 char dest[10]; in testStrncat() local 25 …strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest) - 1); // expected-warning {{Potential … in testStrncat() 26 …strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest)); // expected-warning {{Potential buffer… in testStrncat() 27 …strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest) - strlen(dest)); // expected-warning… in testStrncat() 28 strncat(dest, src, sizeof(src)); // expected-warning {{Potential buffer overflow. Replace with}} in testStrncat() 30 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(char)); in testStrncat() 34 char dest[10]; in testStrlcpy() local 35 size_t destlen = sizeof(dest); in testStrlcpy() 39 strlcpy(dest, src, sizeof(dest)); in testStrlcpy() 40 strlcpy(dest, src, destlen); in testStrlcpy() [all …]
|
/external/libjpeg-turbo/ |
D | jdatadst.c | 71 my_dest_ptr dest = (my_dest_ptr)cinfo->dest; in init_destination() local 74 dest->buffer = (JOCTET *) in init_destination() 78 dest->pub.next_output_byte = dest->buffer; in init_destination() 79 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in init_destination() 117 my_dest_ptr dest = (my_dest_ptr)cinfo->dest; in empty_output_buffer() local 119 if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) != in empty_output_buffer() 123 dest->pub.next_output_byte = dest->buffer; in empty_output_buffer() 124 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in empty_output_buffer() 135 my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest; in empty_mem_output_buffer() local 138 nextsize = dest->bufsize * 2; in empty_mem_output_buffer() [all …]
|
D | jdatadst-tj.c | 93 my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest; in empty_mem_output_buffer() local 95 if (!dest->alloc) ERREXIT(cinfo, JERR_BUFFER_SIZE); in empty_mem_output_buffer() 98 nextsize = dest->bufsize * 2; in empty_mem_output_buffer() 104 MEMCOPY(nextbuffer, dest->buffer, dest->bufsize); in empty_mem_output_buffer() 106 free(dest->newbuffer); in empty_mem_output_buffer() 108 dest->newbuffer = nextbuffer; in empty_mem_output_buffer() 110 dest->pub.next_output_byte = nextbuffer + dest->bufsize; in empty_mem_output_buffer() 111 dest->pub.free_in_buffer = dest->bufsize; in empty_mem_output_buffer() 113 dest->buffer = nextbuffer; in empty_mem_output_buffer() 114 dest->bufsize = nextsize; in empty_mem_output_buffer() [all …]
|
D | wrppm.c | 93 ppm_dest_ptr dest = (ppm_dest_ptr)dinfo; in put_pixel_rows() local 95 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in put_pixel_rows() 108 ppm_dest_ptr dest = (ppm_dest_ptr)dinfo; in copy_pixel_rows() local 115 ptr = dest->pub.buffer[0]; in copy_pixel_rows() 116 bufferptr = dest->iobuffer; in copy_pixel_rows() 118 MEMCOPY(bufferptr, ptr, dest->samples_per_row); in copy_pixel_rows() 120 for (col = dest->samples_per_row; col > 0; col--) { in copy_pixel_rows() 124 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in copy_pixel_rows() 135 ppm_dest_ptr dest = (ppm_dest_ptr)dinfo; in put_rgb() local 144 ptr = dest->pub.buffer[0]; in put_rgb() [all …]
|
D | wrbmp.c | 78 LOCAL(void) write_colormap(j_decompress_ptr cinfo, bmp_dest_ptr dest, 101 bmp_dest_ptr dest = (bmp_dest_ptr)dinfo; in put_pixel_rows() local 107 if (dest->use_inversion_array) { in put_pixel_rows() 110 ((j_common_ptr)cinfo, dest->whole_image, in put_pixel_rows() 111 dest->cur_output_row, (JDIMENSION)1, TRUE); in put_pixel_rows() 112 dest->cur_output_row++; in put_pixel_rows() 115 outptr = dest->iobuffer; in put_pixel_rows() 121 inptr = dest->pub.buffer[0]; in put_pixel_rows() 124 MEMCOPY(outptr, inptr, dest->row_width); in put_pixel_rows() 163 pad = dest->pad_bytes; in put_pixel_rows() [all …]
|
/external/libaom/libaom/third_party/libyuv/source/ |
D | convert_jpeg.cc | 38 I420Buffers* dest = (I420Buffers*)(opaque); in JpegCopyI420() local 42 dest->y, dest->y_stride, in JpegCopyI420() 43 dest->u, dest->u_stride, in JpegCopyI420() 44 dest->v, dest->v_stride, in JpegCopyI420() 45 dest->w, rows); in JpegCopyI420() 46 dest->y += rows * dest->y_stride; in JpegCopyI420() 47 dest->u += ((rows + 1) >> 1) * dest->u_stride; in JpegCopyI420() 48 dest->v += ((rows + 1) >> 1) * dest->v_stride; in JpegCopyI420() 49 dest->h -= rows; in JpegCopyI420() 56 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI422ToI420() local [all …]
|
/external/libyuv/files/source/ |
D | convert_jpeg.cc | 39 I420Buffers* dest = (I420Buffers*)(opaque); in JpegCopyI420() local 41 dest->y, dest->y_stride, dest->u, dest->u_stride, dest->v, in JpegCopyI420() 42 dest->v_stride, dest->w, rows); in JpegCopyI420() 43 dest->y += rows * dest->y_stride; in JpegCopyI420() 44 dest->u += ((rows + 1) >> 1) * dest->u_stride; in JpegCopyI420() 45 dest->v += ((rows + 1) >> 1) * dest->v_stride; in JpegCopyI420() 46 dest->h -= rows; in JpegCopyI420() 53 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI422ToI420() local 55 dest->y, dest->y_stride, dest->u, dest->u_stride, dest->v, in JpegI422ToI420() 56 dest->v_stride, dest->w, rows); in JpegI422ToI420() [all …]
|
/external/llvm-project/clang/test/CodeGen/ |
D | arm-neon-vld.c | 1426 void test_vld2_dup_f16(float16x4x2_t *dest, const float16_t *src) { in test_vld2_dup_f16() argument 1427 *dest = vld2_dup_f16(src); in test_vld2_dup_f16() 1443 void test_vld2_dup_f32(float32x2x2_t *dest, const float32_t *src) { in test_vld2_dup_f32() argument 1444 *dest = vld2_dup_f32(src); in test_vld2_dup_f32() 1460 void test_vld2_dup_p16(poly16x4x2_t *dest, const poly16_t *src) { in test_vld2_dup_p16() argument 1461 *dest = vld2_dup_p16(src); in test_vld2_dup_p16() 1475 void test_vld2_dup_p8(poly8x8x2_t *dest, poly8_t *src) { in test_vld2_dup_p8() argument 1476 *dest = vld2_dup_p8(src); in test_vld2_dup_p8() 1492 void test_vld2_dup_s16(int16x4x2_t *dest, const int16_t *src) { in test_vld2_dup_s16() argument 1493 *dest = vld2_dup_s16(src); in test_vld2_dup_s16() [all …]
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert_jpeg.cc | 39 I420Buffers* dest = (I420Buffers*)(opaque); in JpegCopyI420() local 41 dest->y, dest->y_stride, dest->u, dest->u_stride, dest->v, in JpegCopyI420() 42 dest->v_stride, dest->w, rows); in JpegCopyI420() 43 dest->y += rows * dest->y_stride; in JpegCopyI420() 44 dest->u += ((rows + 1) >> 1) * dest->u_stride; in JpegCopyI420() 45 dest->v += ((rows + 1) >> 1) * dest->v_stride; in JpegCopyI420() 46 dest->h -= rows; in JpegCopyI420() 53 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI422ToI420() local 55 dest->y, dest->y_stride, dest->u, dest->u_stride, dest->v, in JpegI422ToI420() 56 dest->v_stride, dest->w, rows); in JpegI422ToI420() [all …]
|
/external/avb/libavb/ |
D | avb_hashtree_descriptor.c | 29 const AvbHashtreeDescriptor* src, AvbHashtreeDescriptor* dest) { in avb_hashtree_descriptor_validate_and_byteswap() argument 32 avb_memcpy(dest, src, sizeof(AvbHashtreeDescriptor)); in avb_hashtree_descriptor_validate_and_byteswap() 35 (AvbDescriptor*)dest)) in avb_hashtree_descriptor_validate_and_byteswap() 38 if (dest->parent_descriptor.tag != AVB_DESCRIPTOR_TAG_HASHTREE) { in avb_hashtree_descriptor_validate_and_byteswap() 43 dest->dm_verity_version = avb_be32toh(dest->dm_verity_version); in avb_hashtree_descriptor_validate_and_byteswap() 44 dest->image_size = avb_be64toh(dest->image_size); in avb_hashtree_descriptor_validate_and_byteswap() 45 dest->tree_offset = avb_be64toh(dest->tree_offset); in avb_hashtree_descriptor_validate_and_byteswap() 46 dest->tree_size = avb_be64toh(dest->tree_size); in avb_hashtree_descriptor_validate_and_byteswap() 47 dest->data_block_size = avb_be32toh(dest->data_block_size); in avb_hashtree_descriptor_validate_and_byteswap() 48 dest->hash_block_size = avb_be32toh(dest->hash_block_size); in avb_hashtree_descriptor_validate_and_byteswap() [all …]
|
/external/google-breakpad/src/processor/ |
D | simple_serializer-inl.h | 59 static char *Write(bool boolean, char *dest) { in Write() argument 60 *dest = static_cast<char>(boolean? 255 : 0); in Write() 61 return ++dest; in Write() 76 static char *Write(const string &str, char *dest) { in Write() argument 77 strcpy(dest, str.c_str()); in Write() 78 return dest + SizeOf(str); in Write() 90 static char *Write(const char *cstring, char *dest) { in Write() argument 91 strcpy(dest, cstring); in Write() 92 return dest + SizeOf(cstring); in Write() 107 static char *Write(const Line &line, char *dest) { in Write() argument [all …]
|
/external/tensorflow/tensorflow/core/lib/jpeg/ |
D | jpeg_handle.cc | 46 MemDestMgr *dest = reinterpret_cast<MemDestMgr *>(cinfo->dest); in MemInitDestination() local 47 VLOG(1) << "Initializing buffer=" << dest->bufsize << " bytes"; in MemInitDestination() 48 dest->pub.next_output_byte = dest->buffer; in MemInitDestination() 49 dest->pub.free_in_buffer = dest->bufsize; in MemInitDestination() 50 dest->datacount = 0; in MemInitDestination() 51 if (dest->dest) { in MemInitDestination() 52 dest->dest->clear(); in MemInitDestination() 58 MemDestMgr *dest = reinterpret_cast<MemDestMgr *>(cinfo->dest); in MemEmptyOutputBuffer() local 59 VLOG(1) << "Writing " << dest->bufsize << " bytes"; in MemEmptyOutputBuffer() 60 if (dest->dest) { in MemEmptyOutputBuffer() [all …]
|
/external/vboot_reference/tests/ |
D | utility_string_tests.c | 20 char dest[128]; in StrncatTest() local 23 TEST_EQ(0, StrnAppend(dest, NULL, sizeof(dest)), "StrnAppend('', null)"); in StrncatTest() 24 TEST_EQ(0, StrnAppend(NULL, "Hey!", sizeof(dest)), "StrnAppend(null, '')"); in StrncatTest() 27 *dest = 0; in StrncatTest() 28 TEST_EQ(0, StrnAppend(dest, "", sizeof(dest)), "StrnAppend('', '')"); in StrncatTest() 29 TEST_EQ(0, strcmp(dest, ""), "StrnAppend('', '') result"); in StrncatTest() 32 strcpy(dest, "Bob"); in StrncatTest() 33 TEST_EQ(3, StrnAppend(dest, "", sizeof(dest)), "StrnAppend(B, '')"); in StrncatTest() 34 TEST_EQ(0, strcmp(dest, "Bob"), "StrnAppend(B, '') result"); in StrncatTest() 37 *dest = 0; in StrncatTest() [all …]
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | idct16x16_1_add_neon.c | 17 static INLINE void idct16x16_1_add_pos_kernel(uint8_t **dest, const int stride, in idct16x16_1_add_pos_kernel() argument 19 const uint8x16_t a = vld1q_u8(*dest); in idct16x16_1_add_pos_kernel() 21 vst1q_u8(*dest, b); in idct16x16_1_add_pos_kernel() 22 *dest += stride; in idct16x16_1_add_pos_kernel() 25 static INLINE void idct16x16_1_add_neg_kernel(uint8_t **dest, const int stride, in idct16x16_1_add_neg_kernel() argument 27 const uint8x16_t a = vld1q_u8(*dest); in idct16x16_1_add_neg_kernel() 29 vst1q_u8(*dest, b); in idct16x16_1_add_neg_kernel() 30 *dest += stride; in idct16x16_1_add_neg_kernel() 33 void vpx_idct16x16_1_add_neon(const tran_low_t *input, uint8_t *dest, in vpx_idct16x16_1_add_neon() argument 42 idct16x16_1_add_pos_kernel(&dest, stride, dc); in vpx_idct16x16_1_add_neon() [all …]
|
/external/libcups/cups/ |
D | transcode.c | 70 cups_utf8_t *dest, /* O - Target string */ in cupsCharsetToUTF8() argument 86 …DEBUG_printf(("2cupsCharsetToUTF8(dest=%p, src=\"%s\", maxout=%d, encoding=%d)", (void *)dest, src… in cupsCharsetToUTF8() 88 if (!dest || !src || maxout < 1) in cupsCharsetToUTF8() 90 if (dest) in cupsCharsetToUTF8() 91 *dest = '\0'; in cupsCharsetToUTF8() 104 strlcpy((char *)dest, src, (size_t)maxout); in cupsCharsetToUTF8() 105 return ((int)strlen((char *)dest)); in cupsCharsetToUTF8() 112 destptr = dest; in cupsCharsetToUTF8() 120 destend = dest + maxout - 2; in cupsCharsetToUTF8() 137 return ((int)(destptr - dest)); in cupsCharsetToUTF8() [all …]
|
/external/guava/guava/src/com/google/common/net/ |
D | PercentEscaper.java | 168 char[] dest = new char[3]; in escape() local 169 dest[0] = '%'; in escape() 170 dest[2] = UPPER_HEX_DIGITS[cp & 0xF]; in escape() 171 dest[1] = UPPER_HEX_DIGITS[cp >>> 4]; in escape() 172 return dest; in escape() 176 char[] dest = new char[6]; in escape() local 177 dest[0] = '%'; in escape() 178 dest[3] = '%'; in escape() 179 dest[5] = UPPER_HEX_DIGITS[cp & 0xF]; in escape() 181 dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; in escape() [all …]
|
/external/guava/android/guava/src/com/google/common/net/ |
D | PercentEscaper.java | 168 char[] dest = new char[3]; in escape() local 169 dest[0] = '%'; in escape() 170 dest[2] = UPPER_HEX_DIGITS[cp & 0xF]; in escape() 171 dest[1] = UPPER_HEX_DIGITS[cp >>> 4]; in escape() 172 return dest; in escape() 176 char[] dest = new char[6]; in escape() local 177 dest[0] = '%'; in escape() 178 dest[3] = '%'; in escape() 179 dest[5] = UPPER_HEX_DIGITS[cp & 0xF]; in escape() 181 dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; in escape() [all …]
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/ |
D | PercentEscaper.java | 215 char[] dest = new char[3]; in escape() local 216 dest[0] = '%'; in escape() 217 dest[2] = UPPER_HEX_DIGITS[cp & 0xF]; in escape() 218 dest[1] = UPPER_HEX_DIGITS[cp >>> 4]; in escape() 219 return dest; in escape() 223 char[] dest = new char[6]; in escape() local 224 dest[0] = '%'; in escape() 225 dest[3] = '%'; in escape() 226 dest[5] = UPPER_HEX_DIGITS[cp & 0xF]; in escape() 228 dest[4] = UPPER_HEX_DIGITS[0x8 | (cp & 0x3)]; in escape() [all …]
|
/external/libaom/libaom/aom_scale/generic/ |
D | gen_scalers.c | 41 unsigned char *dest, in aom_horizontal_line_5_4_scale_c() argument 53 dest[0] = (unsigned char)a; in aom_horizontal_line_5_4_scale_c() 54 dest[1] = (unsigned char)((b * 192 + c * 64 + 128) >> 8); in aom_horizontal_line_5_4_scale_c() 55 dest[2] = (unsigned char)((c * 128 + d * 128 + 128) >> 8); in aom_horizontal_line_5_4_scale_c() 56 dest[3] = (unsigned char)((d * 64 + e * 192 + 128) >> 8); in aom_horizontal_line_5_4_scale_c() 59 dest += 4; in aom_horizontal_line_5_4_scale_c() 64 unsigned char *dest, int dest_pitch, in aom_vertical_band_5_4_scale_c() argument 66 const unsigned char *const dest_end = dest + dest_width; in aom_vertical_band_5_4_scale_c() 67 while (dest < dest_end) { in aom_vertical_band_5_4_scale_c() 74 dest[0 * dest_pitch] = (unsigned char)a; in aom_vertical_band_5_4_scale_c() [all …]
|
/external/libchrome/base/json/ |
D | string_escape.cc | 35 bool EscapeSpecialCodePoint(uint32_t code_point, std::string* dest) { in EscapeSpecialCodePoint() argument 41 dest->append("\\b"); in EscapeSpecialCodePoint() 44 dest->append("\\f"); in EscapeSpecialCodePoint() 47 dest->append("\\n"); in EscapeSpecialCodePoint() 50 dest->append("\\r"); in EscapeSpecialCodePoint() 53 dest->append("\\t"); in EscapeSpecialCodePoint() 56 dest->append("\\\\"); in EscapeSpecialCodePoint() 59 dest->append("\\\""); in EscapeSpecialCodePoint() 64 dest->append("\\u003C"); in EscapeSpecialCodePoint() 69 dest->append("\\u2028"); in EscapeSpecialCodePoint() [all …]
|
/external/skqp/src/gpu/glsl/ |
D | GrGLSLUtil.cpp | 11 template<> void GrGLSLGetMatrix<3>(float* dest, const SkMatrix& src) { in GrGLSLGetMatrix() argument 13 dest[0] = SkScalarToFloat(src[SkMatrix::kMScaleX]); in GrGLSLGetMatrix() 14 dest[1] = SkScalarToFloat(src[SkMatrix::kMSkewY]); in GrGLSLGetMatrix() 15 dest[2] = SkScalarToFloat(src[SkMatrix::kMPersp0]); in GrGLSLGetMatrix() 18 dest[3] = SkScalarToFloat(src[SkMatrix::kMSkewX]); in GrGLSLGetMatrix() 19 dest[4] = SkScalarToFloat(src[SkMatrix::kMScaleY]); in GrGLSLGetMatrix() 20 dest[5] = SkScalarToFloat(src[SkMatrix::kMPersp1]); in GrGLSLGetMatrix() 23 dest[6] = SkScalarToFloat(src[SkMatrix::kMTransX]); in GrGLSLGetMatrix() 24 dest[7] = SkScalarToFloat(src[SkMatrix::kMTransY]); in GrGLSLGetMatrix() 25 dest[8] = SkScalarToFloat(src[SkMatrix::kMPersp2]); in GrGLSLGetMatrix() [all …]
|
/external/lzma/CPP/Windows/ |
D | PropVariantConv.cpp | 83 bool ConvertUtcFileTimeToString(const FILETIME &ft, wchar_t *dest, int level) throw() in ConvertUtcFileTimeToString() argument 90 dest[i] = c; in ConvertUtcFileTimeToString() 98 void ConvertPropVariantToShortString(const PROPVARIANT &prop, char *dest) throw() in ConvertPropVariantToShortString() argument 100 *dest = 0; in ConvertPropVariantToShortString() 104 case VT_BSTR: dest[0] = '?'; dest[1] = 0; return; in ConvertPropVariantToShortString() 105 case VT_UI1: ConvertUInt32ToString(prop.bVal, dest); return; in ConvertPropVariantToShortString() 106 case VT_UI2: ConvertUInt32ToString(prop.uiVal, dest); return; in ConvertPropVariantToShortString() 107 case VT_UI4: ConvertUInt32ToString(prop.ulVal, dest); return; in ConvertPropVariantToShortString() 108 case VT_UI8: ConvertUInt64ToString(prop.uhVal.QuadPart, dest); return; in ConvertPropVariantToShortString() 109 case VT_FILETIME: ConvertUtcFileTimeToString(prop.filetime, dest); return; in ConvertPropVariantToShortString() [all …]
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_idct.c | 20 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht4x4_16_add_c() argument 46 dest[j * stride + i] = clip_pixel_add(dest[j * stride + i], in vp9_iht4x4_16_add_c() 59 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht8x8_64_add_c() argument 79 dest[j * stride + i] = clip_pixel_add(dest[j * stride + i], in vp9_iht8x8_64_add_c() 92 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht16x16_256_add_c() argument 112 dest[j * stride + i] = clip_pixel_add(dest[j * stride + i], in vp9_iht16x16_256_add_c() 119 void vp9_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride, in vp9_idct4x4_add() argument 122 vpx_idct4x4_16_add(input, dest, stride); in vp9_idct4x4_add() 124 vpx_idct4x4_1_add(input, dest, stride); in vp9_idct4x4_add() 127 void vp9_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iwht4x4_add() argument [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | ArabicShaping.java | 89 char[] dest, int destStart, int destSize) throws ArabicShapingException { in shape() argument 98 if (dest == null && destSize != 0) { in shape() 102 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) { in shape() 105 ") for buffer of length " + dest.length); in shape() 132 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize); in shape() 161 char[] dest = src; in shape() local 165 dest = new char[src.length * 2]; // max in shape() 167 int len = shape(src, 0, src.length, dest, 0, dest.length); in shape() 169 return new String(dest, 0, len); in shape() 832 private void shapeToArabicDigitsWithContext(char[] dest, in shapeToArabicDigitsWithContext() argument [all …]
|