HomeSort by relevance Sort by last modified time
    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
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 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);
487 char chars[UCNV_ERROR_BUFFER_LENGTH];
518 if (length > UCNV_ERROR_BUFFER_LENGTH) {
542 cnv->subChars = (uint8_t *)uprv_malloc(UCNV_ERROR_BUFFER_LENGTH * U_SIZEOF_UCHAR);
548 uprv_memset(cnv->subChars, 0, UCNV_ERROR_BUFFER_LENGTH * U_SIZEOF_UCHAR);
    [all...]

Completed in 35 milliseconds