Home
last modified time | relevance | path

Searched refs:getAsInteger (Results 1 – 25 of 210) sorted by relevance

123456789

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.cpp159 Ops[1].getAsInteger(10, Op0); in parseGenericRegister()
160 Ops[2].getAsInteger(10, Op1); in parseGenericRegister()
161 Ops[3].getAsInteger(10, CRn); in parseGenericRegister()
162 Ops[4].getAsInteger(10, CRm); in parseGenericRegister()
163 Ops[5].getAsInteger(10, Op2); in parseGenericRegister()
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h42 if (!ColSplit.second.getAsInteger(10, PSL.Column) && in FromString()
43 !LineSplit.second.getAsInteger(10, PSL.Line) && in FromString()
89 if (Split.first.getAsInteger(10, EndLine) || in fromString()
90 Split.second.getAsInteger(10, EndColumn)) { in fromString()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupValueObjectDisplay.cpp103 if (option_arg.getAsInteger(0, max_depth)) { in SetOptionValue()
113 if (option_arg.getAsInteger(0, elem_count)) { in SetOptionValue()
121 if (option_arg.getAsInteger(0, ptr_depth)) { in SetOptionValue()
131 else if (option_arg.getAsInteger(0, no_summary_depth)) { in SetOptionValue()
H A DCommandHistory.cpp46 if (input_str.drop_front(1).getAsInteger(0, idx)) in FindString()
52 if (input_str.getAsInteger(0, idx)) in FindString()
H A DOptionArgParser.cpp196 if (!s.getAsInteger(0, addr)) { in DoToAddress()
204 if (!s.getAsInteger(16, addr)) { in DoToAddress()
301 if (!str_offset.empty() && !str_offset.getAsInteger(0, offset)) { in DoToAddress()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DStatepoint.cpp30 if (!AttrID.getValueAsString().getAsInteger(10, StatepointID)) in parseStatepointDirectivesFromAttrs()
36 if (!AttrNumPatchBytes.getValueAsString().getAsInteger(10, NumPatchBytes)) in parseStatepointDirectivesFromAttrs()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFModuleDefinition.cpp167 if (Tok.K != Identifier || Tok.Value.getAsInteger(10, *I)) in readAsInt()
256 Tok.Value.getAsInteger(10, E.Ordinal); in parseExport()
257 } else if (Tok.Value.drop_front().getAsInteger(10, E.Ordinal)) { in parseExport()
350 if (V1.getAsInteger(10, *Major)) in parseVersion()
354 else if (V2.getAsInteger(10, *Minor)) in parseVersion()
H A DArchive.cpp184 if (RawField.getAsInteger(10, Value)) { in getArchiveMemberDecField()
202 if (RawField.getAsInteger(8, Value)) { in getArchiveMemberOctField()
280 if (Name.substr(1).rtrim(' ').getAsInteger(10, StringOffset)) { in getName()
319 if (Name.substr(3).rtrim(' ').getAsInteger(10, NameLength)) { in getName()
529 if (RawNameSize.getAsInteger(10, NameSize)) { in Child()
1304 if (RawOffset.getAsInteger(10, Size)) in getGlobalSymtabLocAndSize()
1360 if (RawOffset.getAsInteger(10, FirstChildOffset)) in BigArchive()
1366 if (RawOffset.getAsInteger(10, LastChildOffset)) in BigArchive()
1373 if (RawOffset.getAsInteger(10, GlobSymtab32Offset)) { in BigArchive()
1382 if (RawOffset.getAsInteger(10, GlobSymtab64Offset)) { in BigArchive()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCachePruning.cpp59 if (NumStr.getAsInteger(0, Num)) in parseDuration()
102 if (SizeStr.getAsInteger(0, Size)) in parseCachePruningPolicy()
127 if (Value.getAsInteger(0, Size)) in parseCachePruningPolicy()
132 if (Value.getAsInteger(0, Policy.MaxSizeFiles)) in parseCachePruningPolicy()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DCommandObjectTraceStartIntelPT.cpp50 if (option_arg.empty() || option_arg.getAsInteger(0, psb_period) || in SetOptionValue()
132 if (option_arg.empty() || option_arg.getAsInteger(0, psb_period) || in SetOptionValue()
197 if (number_part.getAsInteger(10, parsed_number)) { in ParseUserFriendlySizeExpression()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DLaneBitmask.h74 constexpr Type getAsInteger() const { return Mask; } in getAsInteger() function
94 OS << format(LaneBitmask::FormatStr, LaneMask.getAsInteger()); in PrintLaneMask()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp485 if (Result.drop_back().getAsInteger(Radix, Value)) in LexDigit()
505 if (Result.getAsInteger(DefaultRadix, Value)) { in LexDigit()
520 if (StringRef(NumStart, CurPtr - NumStart).getAsInteger(16, Result)) in LexDigit()
533 if (StringRef(NumStart, CurPtr - NumStart).getAsInteger(2, Result)) in LexDigit()
559 if (Result.getAsInteger(Radix, Value)) in LexDigit()
589 if (Result.substr(2).getAsInteger(2, Value)) in LexDigit()
615 if (StringRef(TokStart, CurPtr - TokStart).getAsInteger(0, Result)) in LexDigit()
633 if (Result.getAsInteger(Radix, Value)) in LexDigit()
/freebsd/contrib/llvm-project/lld/COFF/
H A DDriverUtils.cpp81 if (s1.getAsInteger(0, *addr)) in parseNumbers()
83 if (size && !s2.empty() && s2.getAsInteger(0, *size)) in parseNumbers()
92 if (s1.getAsInteger(10, *major)) in parseVersion()
95 if (!s2.empty() && s2.getAsInteger(10, *minor)) in parseVersion()
165 if (s.getAsInteger(0, v)) { in parsePDBPageSize()
238 if (arg.getAsInteger(0, ctx.config.functionPadMin)) in parseFunctionPadMin()
258 if (arg.getAsInteger(0, ctx.config.dependentLoadFlags)) in parseDependentLoadFlags()
284 if (arg.getAsInteger(0, ctx.config.manifestID)) in parseManifest()
611 if (tok.substr(1).getAsInteger(0, ord)) in parseExport()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThread.cpp67 if (option_arg.getAsInteger(0, m_count)) { in SetOptionValue()
78 if (option_arg.getAsInteger(0, m_start)) in SetOptionValue()
167 if (copy_args[idx].ref().getAsInteger(0, count_val)) in GetRepeatCommand()
174 if (copy_args[idx].ref().getAsInteger(0, start_val)) in GetRepeatCommand()
311 if (option_arg.getAsInteger(0, m_step_count)) in SetOptionValue()
328 if (option_arg.getAsInteger(0, m_end_line)) in SetOptionValue()
676 if (entry.ref().getAsInteger(0, thread_idx)) { in DoExecute()
818 if (option_arg.getAsInteger(0, m_thread_idx)) { in SetOptionValue()
825 if (option_arg.getAsInteger(0, m_frame_idx)) { in SetOptionValue()
1111 if (option_arg.getAsInteger(0, m_thread_id)) { in SetOptionValue()
[all …]
H A DCommandOptionsProcessAttach.cpp43 if (option_arg.getAsInteger(0, pid)) { in SetOptionValue()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp1090 if (!major.getAsInteger(0, m_gdb_server_version)) in GetGDBServerVersion()
1258 if (!value.getAsInteger(0, cpu)) in GetHostInfo()
1262 if (!value.getAsInteger(0, sub)) in GetHostInfo()
1302 if (!value.getAsInteger(0, pointer_byte_size)) in GetHostInfo()
1305 if (!value.getAsInteger(0, m_low_mem_addressing_bits)) { in GetHostInfo()
1309 if (!value.getAsInteger(0, m_high_mem_addressing_bits)) in GetHostInfo()
1312 if (!value.getAsInteger(0, m_low_mem_addressing_bits)) in GetHostInfo()
1334 if (!value.getAsInteger(0, timeout_seconds)) { in GetHostInfo()
1341 if (!value.getAsInteger(0, page_size)) { in GetHostInfo()
1597 if (!value.getAsInteger(16, addr_value)) in GetMemoryRegionInfo()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DXRayArgs.cpp209 if (S.getAsInteger(0, Value) || Value < 0) in addArgs()
219 if (S.getAsInteger(0, XRayFunctionGroups) || XRayFunctionGroups < 1) in addArgs()
227 if (S.getAsInteger(0, XRaySelectedFunctionGroup) || in addArgs()
H A DOptionUtils.cpp24 if (StringRef(A->getValue()).getAsInteger(Base, Res)) { in getLastArgIntValueImpl()
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStubCommon.cpp196 if (Scalar.getAsInteger(10, Value)) in input()
211 if (Scalar.getAsInteger(10, Value)) in input()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DOffloadBundle.h161 OffsetStr.getAsInteger(10, O); in createFileURI()
168 Str.getAsInteger(10, S); in createFileURI()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp243 if (Split.second.getAsInteger(0, Value)) in parseSetSectionAttribute()
410 template <class T> static ErrorOr<T> getAsInteger(StringRef Val) { in getAsInteger() function
412 if (Val.getAsInteger(0, Result)) in getAsInteger()
483 if (Flags[0].getAsInteger(0, SI.Value)) in parseNewSymbolInfo()
566 if (TypeIdStr.getAsInteger(0, NI.TypeId)) in parseRemoveNoteInfo()
622 auto LMAValue = getAsInteger<int64_t>(StringValue); in parseChangeSectionLMA()
671 auto AddrValue = getAsInteger<uint64_t>(Value); in parseChangeSectionAddr()
831 if (Major.getAsInteger(10, Number)) in parseObjcopyOptions()
837 if (!Minor.empty() && Minor.getAsInteger(10, Number)) in parseObjcopyOptions()
944 ErrorOr<uint64_t> Val = getAsInteger<uint64_t>(A->getValue()); in parseObjcopyOptions()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilder.cpp607 if (Name.getAsInteger(0, Count) || Count < 0) in parseDevirtPassName()
662 if (ParamName.getAsInteger(0, Count)) in parseHardwareLoopOptions()
671 if (ParamName.getAsInteger(0, Count)) in parseHardwareLoopOptions()
715 if (ParamName.getAsInteger(0, Count)) in parseLoopUnrollOptions()
911 if (CutoffStr.getAsInteger(0, cutoff)) in parseLowerAllowCheckPassOptions()
930 if (firstIndexStr.getAsInteger(0, index)) in parseLowerAllowCheckPassOptions()
950 if (ValueString.getAsInteger(0, runtime_check)) { in parseLowerAllowCheckPassOptions()
981 if (ParamName.getAsInteger(0, Result.TrackOrigins)) in parseMSanPassOptions()
1030 if (ParamName.getAsInteger(0, BonusInstThreshold)) in parseSimplifyCFGOptions()
1061 if (ParamName.getAsInteger(0, MaxIterations)) in parseInstCombineOptions()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DHotnessThresholdParser.h37 if (Arg.getAsInteger(10, Val)) in parseHotnessThresholdOption()
/freebsd/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp477 if (ComplexTT.second.getAsInteger(10, Log2EEW)) { in parsePrototypeDescriptor()
500 if (ComplexTT.second.getAsInteger(10, NewSEW)) { in parsePrototypeDescriptor()
523 if (ComplexTT.second.getAsInteger(10, Log2LMUL)) { in parsePrototypeDescriptor()
555 if (ComplexTT.second.getAsInteger(10, Log2LMUL)) { in parsePrototypeDescriptor()
588 if (ComplexTT.second.getAsInteger(10, Log2LMUL)) { in parsePrototypeDescriptor()
620 if (ComplexTT.second.getAsInteger(10, NF)) { in parsePrototypeDescriptor()
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DRemoteJITUtils.cpp52 if (SizeString.getAsInteger(10, SlabSize)) in getSlabAllocSize()
250 if (PortStr.getAsInteger(10, Port)) in connectTCPSocket()

123456789