Home
last modified time | relevance | path

Searched refs:UValue (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFFormValue.cpp409 uint64_t UValue = Value.uval; in dump() local
443 uint32_t Index = UValue >> 32; in dump()
444 uint32_t Offset = UValue & 0xffffffff; in dump()
460 OS << format("0x%02x", (uint8_t)UValue); in dump()
463 OS << format("0x%04x", (uint16_t)UValue); in dump()
466 OS << format("0x%08x", (uint32_t)UValue); in dump()
469 AddrOS << format("0x%016" PRIx64, UValue); in dump()
472 OS << format("0x%016" PRIx64, UValue); in dump()
487 if (UValue > 0) { in dump()
534 UValue); in dump()
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/hicpp/
H A Dsigned-bitwise-integer-literals.cpp6 unsigned UValue = 40u; in examples() local
9 URes = UValue & 1u; //Ok in examples()
10 URes = UValue & -1; in examples()
H A Dsigned-bitwise.cpp30 unsigned int UValue = 42; in binary_bitwise() local
47 UResult = UValue & 1u; // Ok in binary_bitwise()
48 UResult = UValue & UValue; // Ok in binary_bitwise()
65 UResult = UValue & (SByte1 + (SByte1 | SByte2)); in binary_bitwise()
/llvm-project-15.0.7/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp544 for (const Value *UValue : Objs) { in getUnderlyingObjects() local
548 Objects.push_back(UValue); in getUnderlyingObjects()