Home | History | Annotate | Download | only in common

Lines Matching defs:bytes

358     uint32_t        size;           // Size of the data in bytes
700 virtual void write(uint8_t *bytes, uint32_t &offset, const UVector32 &/*translate*/) {
702 *((uint16_t *)(bytes+offset)) = (fChars.length() & kCountMask)
725 virtual void write(uint8_t *bytes, uint32_t &offset, const UVector32 &translate) {
726 BuildCompactTrieNode::write(bytes, offset, translate);
729 CompactTrieHorizontalEntry *entry = (CompactTrieHorizontalEntry *)(bytes+offset);
765 virtual void write(uint8_t *bytes, uint32_t &offset, const UVector32 &translate) {
766 CompactTrieVerticalNode *node = (CompactTrieVerticalNode *)(bytes+offset);
767 BuildCompactTrieNode::write(bytes, offset, translate);
1107 fprintf(stderr, "%d nodes, %d unique, %d bytes\n", nodes.size(), nodeCount, totalSize);
1109 uint8_t *bytes = (uint8_t *)uprv_malloc(totalSize);
1110 if (bytes == NULL) {
1115 CompactTrieHeader *header = (CompactTrieHeader *)bytes;
1132 node->write(bytes, offset, translate);
1165 fprintf(stderr, "Horizontal nodes: %d total, average %f bytes with %f items\n", hCount,
1167 fprintf(stderr, "Vertical nodes: %d total, average %f bytes with %f items\n", vCount,
1172 uprv_free(bytes);
1335 udata_printError(ds, "triedict_swap(): too few bytes (%d after ICU Data header) for trie data.\n",