Lines Matching refs:orig
42 GPTPart::GPTPart(const GPTPart & orig) {
43 partitionType = orig.partitionType;
44 uniqueGUID = orig.uniqueGUID;
45 firstLBA = orig.firstLBA;
46 lastLBA = orig.lastLBA;
47 attributes = orig.attributes;
48 memcpy(name, orig.name, NAME_SIZE * sizeof( name[ 0 ] ) );
274 GPTPart & GPTPart::operator=(const GPTPart & orig) {
275 partitionType = orig.partitionType;
276 uniqueGUID = orig.uniqueGUID;
277 firstLBA = orig.firstLBA;
278 lastLBA = orig.lastLBA;
279 attributes = orig.attributes;
280 memcpy(name, orig.name, NAME_SIZE * sizeof( name[ 0 ] ) );