Home | History | Annotate | Download | only in functional

Lines Matching refs:sliceSize

124 	const size_t		sliceSize			= in.length() / numSlices;
125 const size_t sliceSizeRemainder = in.length() - (sliceSize * numSlices);
130 out.strings.push_back(in.substr(ndx * sliceSize, sliceSize) + padding);
133 out.lengths.push_back((int)sliceSize);
138 const std::string lastString = in.substr(numSlices * sliceSize);