| /src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/ |
| H A D | sanitizer_symbolize.cpp | 65 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 …]
|
| /src/sys/contrib/dev/acpica/components/utilities/ |
| H A D | utstring.c | 179 UINT16 MaxLength) in AcpiUtPrintString() argument 191 for (i = 0; (i < MaxLength) && String[i]; i++) in AcpiUtPrintString() 261 if (i == MaxLength && String[i]) in AcpiUtPrintString()
|
| /src/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | CodeViewRecordIO.h | 64 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()
|
| /src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | linux.cpp | 210 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()
|
| /src/contrib/llvm-project/llvm/lib/Support/ |
| H A D | BinaryStreamRef.cpp | 91 uint64_t MaxLength = getLength() - Offset; in readLongestContiguousChunk() local 92 if (Buffer.size() > MaxLength) in readLongestContiguousChunk() 93 Buffer = Buffer.slice(0, MaxLength); in readLongestContiguousChunk()
|
| /src/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | ArchiveYAML.h | 30 : DefaultValue(Default), MaxLength(Length) {} in Field() 33 unsigned MaxLength; member
|
| /src/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | ArchiveYAML.cpp | 49 if (P.second.Value.size() > P.second.MaxLength) in validate() 51 Twine(P.second.MaxLength)) in validate()
|
| H A D | ArchiveEmitter.cpp | 39 WriteField(P.second.Value, P.second.MaxLength); in yaml2archive()
|
| /src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_symbolizer_posix_libcdep.cpp | 324 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);
|
| /src/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZSelectionDAGInfo.cpp | 264 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()
|
| H A D | SystemZSelectionDAGInfo.h | 66 SDValue Src, SDValue MaxLength,
|
| /src/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | CodeViewRecordIO.cpp | 21 Error CodeViewRecordIO::beginRecord(std::optional<uint32_t> MaxLength) { in beginRecord() argument 23 Limit.MaxLength = MaxLength; in beginRecord()
|
| /src/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | StringPrinter.cpp | 39 if (size > MaxLength) in DecodedCharBuffer() 52 static constexpr unsigned MaxLength = 16; member in DecodedCharBuffer 55 uint8_t m_data[MaxLength] = {0};
|
| /src/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAGTargetInfo.h | 147 SDValue Src, SDValue MaxLength, in EmitTargetCodeForStrnlen() argument
|
| /src/sys/contrib/dev/acpica/components/executer/ |
| H A D | exconvrt.c | 168 UINT8 MaxLength,
|
| /src/sys/contrib/dev/acpica/include/ |
| H A D | acutils.h | 1076 UINT16 MaxLength);
|
| /src/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 9644 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()
|
| /src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | MallocChecker.cpp | 1730 NonLoc MaxLength = in checkTaintedness() local 1733 auto Cmp = SVB.evalBinOpNN(State, BO_GE, *SizeNL, MaxLength, CmpTy) in checkTaintedness()
|