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/icu4c/common/
ucnv_bld.h
33
#define
UCNV_ERROR_BUFFER_LENGTH
32
167
*
UCNV_ERROR_BUFFER_LENGTH
* U_SIZEOF_UCHAR bytes.
217
uint8_t charErrorBuffer[
UCNV_ERROR_BUFFER_LENGTH
]; /* codepage output from Error functions */
221
UChar UCharErrorBuffer[
UCNV_ERROR_BUFFER_LENGTH
]; /* unicode output from Error functions */
ucnv.c
265
localConverter->subChars = (uint8_t *)uprv_malloc(
UCNV_ERROR_BUFFER_LENGTH
* U_SIZEOF_UCHAR);
271
uprv_memcpy(localConverter->subChars, cnv->subChars,
UCNV_ERROR_BUFFER_LENGTH
* U_SIZEOF_UCHAR);
479
char chars[
UCNV_ERROR_BUFFER_LENGTH
];
510
if (length >
UCNV_ERROR_BUFFER_LENGTH
) {
534
cnv->subChars = (uint8_t *)uprv_malloc(
UCNV_ERROR_BUFFER_LENGTH
* U_SIZEOF_UCHAR);
540
uprv_memset(cnv->subChars, 0,
UCNV_ERROR_BUFFER_LENGTH
* U_SIZEOF_UCHAR);
[
all
...]
Completed in 71 milliseconds