Lines Matching refs:tempSpace
94 Space *tempSpace; in MakeSpacesFromParts() local
99 tempSpace = new Space; in MakeSpacesFromParts()
100 tempSpace->firstLBA = partitions[i].GetFirstLBA(); in MakeSpacesFromParts()
101 tempSpace->lastLBA = partitions[i].GetLastLBA(); in MakeSpacesFromParts()
102 tempSpace->origPart = &partitions[i]; in MakeSpacesFromParts()
103 tempSpace->partNum = (int) i; in MakeSpacesFromParts()
104 LinkToEnd(tempSpace); in MakeSpacesFromParts()
112 Space *tempSpace; in AddEmptySpace() local
114 tempSpace = new Space; in AddEmptySpace()
115 tempSpace->firstLBA = firstLBA; in AddEmptySpace()
116 tempSpace->lastLBA = lastLBA; in AddEmptySpace()
117 tempSpace->origPart = &emptySpace; in AddEmptySpace()
118 tempSpace->partNum = -1; in AddEmptySpace()
119 LinkToEnd(tempSpace); in AddEmptySpace()