Lines Matching refs:ubound
60 static void PrintBTEntry(lldb::addr_t lbound, lldb::addr_t ubound, in PrintBTEntry() argument
66 if ((lbound == one_cmpl64 || one_cmpl32) && ubound == 0) { in PrintBTEntry()
70 result.Printf(" ubound = 0x%lx", ubound); in PrintBTEntry()
178 lldb::addr_t ubound; in GetBTEntry() local
185 ubound = data.GetAddress(error, size * 1); in GetBTEntry()
190 ubound = (~ubound) & 0x00000000FFFFFFFF; in GetBTEntry()
192 ubound = ~ubound; in GetBTEntry()
200 PrintBTEntry(lbound, ubound, value, meta, result); in GetBTEntry()
216 lldb::addr_t ubound, lldb::SBTarget &target, in SetBTEntry() argument
234 std::vector<uint8_t> ubound_v = uIntToU8(~ubound, size); in SetBTEntry()
392 uint64_t ubound = std::strtoul(arg[2], &endptr, 16); in DoExecute() local
399 return SetBTEntry(bndcfgu, ptr, lbound, ubound, target, arch, result, in DoExecute()