Searched refs:info_bits (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCClassDescriptorV2.h | 41 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr, 47 bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr, 341 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr, 344 if (info_bits) 345 *info_bits = GetInfoBits(); 353 bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr, 356 if (info_bits) 357 *info_bits = GetInfoBits();
|
H A D | AppleObjCRuntimeV1.h | 61 bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr, 67 bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr,
|
H A D | AppleObjCRuntimeV2.cpp | 1065 uint64_t info_bits = 0; in DoExecute() local 1068 if (descriptor_sp->GetTaggedPointerInfo(&info_bits, &value_bits, in DoExecute() 1076 arg_addr, payload, value_bits, info_bits, in DoExecute()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
H A 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()
|
H A D | NSIndexPath.cpp | 83 uint64_t info_bits(0), value_bits(0), payload(0); in Update() local 85 if (descriptor->GetTaggedPointerInfo(&info_bits, &value_bits, &payload)) { in Update()
|
H A D | Cocoa.cpp | 941 uint64_t info_bits = 0, value_bits = 0; in NSDateSummaryProvider() local 944 if (descriptor->GetTaggedPointerInfo(&info_bits, &value_bits)) { in NSDateSummaryProvider() 945 date_value_bits = ((value_bits << 8) | (info_bits << 4)); in NSDateSummaryProvider()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ |
H A D | ObjCLanguageRuntime.h | 102 virtual bool GetTaggedPointerInfo(uint64_t *info_bits = nullptr, 106 virtual bool GetTaggedPointerInfoSigned(uint64_t *info_bits = nullptr,
|