/external/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/ |
D | sanitizer_symbolize.cpp | 36 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/ |
D | Huffman.cs | 17 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/ |
D | Query.cpp | 122 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/ |
D | linux.cpp | 182 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()
|
D | string_utils.h | 21 explicit ScopedString(uptr MaxLength) : String(MaxLength), Length(0) { in ScopedString() argument
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | StreamRef.h | 51 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/ |
D | string_utils.h | 21 explicit ScopedString(uptr MaxLength) : String(MaxLength), Length(0) { in ScopedString() argument
|
D | linux.cpp | 221 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/ |
D | CodeViewRecordIO.h | 63 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/ |
D | CodeViewRecordIO.h | 64 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/ |
D | ArchiveYAML.h | 29 : DefaultValue(Default), MaxLength(Length) {} in Field() 32 unsigned MaxLength; member
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | BinaryStreamRef.cpp | 97 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/ |
D | BinaryStreamRef.cpp | 97 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/ |
D | ArchiveYAML.cpp | 49 if (P.second.Value.size() > P.second.MaxLength) in validate() 51 Twine(P.second.MaxLength)) in validate()
|
D | ArchiveEmitter.cpp | 39 WriteField(P.second.Value, P.second.MaxLength); in yaml2archive()
|
/external/pdfium/fxbarcode/ |
D | cbc_pdf417i_unittest.cpp | 16 TEST(CBC_PDF417ITest, MaxLength) { in TEST() argument
|
/external/llvm-project/llvm/lib/Target/SystemZ/ |
D | SystemZSelectionDAGInfo.cpp | 271 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/ |
D | SystemZSelectionDAGInfo.cpp | 273 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/ |
D | SystemZSelectionDAGInfo.cpp | 270 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/ |
D | sanitizer_symbolizer_posix_libcdep.cc | 329 char *Buffer, int MaxLength); 332 char *Buffer, int MaxLength); 337 int MaxLength);
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_symbolizer_posix_libcdep.cpp | 319 char *Buffer, int MaxLength, 323 char *Buffer, int MaxLength); 328 int MaxLength);
|
/external/llvm-project/llvm/lib/DebugInfo/CodeView/ |
D | CodeViewRecordIO.cpp | 18 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/ |
D | CodeViewRecordIO.cpp | 18 Error CodeViewRecordIO::beginRecord(Optional<uint32_t> MaxLength) { in beginRecord() argument 20 Limit.MaxLength = MaxLength; in beginRecord()
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_exdata.cpp | 23 {XFA_Attribute::MaxLength, XFA_AttributeType::Integer, (void*)-1},
|
/external/llvm-project/lldb/source/DataFormatters/ |
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};
|