OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UCNV_ERROR_BUFFER_LENGTH
(Results
1 - 2
of
2
) sorted by null
/external/icu/icu4c/source/common/
ucnv_bld.h
33
#define
UCNV_ERROR_BUFFER_LENGTH
32
172
*
UCNV_ERROR_BUFFER_LENGTH
* U_SIZEOF_UCHAR bytes.
222
uint8_t charErrorBuffer[
UCNV_ERROR_BUFFER_LENGTH
]; /* codepage output from Error functions */
226
UChar UCharErrorBuffer[
UCNV_ERROR_BUFFER_LENGTH
]; /* unicode output from Error functions */
ucnv.c
273
localConverter->subChars = (uint8_t *)uprv_malloc(
UCNV_ERROR_BUFFER_LENGTH
* U_SIZEOF_UCHAR);
279
uprv_memcpy(localConverter->subChars, cnv->subChars,
UCNV_ERROR_BUFFER_LENGTH
* U_SIZEOF_UCHAR);
477
char chars[
UCNV_ERROR_BUFFER_LENGTH
];
508
if (length >
UCNV_ERROR_BUFFER_LENGTH
) {
532
cnv->subChars = (uint8_t *)uprv_malloc(
UCNV_ERROR_BUFFER_LENGTH
* U_SIZEOF_UCHAR);
538
uprv_memset(cnv->subChars, 0,
UCNV_ERROR_BUFFER_LENGTH
* U_SIZEOF_UCHAR);
[
all
...]
Completed in 38 milliseconds