Lines Matching defs:bytes
38 const uint8_t *bytes, int32_t length);
110 const uint8_t *bytes, int32_t length) {
284 /* return the number of bytes that should have been written */
419 uint8_t *bytes;
429 bytes=UCM_GET_BYTES(table, m);
430 low=bytes[unitIndex];
436 bytes=UCM_GET_BYTES(table, m);
437 high=bytes[unitIndex];
476 bytes=UCM_GET_BYTES(table, m);
477 high=bytes[unitIndex];
519 fprintf(stderr, "error: multiple mappings from same bytes\n");
637 uint8_t *bytes, *resultBytes;
653 bytes=UCM_GET_BYTES(table, m);
656 /* 1..3: store the bytes in the value word */
658 value=((uint32_t)*bytes++)<<16;
660 value|=((uint32_t)*bytes++)<<8;
662 value|=*bytes;
666 /* store the bytes in fromUBytes[] and the index in the value word */
669 uprv_memcpy(resultBytes, bytes, m->bLen);