Home | History | Annotate | Download | only in core

Lines Matching refs:dataSize

74     static RunHead* Alloc(int rowCount, size_t dataSize) {
75 size_t size = sizeof(RunHead) + rowCount * sizeof(YOffset) + dataSize;
79 head->fDataSize = dataSize;
1007 size_t dataSize = 0;
1009 dataSize += row->fData->count();
1013 if (0 == dataSize) {
1022 RunHead* head = RunHead::Alloc(fRows.count(), dataSize);