Lines Matching refs:other
99 CompressDxtBlock(CompressDxtBlock&& other) in SUITE()
100 : srcPixels(other.srcPixels) in SUITE()
101 , dstBlocks(other.dstBlocks) in SUITE()
102 , srcX(other.srcX) in SUITE()
103 , srcY(other.srcY) in SUITE()
104 , stride(other.stride) in SUITE()
105 , dstBlockOffset(other.dstBlockOffset) in SUITE()
107 other.srcX = -1; in SUITE()
108 other.srcY = -1; in SUITE()
109 other.stride = -1; in SUITE()
110 other.dstBlockOffset = -1; in SUITE()
253 DecompressDxtBlock(DecompressDxtBlock&& other) in SUITE()
254 : srcBlocks(other.srcBlocks) in SUITE()
255 , dstPixels(other.dstPixels) in SUITE()
256 , dstX(other.dstX) in SUITE()
257 , dstY(other.dstY) in SUITE()
258 , stride(other.stride) in SUITE()
259 , srcBlockOffset(other.srcBlockOffset) in SUITE()
261 other.dstX = -1; in SUITE()
262 other.dstY = -1; in SUITE()
263 other.stride = -1; in SUITE()
264 other.srcBlockOffset = -1; in SUITE()