Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/
H A Dsanitizer_symbolize.cpp65 char *Buffer, int MaxLength) { in __sanitizer_symbolize_code()
92 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s", in __sanitizer_symbolize_data()
93 Result.c_str()) < MaxLength; in __sanitizer_symbolize_data() argument
97 char *Buffer, int MaxLength) { in __sanitizer_symbolize_data()
115 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s", in __sanitizer_symbolize_flush()
116 Result.c_str()) < MaxLength; in __sanitizer_symbolize_flush()
120 char *Buffer, int MaxLength) { in __sanitizer_symbolize_demangle()
138 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s", in __sanitizer_symbolize_set_inline_frames()
139 Result.c_str()) < MaxLength; in __sanitizer_symbolize_set_inline_frames()
148 int MaxLength) {
64 __sanitizer_symbolize_code(const char * ModuleName,uint64_t ModuleOffset,char * Buffer,int MaxLength) __sanitizer_symbolize_code() argument
119 __sanitizer_symbolize_demangle(const char * Name,char * Buffer,int MaxLength) __sanitizer_symbolize_demangle() argument
[all...]
/freebsd/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()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlinux.cpp213 constexpr uptr MaxLength = 1024U; in outputRaw() local
214 char LocalBuffer[MaxLength]; in outputRaw()
215 while (strlen(Buffer) > MaxLength) { in outputRaw()
217 for (P = MaxLength - 1; P > 0; P--) { in outputRaw()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewRecordIO.h65 LLVM_ABI Error beginRecord(std::optional<uint32_t> MaxLength);
248 std::optional<uint32_t> MaxLength; member
251 if (!MaxLength) in bytesRemaining()
256 if (BytesUsed >= *MaxLength) in bytesRemaining()
258 return *MaxLength - BytesUsed; in bytesRemaining()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamRef.cpp91 uint64_t MaxLength = getLength() - Offset; in readLongestContiguousChunk()
92 if (Buffer.size() > MaxLength) in readLongestContiguousChunk()
93 Buffer = Buffer.slice(0, MaxLength); in readLongestContiguousChunk()
96 uint64_t MaxLength = getLength() - Offset; readLongestContiguousChunk() local
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DArchiveYAML.h30 : DefaultValue(Default), MaxLength(Length) {} in Field()
33 unsigned MaxLength; member
/freebsd/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.cpp38 WriteField(P.second.Value, P.second.MaxLength); in yaml2archive()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_posix_libcdep.cpp326 char *Buffer, int MaxLength);
329 char *Buffer, int MaxLength);
332 char *Buffer, int MaxLength);
336 __sanitizer_symbolize_demangle(const char *Name, char *Buffer, int MaxLength);
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp274 SDValue MaxLength, MachinePointerInfo SrcPtrInfo) const { in EmitTargetCodeForStrnlen() argument
276 MaxLength = DAG.getZExtOrTrunc(MaxLength, DL, PtrVT); in EmitTargetCodeForStrnlen()
277 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength); in EmitTargetCodeForStrnlen()
H A DSystemZSelectionDAGInfo.h70 SDValue Src, SDValue MaxLength,
/freebsd/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()
/freebsd/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};
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGTargetInfo.h171 SDValue Src, SDValue MaxLength, in EmitTargetCodeForStrnlen() argument
/freebsd/sys/contrib/dev/acpica/components/executer/
H A Dexconvrt.c168 UINT8 MaxLength,
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterpBuiltin.cpp2015 std::optional<APSInt> MaxLength; in interp__builtin_memchr() local
2019 MaxLength = popToAPSInt(S.Stk, MaxT); in interp__builtin_memchr()
2024 if (MaxLength && MaxLength->isZero()) { in interp__builtin_memchr()
2100 if (MaxLength && Step == MaxLength->getZExtValue()) in interp__builtin_memchr()
/freebsd/sys/contrib/dev/acpica/include/
H A Dacutils.h1076 UINT16 MaxLength);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp1943 NonLoc MaxLength = in checkTaintedness() local
1946 auto Cmp = SVB.evalBinOpNN(State, BO_GE, *SizeNL, MaxLength, CmpTy) in checkTaintedness()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp10064 uint64_t MaxLength = uint64_t(-1); in VisitBuiltinCallExpr() local
10072 MaxLength = N.getZExtValue(); in VisitBuiltinCallExpr()
10075 if (MaxLength == 0u) in VisitBuiltinCallExpr()
10134 for (; MaxLength; --MaxLength) { in VisitBuiltinCallExpr()
13497 uint64_t MaxLength = uint64_t(-1); in VisitBuiltinCallExpr() local
13505 MaxLength = N.getZExtValue(); in VisitBuiltinCallExpr()
13509 if (MaxLength == 0u) in VisitBuiltinCallExpr()
13564 for (; MaxLength; --MaxLength) { in VisitBuiltinCallExpr()