| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/ |
| H A D | sanitizer_symbolize.cpp | 65 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 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()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | linux.cpp | 213 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 D | CodeViewRecordIO.h | 65 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 D | BinaryStreamRef.cpp | 91 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 D | ArchiveYAML.h | 30 : DefaultValue(Default), MaxLength(Length) {} in Field() 33 unsigned MaxLength; member
|
| /freebsd/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 | 38 WriteField(P.second.Value, P.second.MaxLength); in yaml2archive()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_symbolizer_posix_libcdep.cpp | 326 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 D | SystemZSelectionDAGInfo.cpp | 274 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 D | SystemZSelectionDAGInfo.h | 70 SDValue Src, SDValue MaxLength,
|
| /freebsd/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()
|
| /freebsd/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};
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAGTargetInfo.h | 171 SDValue Src, SDValue MaxLength, in EmitTargetCodeForStrnlen() argument
|
| /freebsd/sys/contrib/dev/acpica/components/executer/ |
| H A D | exconvrt.c | 168 UINT8 MaxLength,
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | InterpBuiltin.cpp | 2015 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 D | acutils.h | 1076 UINT16 MaxLength);
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | MallocChecker.cpp | 1943 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 D | ExprConstant.cpp | 10064 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()
|