Home | History | Annotate | Download | only in common

Lines Matching full:totalsize

1068     uint32_t totalSize = offsetof(CompactTrieHeader,offsets);
1089 totalSize += node->size();
1100 totalSize += nodeCount*sizeof(uint32_t);
1107 fprintf(stderr, "%d nodes, %d unique, %d bytes\n", nodes.size(), nodeCount, totalSize);
1109 uint8_t *bytes = (uint8_t *)uprv_malloc(totalSize);
1116 header->size = totalSize;
1325 uint32_t totalSize = ds->readUInt32(header->size);
1326 int32_t sizeWithUData = (int32_t)totalSize + headerSize;
1336 totalSize);
1354 uprv_memset(outBytes, 0, totalSize);
1392 ds->swapArray16(ds, inBytes+nodesOff, totalSize-nodesOff, outBytes+nodesOff, status);
1395 ds->writeUInt32(&outputHeader->size, totalSize);