Home | History | Annotate | Download | only in core

Lines Matching defs:dataHeight

67                             int dataWidth, int dataHeight,
344 int dataHeight = height + 2*pad;
347 size_t dataSize = dataWidth*dataHeight*sizeof(DFData);
352 SkAutoSMalloc<1024> edgeStorage(dataWidth*dataHeight*sizeof(char));
354 sk_bzero(edgePtr, dataWidth*dataHeight*sizeof(char));
358 dataWidth, dataHeight,
362 init_distances(dataPtr, edgePtr, dataWidth, dataHeight);
369 for (int j = 1; j < dataHeight-1; ++j) {
397 currData = dataPtr+dataWidth*(dataHeight-2) - 1; // skip outer buffer
398 currEdge = edgePtr+dataWidth*(dataHeight-2) - 1;
399 for (int j = 1; j < dataHeight-1; ++j) {
430 for (int j = 1; j < dataHeight-1; ++j) {