Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/symbolizer/
H A Dsanitizer_symbolize.cpp54 char *Buffer, int MaxLength) { in __sanitizer_symbolize_code() argument
78 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s", in __sanitizer_symbolize_code()
79 Result.c_str()) < MaxLength; in __sanitizer_symbolize_code()
83 char *Buffer, int MaxLength) { in __sanitizer_symbolize_data() argument
99 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s", in __sanitizer_symbolize_data()
100 Result.c_str()) < MaxLength; in __sanitizer_symbolize_data()
109 int MaxLength) { in __sanitizer_symbolize_demangle() argument
112 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s", in __sanitizer_symbolize_demangle()
113 Result.c_str()) < MaxLength in __sanitizer_symbolize_demangle()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewRecordIO.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()
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dlinux.cpp220 constexpr uptr MaxLength = 1024U; in outputRaw() local
221 char LocalBuffer[MaxLength]; in outputRaw()
222 while (strlen(Buffer) > MaxLength) { in outputRaw()
224 for (P = MaxLength - 1; P > 0; P--) { in outputRaw()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DArchiveYAML.h30 : DefaultValue(Default), MaxLength(Length) {} in Field()
33 unsigned MaxLength; member
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DBinaryStreamRef.cpp96 uint64_t MaxLength = getLength() - Offset; in readLongestContiguousChunk() local
97 if (Buffer.size() > MaxLength) in readLongestContiguousChunk()
98 Buffer = Buffer.slice(0, MaxLength); in readLongestContiguousChunk()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DArchiveYAML.cpp49 if (P.second.Value.size() > P.second.MaxLength) in validate()
51 Twine(P.second.MaxLength)) in validate()
H A DArchiveEmitter.cpp39 WriteField(P.second.Value, P.second.MaxLength); in yaml2archive()
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.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()
H A DSystemZSelectionDAGInfo.h66 SDValue Src, SDValue MaxLength,
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_posix_libcdep.cpp323 char *Buffer, int MaxLength);
326 char *Buffer, int MaxLength);
330 __sanitizer_symbolize_demangle(const char *Name, char *Buffer, int MaxLength);
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DCodeViewRecordIO.cpp20 Error CodeViewRecordIO::beginRecord(std::optional<uint32_t> MaxLength) { in beginRecord() argument
22 Limit.MaxLength = MaxLength; in beginRecord()
/openbsd-src/gnu/llvm/lldb/source/DataFormatters/
H A DStringPrinter.cpp39 if (size > MaxLength) in DecodedCharBuffer()
52 static constexpr unsigned MaxLength = 16; member in DecodedCharBuffer
55 uint8_t m_data[MaxLength] = {0};
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DSelectionDAGTargetInfo.h147 SDValue Src, SDValue MaxLength, in EmitTargetCodeForStrnlen() argument
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DExprConstant.cpp9251 uint64_t MaxLength = uint64_t(-1); in VisitBuiltinCallExpr() local
9259 MaxLength = N.getExtValue(); in VisitBuiltinCallExpr()
9262 if (MaxLength == 0u) in VisitBuiltinCallExpr()
9322 for (; MaxLength; --MaxLength) { in VisitBuiltinCallExpr()
12236 uint64_t MaxLength = uint64_t(-1); in VisitBuiltinCallExpr() local
12244 MaxLength = N.getExtValue(); in VisitBuiltinCallExpr()
12248 if (MaxLength == 0u) in VisitBuiltinCallExpr()
12303 for (; MaxLength; --MaxLength) { in VisitBuiltinCallExpr()