reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Utility/Scalar.cpp
 2604       operator=(static_cast<int8_t>(data.GetU8(&offset)));
 2607       operator=(static_cast<int16_t>(data.GetU16(&offset)));
 2610       operator=(static_cast<int32_t>(data.GetU32(&offset)));
 2613       operator=(static_cast<int64_t>(data.GetU64(&offset)));
 2617         int128.x[1] = data.GetU64(&offset);
 2618         int128.x[0] = data.GetU64(&offset);
 2620         int128.x[0] = data.GetU64(&offset);
 2621         int128.x[1] = data.GetU64(&offset);
 2627         int256.x[3] = data.GetU64(&offset);
 2628         int256.x[2] = data.GetU64(&offset);
 2629         int256.x[1] = data.GetU64(&offset);
 2630         int256.x[0] = data.GetU64(&offset);
 2632         int256.x[0] = data.GetU64(&offset);
 2633         int256.x[1] = data.GetU64(&offset);
 2634         int256.x[2] = data.GetU64(&offset);
 2635         int256.x[3] = data.GetU64(&offset);