Home
last modified time | relevance | path

Searched refs:MaxLength (Results 1 – 18 of 18) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/
HDsanitizer_symbolize.cpp65 char *Buffer, int MaxLength) { in __sanitizer_symbolize_code() argument
92 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s", in __sanitizer_symbolize_code()
93 Result.c_str()) < MaxLength; in __sanitizer_symbolize_code()
97 char *Buffer, int MaxLength) { in __sanitizer_symbolize_data() argument
115 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s", in __sanitizer_symbolize_data()
116 Result.c_str()) < MaxLength; in __sanitizer_symbolize_data()
120 char *Buffer, int MaxLength) { in __sanitizer_symbolize_frame() argument
138 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s", in __sanitizer_symbolize_frame()
139 Result.c_str()) < MaxLength; in __sanitizer_symbolize_frame()
148 int MaxLength) { in __sanitizer_symbolize_demangle() argument
[all …]
/freebsd-13-stable/sys/contrib/dev/acpica/components/utilities/
HDutstring.c179 UINT16 MaxLength) in AcpiUtPrintString() argument
191 for (i = 0; (i < MaxLength) && String[i]; i++) in AcpiUtPrintString()
261 if (i == MaxLength && String[i]) in AcpiUtPrintString()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
HDCodeViewRecordIO.h64 Error beginRecord(std::optional<uint32_t> MaxLength);
246 std::optional<uint32_t> MaxLength; member
249 if (!MaxLength) in bytesRemaining()
254 if (BytesUsed >= *MaxLength) in bytesRemaining()
256 return *MaxLength - BytesUsed; in bytesRemaining()
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
HDlinux.cpp210 constexpr uptr MaxLength = 1024U; in outputRaw() local
211 char LocalBuffer[MaxLength]; in outputRaw()
212 while (strlen(Buffer) > MaxLength) { in outputRaw()
214 for (P = MaxLength - 1; P > 0; P--) { in outputRaw()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
HDArchiveYAML.h30 : DefaultValue(Default), MaxLength(Length) {} in Field()
33 unsigned MaxLength; member
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
HDBinaryStreamRef.cpp91 uint64_t MaxLength = getLength() - Offset; in readLongestContiguousChunk() local
92 if (Buffer.size() > MaxLength) in readLongestContiguousChunk()
93 Buffer = Buffer.slice(0, MaxLength); in readLongestContiguousChunk()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
HDArchiveYAML.cpp49 if (P.second.Value.size() > P.second.MaxLength) in validate()
51 Twine(P.second.MaxLength)) in validate()
HDArchiveEmitter.cpp39 WriteField(P.second.Value, P.second.MaxLength); in yaml2archive()
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
HDsanitizer_symbolizer_posix_libcdep.cpp324 char *Buffer, int MaxLength);
327 char *Buffer, int MaxLength);
330 char *Buffer, int MaxLength);
334 __sanitizer_symbolize_demangle(const char *Name, char *Buffer, int MaxLength);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
HDSystemZSelectionDAGInfo.cpp264 SDValue MaxLength, MachinePointerInfo SrcPtrInfo) const { in EmitTargetCodeForStrnlen() argument
266 MaxLength = DAG.getZExtOrTrunc(MaxLength, DL, PtrVT); in EmitTargetCodeForStrnlen()
267 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength); in EmitTargetCodeForStrnlen()
HDSystemZSelectionDAGInfo.h66 SDValue Src, SDValue MaxLength,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
HDCodeViewRecordIO.cpp21 Error CodeViewRecordIO::beginRecord(std::optional<uint32_t> MaxLength) { in beginRecord() argument
23 Limit.MaxLength = MaxLength; in beginRecord()
/freebsd-13-stable/contrib/llvm-project/lldb/source/DataFormatters/
HDStringPrinter.cpp39 if (size > MaxLength) in DecodedCharBuffer()
52 static constexpr unsigned MaxLength = 16; member in DecodedCharBuffer
55 uint8_t m_data[MaxLength] = {0};
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
HDSelectionDAGTargetInfo.h147 SDValue Src, SDValue MaxLength, in EmitTargetCodeForStrnlen() argument
/freebsd-13-stable/sys/contrib/dev/acpica/components/executer/
HDexconvrt.c168 UINT8 MaxLength);
/freebsd-13-stable/sys/contrib/dev/acpica/include/
HDacutils.h1048 UINT16 MaxLength);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
HDExprConstant.cpp9644 uint64_t MaxLength = uint64_t(-1); in VisitBuiltinCallExpr() local
9652 MaxLength = N.getZExtValue(); in VisitBuiltinCallExpr()
9655 if (MaxLength == 0u) in VisitBuiltinCallExpr()
9715 for (; MaxLength; --MaxLength) { in VisitBuiltinCallExpr()
12849 uint64_t MaxLength = uint64_t(-1); in VisitBuiltinCallExpr() local
12857 MaxLength = N.getZExtValue(); in VisitBuiltinCallExpr()
12861 if (MaxLength == 0u) in VisitBuiltinCallExpr()
12916 for (; MaxLength; --MaxLength) { in VisitBuiltinCallExpr()
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
HDMallocChecker.cpp1730 NonLoc MaxLength = in checkTaintedness() local
1733 auto Cmp = SVB.evalBinOpNN(State, BO_GE, *SizeNL, MaxLength, CmpTy) in checkTaintedness()