Searched refs:info_bits (Results 1 – 12 of 12) sorted by relevance
| /openbsd/src/gnu/llvm/lldb/examples/python/ |
| D | diagnose_nsstring.py | 111 info_bits = dumped.GetChildMemberWithName("_cfinfo").GetChildAtIndex( 113 is_mutable = (info_bits & 1) == 1 114 is_inline = (info_bits & 0x60) == 0 115 has_explicit_length = (info_bits & (1 | 4)) != 4 116 is_unicode = (info_bits & 0x10) == 0x10 120 has_null = (info_bits & 8) == 8 123 …(info_bits, "yes" if is_mutable else "no", "yes" if is_inline else "no", "yes" if has_explicit_len…
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| D | AppleObjCClassDescriptorV2.h | 38 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr, 44 bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr, 305 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr, 308 if (info_bits) 309 *info_bits = GetInfoBits(); 317 bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr, 320 if (info_bits) 321 *info_bits = GetInfoBits();
|
| D | AppleObjCRuntimeV1.h | 61 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr, 67 bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr,
|
| D | AppleObjCRuntimeV2.cpp | 1076 uint64_t info_bits = 0; in DoExecute() local 1079 if (descriptor_sp->GetTaggedPointerInfo(&info_bits, &value_bits, in DoExecute() 1087 arg_addr, payload, value_bits, info_bits, in DoExecute()
|
| /openbsd/src/gnu/llvm/lldb/examples/summaries/cocoa/ |
| D | NSNumber.py | 34 def __init__(self, valobj, info_bits, data, params): argument 38 self.info_bits = info_bits 52 if self.info_bits == 0: 55 if self.info_bits == 4: 58 if self.info_bits == 8: 61 if self.info_bits == 12: 64 return 'unexpected value:(info=' + str(self.info_bits) + \ 225 valobj, class_data.info_bits(), class_data.value(), class_data.sys_params)
|
| D | CFString.py | 305 return (self.info_bits & 1) == 1 309 return (self.info_bits & 0x60) == 0 316 return (self.info_bits & (1 | 4)) != 4 324 return self.info_bits == 0 328 return (self.info_bits & 0x10) == 0x10 343 self.info_bits = self.read_info_bits() 344 if self.info_bits is None:
|
| D | NSDate.py | 71 def __init__(self, valobj, info_bits, data, params): argument 78 self.data = ((data << 8) | (info_bits << 4)) 230 valobj, class_data.info_bits(), class_data.value(), class_data.sys_params)
|
| D | objc_runtime.py | 561 def info_bits(self): member in TaggedClass_Data
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Language/ObjC/ |
| D | NSString.cpp | 85 uint8_t info_bits = process_sp->ReadUnsignedIntegerFromMemory( in NSStringSummaryProvider() local 90 bool is_mutable = (info_bits & 1) == 1; in NSStringSummaryProvider() 91 bool is_inline = (info_bits & 0x60) == 0; in NSStringSummaryProvider() 92 bool has_explicit_length = (info_bits & (1 | 4)) != 4; in NSStringSummaryProvider() 93 bool is_unicode = (info_bits & 0x10) == 0x10; in NSStringSummaryProvider() 95 bool has_null = (info_bits & 8) == 8; in NSStringSummaryProvider()
|
| D | NSIndexPath.cpp | 81 uint64_t info_bits(0), value_bits(0), payload(0); in Update() local 83 if (descriptor->GetTaggedPointerInfo(&info_bits, &value_bits, &payload)) { in Update()
|
| D | Cocoa.cpp | 930 uint64_t info_bits = 0, value_bits = 0; in NSDateSummaryProvider() local 933 if (descriptor->GetTaggedPointerInfo(&info_bits, &value_bits)) { in NSDateSummaryProvider() 934 date_value_bits = ((value_bits << 8) | (info_bits << 4)); in NSDateSummaryProvider()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/ |
| D | ObjCLanguageRuntime.h | 95 virtual bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr, 99 virtual bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr,
|