Searched refs:targetsize (Results 1 – 6 of 6) sorted by relevance
/third_party/libsnd/src/ |
D | ogg_vcomment.c | 181 …F_PRIVATE *psf, ogg_packet *packet, vorbiscomment_ident *ident, const char *vendor, int targetsize) in vorbiscomment_write_tags() argument 214 if (targetsize > 0 && tag_name_len + tag_body_len + psf->header.indx > targetsize) in vorbiscomment_write_tags() 226 if (targetsize < 0) in vorbiscomment_write_tags() 233 psf_binheader_writef (psf, "z", BHWz ((psf->header.indx + -targetsize + 255) / 255 * 255 - 1)) ; in vorbiscomment_write_tags() 235 else if (targetsize > 0) in vorbiscomment_write_tags() 236 psf_binheader_writef (psf, "z", BHWz (targetsize - psf->header.indx)) ; in vorbiscomment_write_tags()
|
D | ogg_vcomment.h | 43 …PRIVATE *psf, ogg_packet *packet, vorbiscomment_ident *ident, const char *vendor, int targetsize) ;
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | ccapitst.c | 278 int32_t targetsize; in TestConvert() local 897 targetsize = ucnv_toUChars(myConverter, in TestConvert() 908 uchar2=(UChar*)malloc((targetsize+1) * sizeof(UChar)); in TestConvert() 909 targetsize = ucnv_toUChars(myConverter, in TestConvert() 911 targetsize+1, in TestConvert() 953 …targetsize = ucnv_toUChars(myConverter, uchar2, targetsize, output_cp_buffer, (int32_t)strlen(outp… in TestConvert() 954 if(targetsize != 0){ in TestConvert() 958 …targetsize = ucnv_toUChars(myConverter, uchar2, -1, output_cp_buffer, (int32_t)strlen(output_cp_bu… in TestConvert() 959 if(targetsize != 0 || err != U_ILLEGAL_ARGUMENT_ERROR){ in TestConvert() 963 targetsize = ucnv_toUChars(myConverter, uchar2, 0, output_cp_buffer, 0, &err); in TestConvert() [all …]
|
/third_party/icu/docs/userguide/conversion/ |
D | converters.md | 797 targetsize = ucnv_toUChars(myConverter, NULL, targetcapacity, 802 uchar2=(UChar*)malloc((targetsize) * sizeof(UChar)); 803 targetsize = ucnv_toUChars(myConverter, uchar2, targetsize, 822 ucnv_toUChars(myConverter, target_uchars, targetsize, 829 int32_t targetsize = str.extract(0, str.length(), target, sizeof(target), "SJIS"); 830 target[targetsize] = 0; /* NULL termination */
|
/third_party/python/Objects/ |
D | unicodeobject.c | 2702 as_ucs4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize, in as_ucs4() argument 2724 if (targetsize < targetlen) { in as_ucs4() 2727 if (copy_null && 0 < targetsize) in as_ucs4() 2752 PyUnicode_AsUCS4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize, in PyUnicode_AsUCS4() argument 2755 if (target == NULL || targetsize < 0) { in PyUnicode_AsUCS4() 2759 return as_ucs4(string, target, targetsize, copy_null); in PyUnicode_AsUCS4()
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 84991 unsigned int targetsize; member
|