Home
last modified time | relevance | path

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

/src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/
H A Dsanitizer_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 …]
/src/sys/contrib/dev/acpica/components/utilities/
H A Dutstring.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()
/src/contrib/llvm-project/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()
/src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlinux.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()
/src/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamRef.cpp91 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 DArchiveYAML.h30 : DefaultValue(Default), MaxLength(Length) {} in Field()
33 unsigned MaxLength; member
/src/contrib/llvm-project/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()
/src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_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);
/src/contrib/llvm-project/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,
/src/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DCodeViewRecordIO.cpp21 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 DStringPrinter.cpp39 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 DSelectionDAGTargetInfo.h147 SDValue Src, SDValue MaxLength, in EmitTargetCodeForStrnlen() argument
/src/sys/contrib/dev/acpica/components/executer/
H A Dexconvrt.c168 UINT8 MaxLength,
/src/sys/contrib/dev/acpica/include/
H A Dacutils.h1076 UINT16 MaxLength);
/src/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.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()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp1730 NonLoc MaxLength = in checkTaintedness() local
1733 auto Cmp = SVB.evalBinOpNN(State, BO_GE, *SizeNL, MaxLength, CmpTy) in checkTaintedness()