| /openbsd/src/gnu/llvm/lldb/include/lldb/ |
| D | lldb-defines.h | 18 #if !defined(UINT32_MAX) 19 #define UINT32_MAX 4294967295U macro 34 #define LLDB_GENERIC_ERROR UINT32_MAX 75 #define LLDB_INVALID_INDEX32 UINT32_MAX 76 #define LLDB_INVALID_IVAR_OFFSET UINT32_MAX 77 #define LLDB_INVALID_IMAGE_TOKEN UINT32_MAX 78 #define LLDB_INVALID_MODULE_VERSION UINT32_MAX 79 #define LLDB_INVALID_REGNUM UINT32_MAX 83 #define LLDB_INVALID_FRAME_ID UINT32_MAX 86 #define LLDB_INVALID_LINE_NUMBER UINT32_MAX [all …]
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Utility/ |
| D | ProcessInfo.h | 52 bool UserIDIsValid() const { return m_uid != UINT32_MAX; } in UserIDIsValid() 54 bool GroupIDIsValid() const { return m_gid != UINT32_MAX; } in GroupIDIsValid() 96 uint32_t m_uid = UINT32_MAX; 97 uint32_t m_gid = UINT32_MAX; 111 : ProcessInfo(name, arch, pid), m_euid(UINT32_MAX), m_egid(UINT32_MAX), in ProcessInstanceInfo() 116 m_euid = UINT32_MAX; in Clear() 117 m_egid = UINT32_MAX; in Clear() 125 bool EffectiveUserIDIsValid() const { return m_euid != UINT32_MAX; } in EffectiveUserIDIsValid() 127 bool EffectiveGroupIDIsValid() const { return m_egid != UINT32_MAX; } in EffectiveGroupIDIsValid() 149 uint32_t m_euid = UINT32_MAX; [all …]
|
| /openbsd/src/gnu/llvm/lldb/source/Utility/ |
| D | ArchSpec.cpp | 275 #define CPU_ANY (UINT32_MAX) 286 … llvm::MachO::CPU_TYPE_ARM, CPU_ANY, UINT32_MAX, UINT32_MAX}, 287 …lvm::MachO::CPU_TYPE_ARM, llvm::MachO::CPU_SUBTYPE_ARM_ALL, UINT32_MAX, SUBTYPE_MASK}, 288 …lvm::MachO::CPU_TYPE_ARM, llvm::MachO::CPU_SUBTYPE_ARM_V4T, UINT32_MAX, SUBTYPE_MASK}, 289 …lvm::MachO::CPU_TYPE_ARM, llvm::MachO::CPU_SUBTYPE_ARM_V4T, UINT32_MAX, SUBTYPE_MASK}, 290 …lvm::MachO::CPU_TYPE_ARM, llvm::MachO::CPU_SUBTYPE_ARM_V6, UINT32_MAX, SUBTYPE_MASK}, 291 …lvm::MachO::CPU_TYPE_ARM, llvm::MachO::CPU_SUBTYPE_ARM_V6M, UINT32_MAX, SUBTYPE_MASK}, 292 …lvm::MachO::CPU_TYPE_ARM, llvm::MachO::CPU_SUBTYPE_ARM_V5TEJ, UINT32_MAX, SUBTYPE_MASK}, 293 …lvm::MachO::CPU_TYPE_ARM, llvm::MachO::CPU_SUBTYPE_ARM_V5TEJ, UINT32_MAX, SUBTYPE_MASK}, 294 …lvm::MachO::CPU_TYPE_ARM, llvm::MachO::CPU_SUBTYPE_ARM_V5TEJ, UINT32_MAX, SUBTYPE_MASK}, [all …]
|
| D | DataEncoder.cpp | 55 return UINT32_MAX; in PutU8() 67 return UINT32_MAX; in PutU16() 79 return UINT32_MAX; in PutU32() 91 return UINT32_MAX; in PutU64() 108 return UINT32_MAX; in PutUnsigned() 120 return UINT32_MAX; in PutData() 130 return UINT32_MAX; in PutCString()
|
| /openbsd/src/gnu/llvm/llvm/lib/Support/ |
| D | BranchProbability.cpp | 58 while (Denominator > UINT32_MAX) { in getBranchProbability() 81 uint64_t ProductLow = (Num & UINT32_MAX) * N; in scale() 85 uint32_t Lower32 = ProductLow & UINT32_MAX; in scale() 86 uint32_t Mid32Partial = ProductHigh & UINT32_MAX; in scale() 96 if (UpperQ > UINT32_MAX) in scale()
|
| /openbsd/src/gnu/llvm/lldb/source/Core/ |
| D | SourceManager.cpp | 174 if (m_last_line != 0 && m_last_line != UINT32_MAX) in DisplaySourceLinesWithLineNumbersUsingLastFile() 193 m_last_line = UINT32_MAX; in DisplaySourceLinesWithLineNumbersUsingLastFile() 245 m_last_line = UINT32_MAX; in DisplaySourceLinesWithLineNumbersUsingLastFile() 290 if (m_last_line == UINT32_MAX) in DisplayMoreWithLineNumbers() 317 m_last_line, m_last_count, UINT32_MAX, column, "", s, bp_locs); in DisplayMoreWithLineNumbers() 482 return UINT32_MAX; in GetLineOffset() 491 return UINT32_MAX; in GetLineOffset() 516 if (end_offset == UINT32_MAX) in GetLineLength() 597 if (start_line_offset != UINT32_MAX) { in DisplaySourceLines() 600 if (end_line_offset == UINT32_MAX) in DisplaySourceLines() [all …]
|
| D | ValueObjectSyntheticFilter.cpp | 52 m_synthetic_children_count(UINT32_MAX), in ValueObjectSynthetic() 88 if (m_synthetic_children_count < UINT32_MAX) in CalculateNumChildren() 91 if (max < UINT32_MAX) { in CalculateNumChildren() 199 m_synthetic_children_count = UINT32_MAX; in UpdateValue() 315 if (index == UINT32_MAX) in GetChildMemberWithName() 324 uint32_t found_index = UINT32_MAX; in GetIndexOfChildWithName() 336 if (index == UINT32_MAX) in GetIndexOfChildWithName() 342 return UINT32_MAX; in GetIndexOfChildWithName()
|
| /openbsd/src/sbin/fdisk/ |
| D | fdisk.c | 112 UINT32_MAX, &errstr); in main() 115 BLOCKALIGNMENT, UINT32_MAX); in main() 234 blockcount = strtonum(arg, 1, UINT32_MAX, &errstr); in parse_bootprt() 236 errx(1, "Block argument %s [%u..%u].", errstr, 1, UINT32_MAX); in parse_bootprt() 242 blockoffset = strtonum(poffset, 1, UINT32_MAX, &errstr); in parse_bootprt() 245 UINT32_MAX); in parse_bootprt()
|
| /openbsd/src/sys/arch/powerpc64/powerpc64/ |
| D | clock.c | 64 if (cycles > UINT32_MAX >> 1) in dec_rearm() 65 cycles = UINT32_MAX >> 1; in dec_rearm() 76 mtdec(UINT32_MAX); in dec_trigger() 118 mtdec(UINT32_MAX >> 1); /* clear DEC exception */ in decr_intr()
|
| /openbsd/src/gnu/llvm/lldb/source/Target/ |
| D | ThreadSpec.cpp | 24 uint32_t index = UINT32_MAX; in CreateFromStructuredData() 56 if (m_index != UINT32_MAX) in SerializeToStructuredData() 85 if (m_index == UINT32_MAX) in IndexMatches() 127 return (m_index != UINT32_MAX || m_tid != LLDB_INVALID_THREAD_ID || in HasSpecification() 143 if (GetIndex() != UINT32_MAX) in GetDescription()
|
| D | StackFrameList.cpp | 41 m_current_inlined_depth(UINT32_MAX), in StackFrameList() 58 if (cur_inlined_depth == UINT32_MAX) { in CalculateCurrentInlinedDepth() 68 m_current_inlined_depth = UINT32_MAX; in GetCurrentInlinedDepth() 77 return UINT32_MAX; in GetCurrentInlinedDepth() 91 m_current_inlined_depth = UINT32_MAX; in ResetCurrentInlinedDepth() 206 if (current_inlined_depth != UINT32_MAX) { in DecrementCurrentInlinedDepth() 218 if (new_depth == UINT32_MAX) in SetCurrentInlinedDepth() 235 m_concrete_frames_fetched = UINT32_MAX; in GetOnlyConcreteFramesUpTo() 464 if (end_idx > 0 && end_idx != UINT32_MAX) { in GetFramesUpTo() 466 if (inlined_depth != UINT32_MAX) { in GetFramesUpTo() [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/MSF/ |
| D | MSFCommon.h | 114 return (uint64_t)UINT32_MAX * 2ULL; in getMaxFileSizeFromBlockSize() 116 return (uint64_t)UINT32_MAX * 3ULL; in getMaxFileSizeFromBlockSize() 118 return (uint64_t)UINT32_MAX * 4ULL; in getMaxFileSizeFromBlockSize() 120 return (uint64_t)UINT32_MAX; in getMaxFileSizeFromBlockSize()
|
| /openbsd/src/lib/libcrypto/chacha/ |
| D | chacha.c | 59 if ((n = len) > UINT32_MAX) in ChaCha() 60 n = UINT32_MAX; in ChaCha() 91 if ((n = len) > UINT32_MAX) in CRYPTO_chacha_20() 92 n = UINT32_MAX; in CRYPTO_chacha_20()
|
| /openbsd/src/gnu/llvm/lld/MachO/ |
| D | Symbols.h | 71 bool isInGot() const { return gotIndex != UINT32_MAX; } in isInGot() 74 bool isInStubs() const { return stubsIndex != UINT32_MAX; } in isInStubs() 90 uint32_t gotIndex = UINT32_MAX; 91 uint32_t lazyBindOffset = UINT32_MAX; 92 uint32_t stubsHelperIndex = UINT32_MAX; 93 uint32_t stubsIndex = UINT32_MAX; 94 uint32_t symtabIndex = UINT32_MAX; 274 bool hasStubsHelper() const { return stubsHelperIndex != UINT32_MAX; } in hasStubsHelper()
|
| /openbsd/src/gnu/llvm/lldb/source/API/ |
| D | SBProcessInfo.cpp | 90 uint32_t user_id = UINT32_MAX; in GetUserID() 100 uint32_t group_id = UINT32_MAX; in GetGroupID() 130 uint32_t user_id = UINT32_MAX; in GetEffectiveUserID() 140 uint32_t group_id = UINT32_MAX; in GetEffectiveGroupID()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| D | HashedNameToDIE.cpp | 259 if (offset != UINT32_MAX) { in Read() 351 *hash_data_offset_ptr = UINT32_MAX; in GetHashDataForName() 383 *hash_data_offset_ptr = UINT32_MAX; in GetHashDataForName() 399 *hash_data_offset_ptr = UINT32_MAX; in GetHashDataForName() 444 *hash_data_offset_ptr = UINT32_MAX; in AppendHashDataForRegularExpression() 460 *hash_data_offset_ptr = UINT32_MAX; in AppendHashDataForRegularExpression() 472 while (hash_data_offset != UINT32_MAX) { in AppendAllDIEsThatMatchingRegex() 488 hash_data_offset = UINT32_MAX; in AppendAllDIEsThatMatchingRegex() 503 while (!done && hash_data_offset != UINT32_MAX) { in AppendAllDIEsInRange() 563 die_info_array, UINT32_MAX, eTypeFlagClassIsImplementation, callback); in FindCompleteObjCClassByName()
|
| /openbsd/src/sys/arch/i386/include/ |
| D | _types.h | 97 #define __UINT_FAST8_MAX UINT32_MAX 98 #define __UINT_FAST16_MAX UINT32_MAX 99 #define __UINT_FAST32_MAX UINT32_MAX
|
| /openbsd/src/sys/arch/sparc64/include/ |
| D | _types.h | 97 #define __UINT_FAST8_MAX UINT32_MAX 98 #define __UINT_FAST16_MAX UINT32_MAX 99 #define __UINT_FAST32_MAX UINT32_MAX
|
| /openbsd/src/sys/arch/arm/include/ |
| D | _types.h | 97 #define __UINT_FAST8_MAX UINT32_MAX 98 #define __UINT_FAST16_MAX UINT32_MAX 99 #define __UINT_FAST32_MAX UINT32_MAX
|
| /openbsd/src/sys/arch/amd64/include/ |
| D | _types.h | 97 #define __UINT_FAST8_MAX UINT32_MAX 98 #define __UINT_FAST16_MAX UINT32_MAX 99 #define __UINT_FAST32_MAX UINT32_MAX
|
| /openbsd/src/sys/arch/powerpc/include/ |
| D | _types.h | 97 #define __UINT_FAST8_MAX UINT32_MAX 98 #define __UINT_FAST16_MAX UINT32_MAX 99 #define __UINT_FAST32_MAX UINT32_MAX
|
| /openbsd/src/sys/arch/alpha/include/ |
| D | _types.h | 97 #define __UINT_FAST8_MAX UINT32_MAX 98 #define __UINT_FAST16_MAX UINT32_MAX 99 #define __UINT_FAST32_MAX UINT32_MAX
|
| /openbsd/src/sys/arch/m88k/include/ |
| D | _types.h | 101 #define __UINT_FAST8_MAX UINT32_MAX 102 #define __UINT_FAST16_MAX UINT32_MAX 103 #define __UINT_FAST32_MAX UINT32_MAX
|
| /openbsd/src/sys/arch/mips64/include/ |
| D | _types.h | 101 #define __UINT_FAST8_MAX UINT32_MAX 102 #define __UINT_FAST16_MAX UINT32_MAX 103 #define __UINT_FAST32_MAX UINT32_MAX
|
| /openbsd/src/sys/arch/riscv64/include/ |
| D | _types.h | 99 #define __UINT_FAST8_MAX UINT32_MAX 100 #define __UINT_FAST16_MAX UINT32_MAX 101 #define __UINT_FAST32_MAX UINT32_MAX
|