Lines Matching defs:bytes
35 const uint8_t *bytes, int32_t length);
107 const uint8_t *bytes, int32_t length) {
281 /* return the number of bytes that should have been written */
416 uint8_t *bytes;
426 bytes=UCM_GET_BYTES(table, m);
427 low=bytes[unitIndex];
433 bytes=UCM_GET_BYTES(table, m);
434 high=bytes[unitIndex];
473 bytes=UCM_GET_BYTES(table, m);
474 high=bytes[unitIndex];
516 fprintf(stderr, "error: multiple mappings from same bytes\n");
634 uint8_t *bytes, *resultBytes;
650 bytes=UCM_GET_BYTES(table, m);
653 /* 1..3: store the bytes in the value word */
655 value=((uint32_t)*bytes++)<<16;
657 value|=((uint32_t)*bytes++)<<8;
659 value|=*bytes;
663 /* store the bytes in fromUBytes[] and the index in the value word */
666 uprv_memcpy(resultBytes, bytes, m->bLen);