Lines Matching defs:BytePrefix
359 static void copyBytesForDefRange(SmallString<20> &BytePrefix,
362 BytePrefix.resize(2 + sizeof(T));
364 memcpy(&BytePrefix[0], &SymKindLE, 2);
365 memcpy(&BytePrefix[2], &DefRangeHeader, sizeof(T));
375 SmallString<20> BytePrefix;
376 copyBytesForDefRange(BytePrefix, codeview::S_DEFRANGE_REGISTER_REL, DRHdr);
377 emitCVDefRangeDirective(Ranges, BytePrefix);
383 SmallString<20> BytePrefix;
384 copyBytesForDefRange(BytePrefix, codeview::S_DEFRANGE_SUBFIELD_REGISTER,
386 emitCVDefRangeDirective(Ranges, BytePrefix);
392 SmallString<20> BytePrefix;
393 copyBytesForDefRange(BytePrefix, codeview::S_DEFRANGE_REGISTER, DRHdr);
394 emitCVDefRangeDirective(Ranges, BytePrefix);
400 SmallString<20> BytePrefix;
401 copyBytesForDefRange(BytePrefix, codeview::S_DEFRANGE_FRAMEPOINTER_REL,
403 emitCVDefRangeDirective(Ranges, BytePrefix);