Home
last modified time | relevance | path

Searched refs:tempLoc (Results 1 – 3 of 3) sorted by relevance

/dports/biology/bbmap/bbmap/current/fileIO/
H A DByteFile2.java134 int tempLoc=currentLoc; in nextLine() local
136 if(temp==null || tempLoc>=temp.length || temp[tempLoc]==null){ in nextLine()
143 tempLoc=currentLoc; in nextLine()
144 if(temp==null || temp==poison || temp[tempLoc]==null){ in nextLine()
152 assert(tempLoc<temp.length); in nextLine() argument
153 assert(temp[tempLoc]!=null); in nextLine()
154 byte[] r=temp[tempLoc]; in nextLine()
/dports/print/py-psautohint/psautohint-2.0.0/libpsautohint/src/
H A Deval.c527 Fixed lstLoc, tempLoc, cntr; in EvalH() local
555 tempLoc = lstLoc - gGhostWidth; in EvalH()
556 ghostSeg->sLoc = tempLoc; in EvalH()
564 AddHValue(lstLoc, tempLoc, val, spc, lst, ghostSeg); in EvalH()
572 tempLoc = lstLoc + gGhostWidth; in EvalH()
573 ghostSeg->sLoc = tempLoc; in EvalH()
579 AddHValue(tempLoc, lstLoc, val, spc, ghostSeg, lst); in EvalH()
/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2/actions/
H A DTrackPlaceAction.cpp632 CoordsXY tempLoc{ mapLoc.x, mapLoc.y }; in Execute() local
634 tempLoc.x += CoordsDirectionDelta[tempDirection].x; in Execute()
635 tempLoc.y += CoordsDirectionDelta[tempDirection].y; in Execute()
637 … wall_remove_intersecting_walls({ tempLoc, baseZ, clearanceZ }, tempDirection & 3); in Execute()