Lines Matching defs:out
15 static inline void join_no_empty_check(const SkIRect& joinWith, SkIRect* out);
125 Node* out = static_cast<Node*>(fNodes.allocThrow(fNodeSize));
126 out->fNumChildren = 0;
127 out->fLevel = level;
128 return out;
320 Branch out = (*branches)[0];
322 return out;
474 // Expand 'out' to include 'joinWith'
475 static inline void join_no_empty_check(const SkIRect& joinWith, SkIRect* out) {
478 if (joinWith.fLeft < out->fLeft) { out->fLeft = joinWith.fLeft; }
479 if (joinWith.fTop < out->fTop) { out->fTop = joinWith.fTop; }
480 if (joinWith.fRight > out->fRight) { out->fRight = joinWith.fRight; }
481 if (joinWith.fBottom > out->fBottom) { out->fBottom = joinWith.fBottom; }