Lines Matching defs:bytes
38 const uint8_t *bytes, int32_t length);
109 const uint8_t *bytes, int32_t length) {
283 /* return the number of bytes that should have been written */
418 uint8_t *bytes;
428 bytes=UCM_GET_BYTES(table, m);
429 low=bytes[unitIndex];
435 bytes=UCM_GET_BYTES(table, m);
436 high=bytes[unitIndex];
475 bytes=UCM_GET_BYTES(table, m);
476 high=bytes[unitIndex];
518 fprintf(stderr, "error: multiple mappings from same bytes\n");
636 uint8_t *bytes, *resultBytes;
652 bytes=UCM_GET_BYTES(table, m);
655 /* 1..3: store the bytes in the value word */
657 value=((uint32_t)*bytes++)<<16;
659 value|=((uint32_t)*bytes++)<<8;
661 value|=*bytes;
665 /* store the bytes in fromUBytes[] and the index in the value word */
668 uprv_memcpy(resultBytes, bytes, m->bLen);