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