Searched refs:yHash (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c1954 Point** yHash; local
1982 ALLOC(yHash, Point*, hashSize);
1984 yHash[k] = NULL;
1999 curHash = yHash + ((curpt->y - hashOffset - 1) >> MDP_PREC);
2007 curHash = yHash + ((ept->y - hashOffset - 1) >> MDP_PREC);
2018 for(pt = yHash[k];pt; pt=pt->nextByY) {
2089 free(yHash);
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DProcessPath.java1926 Point[] yHash = new Point[hashSize];
1939 curpt.nextByY = yHash[curHashInd];
1940 yHash[curHashInd] = curpt;
1947 ept.nextByY = yHash[curHashInd];
1948 yHash[curHashInd] = ept;
1955 for(Point pt = yHash[k];pt != null; pt=pt.nextByY) {

Completed in 1432 milliseconds