Lines Matching refs:tempSpace
89 Space *tempSpace; in MakeSpacesFromParts() local
94 tempSpace = new Space; in MakeSpacesFromParts()
95 tempSpace->firstLBA = partitions[i].GetFirstLBA(); in MakeSpacesFromParts()
96 tempSpace->lastLBA = partitions[i].GetLastLBA(); in MakeSpacesFromParts()
97 tempSpace->origPart = &partitions[i]; in MakeSpacesFromParts()
98 tempSpace->partNum = (int) i; in MakeSpacesFromParts()
99 LinkToEnd(tempSpace); in MakeSpacesFromParts()
107 Space *tempSpace; in AddEmptySpace() local
109 tempSpace = new Space; in AddEmptySpace()
110 tempSpace->firstLBA = firstLBA; in AddEmptySpace()
111 tempSpace->lastLBA = lastLBA; in AddEmptySpace()
112 tempSpace->origPart = &emptySpace; in AddEmptySpace()
113 tempSpace->partNum = -1; in AddEmptySpace()
114 LinkToEnd(tempSpace); in AddEmptySpace()