Home | History | Annotate | Download | only in common

Lines Matching refs:bytes

35  *                                min/max bytes per character, etc.
129 * Offsets are counted in bytes from the beginning of the MBCS header structure.
147 * counts bytes in fromUBytes[]
216 * -- DBCS, MBCS, EBCDIC_STATEFUL, ... 2/3/4 bytes result, see ucnvmbcs.c
306 #define MBCS_VALUE_2_FROM_STAGE_2(bytes, stage2Entry, c) ((uint16_t *)(bytes))[16*(uint32_t)(uint16_t)(stage2Entry)+((c)&0xf)]
307 #define MBCS_VALUE_4_FROM_STAGE_2(bytes, stage2Entry, c) ((uint32_t *)(bytes))[16*(uint32_t)(uint16_t)(stage2Entry)+((c)&0xf)]
309 #define MBCS_POINTER_3_FROM_STAGE_2(bytes, stage2Entry, c) ((bytes)+(16*(uint32_t)(uint16_t)(stage2Entry)+((c)&0xf))*3)
321 * mostly how many bytes are stored per entry.
494 * It converts one single Unicode code point into codepage bytes, encoded
495 * as one 32-bit value. The function returns the number of bytes in *pValue:
496 * 1..4 the number of bytes in *pValue
500 * *pValue will contain the resulting bytes with the last byte in bits 7..0,