Home
last modified time | relevance | path

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

12

/external/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/
Dsanitizer_symbolize.cpp36 char *Buffer, int MaxLength, in __sanitizer_symbolize_code() argument
56 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s", in __sanitizer_symbolize_code()
57 Result.c_str()) < MaxLength; in __sanitizer_symbolize_code()
61 char *Buffer, int MaxLength) { in __sanitizer_symbolize_data() argument
73 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s", in __sanitizer_symbolize_data()
74 Result.c_str()) < MaxLength; in __sanitizer_symbolize_data()
80 int MaxLength) { in __sanitizer_symbolize_demangle() argument
83 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s", in __sanitizer_symbolize_demangle()
84 Result.c_str()) < MaxLength in __sanitizer_symbolize_demangle()
/external/brotli/csharp/org/brotli/dec/
DHuffman.cs17 private const int MaxLength = 15; field in Org.Brotli.Dec.Huffman
58 while (len < MaxLength) in NextTableBitSize()
79 int[] count = new int[MaxLength + 1]; in BuildHuffmanTable()
81 int[] offset = new int[MaxLength + 1]; in BuildHuffmanTable()
91 for (int len = 1; len < MaxLength; len++) in BuildHuffmanTable()
107 if (offset[MaxLength] == 1) in BuildHuffmanTable()
130 for (int len = rootBits + 1, step = 2; len <= MaxLength; len++, step <<= 1) in BuildHuffmanTable()
/external/llvm-project/clang-tools-extra/clang-query/
DQuery.cpp122 unsigned MaxLength = FirstLine.size(); in run() local
128 MaxLength = std::max<int>(MaxLength, Line.rtrim().size()); in run()
132 << " " << std::string(PrefixText.size() + MaxLength, '=') << "\n\n"; in run()
/external/llvm-project/compiler-rt/lib/scudo/standalone/
Dlinux.cpp182 constexpr uptr MaxLength = 1024U; in outputRaw() local
183 char LocalBuffer[MaxLength]; in outputRaw()
184 while (strlen(Buffer) > MaxLength) { in outputRaw()
186 for (P = MaxLength - 1; P > 0; P--) { in outputRaw()
Dstring_utils.h21 explicit ScopedString(uptr MaxLength) : String(MaxLength), Length(0) { in ScopedString() argument
/external/llvm/include/llvm/DebugInfo/CodeView/
DStreamRef.h51 uint32_t MaxLength = Length - Offset; in readLongestContiguousChunk() local
52 if (Buffer.size() > MaxLength) in readLongestContiguousChunk()
53 Buffer = Buffer.slice(0, MaxLength); in readLongestContiguousChunk()
/external/scudo/standalone/
Dstring_utils.h21 explicit ScopedString(uptr MaxLength) : String(MaxLength), Length(0) { in ScopedString() argument
Dlinux.cpp221 constexpr uptr MaxLength = 1024U; in outputRaw() local
222 char LocalBuffer[MaxLength]; in outputRaw()
223 while (strlen(Buffer) > MaxLength) { in outputRaw()
225 for (P = MaxLength - 1; P > 0; P--) { in outputRaw()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DCodeViewRecordIO.h63 Error beginRecord(Optional<uint32_t> MaxLength);
245 Optional<uint32_t> MaxLength; member
248 if (!MaxLength.hasValue()) in bytesRemaining()
253 if (BytesUsed >= *MaxLength) in bytesRemaining()
255 return *MaxLength - BytesUsed; in bytesRemaining()
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DCodeViewRecordIO.h64 Error beginRecord(Optional<uint32_t> MaxLength);
246 Optional<uint32_t> MaxLength; member
249 if (!MaxLength.hasValue()) in bytesRemaining()
254 if (BytesUsed >= *MaxLength) in bytesRemaining()
256 return *MaxLength - BytesUsed; in bytesRemaining()
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DArchiveYAML.h29 : DefaultValue(Default), MaxLength(Length) {} in Field()
32 unsigned MaxLength; member
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DBinaryStreamRef.cpp97 uint32_t MaxLength = getLength() - Offset; in readLongestContiguousChunk() local
98 if (Buffer.size() > MaxLength) in readLongestContiguousChunk()
99 Buffer = Buffer.slice(0, MaxLength); in readLongestContiguousChunk()
/external/llvm-project/llvm/lib/Support/
DBinaryStreamRef.cpp97 uint32_t MaxLength = getLength() - Offset; in readLongestContiguousChunk() local
98 if (Buffer.size() > MaxLength) in readLongestContiguousChunk()
99 Buffer = Buffer.slice(0, MaxLength); in readLongestContiguousChunk()
/external/llvm-project/llvm/lib/ObjectYAML/
DArchiveYAML.cpp49 if (P.second.Value.size() > P.second.MaxLength) in validate()
51 Twine(P.second.MaxLength)) in validate()
DArchiveEmitter.cpp39 WriteField(P.second.Value, P.second.MaxLength); in yaml2archive()
/external/pdfium/fxbarcode/
Dcbc_pdf417i_unittest.cpp16 TEST(CBC_PDF417ITest, MaxLength) { in TEST() argument
/external/llvm-project/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp271 SDValue MaxLength, MachinePointerInfo SrcPtrInfo) const { in EmitTargetCodeForStrnlen() argument
273 MaxLength = DAG.getZExtOrTrunc(MaxLength, DL, PtrVT); in EmitTargetCodeForStrnlen()
274 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength); in EmitTargetCodeForStrnlen()
/external/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp273 SDValue MaxLength, MachinePointerInfo SrcPtrInfo) const { in EmitTargetCodeForStrnlen() argument
275 MaxLength = DAG.getZExtOrTrunc(MaxLength, DL, PtrVT); in EmitTargetCodeForStrnlen()
276 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength); in EmitTargetCodeForStrnlen()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp270 SDValue MaxLength, MachinePointerInfo SrcPtrInfo) const { in EmitTargetCodeForStrnlen() argument
272 MaxLength = DAG.getZExtOrTrunc(MaxLength, DL, PtrVT); in EmitTargetCodeForStrnlen()
273 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength); in EmitTargetCodeForStrnlen()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer_posix_libcdep.cc329 char *Buffer, int MaxLength);
332 char *Buffer, int MaxLength);
337 int MaxLength);
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer_posix_libcdep.cpp319 char *Buffer, int MaxLength,
323 char *Buffer, int MaxLength);
328 int MaxLength);
/external/llvm-project/llvm/lib/DebugInfo/CodeView/
DCodeViewRecordIO.cpp18 Error CodeViewRecordIO::beginRecord(Optional<uint32_t> MaxLength) { in beginRecord() argument
20 Limit.MaxLength = MaxLength; in beginRecord()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DCodeViewRecordIO.cpp18 Error CodeViewRecordIO::beginRecord(Optional<uint32_t> MaxLength) { in beginRecord() argument
20 Limit.MaxLength = MaxLength; in beginRecord()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_exdata.cpp23 {XFA_Attribute::MaxLength, XFA_AttributeType::Integer, (void*)-1},
/external/llvm-project/lldb/source/DataFormatters/
DStringPrinter.cpp39 if (size > MaxLength) in DecodedCharBuffer()
52 static constexpr unsigned MaxLength = 16; member in DecodedCharBuffer
55 uint8_t m_data[MaxLength] = {0};

12