Searched refs:MaxLength (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/
H A Dsanitizer_symbolize.cpp35 char *Buffer, int MaxLength) {
47 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s",
48 Result.c_str()) < MaxLength;
52 char *Buffer, int MaxLength) {
64 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s",
65 Result.c_str()) < MaxLength;
71 int MaxLength) {
74 return __sanitizer::internal_snprintf(Buffer, MaxLength, "%s",
75 Result.c_str()) < MaxLength
34 __sanitizer_symbolize_code(const char *ModuleName, uint64_t ModuleOffset, char *Buffer, int MaxLength) argument
51 __sanitizer_symbolize_data(const char *ModuleName, uint64_t ModuleOffset, char *Buffer, int MaxLength) argument
70 __sanitizer_symbolize_demangle(const char *Name, char *Buffer, int MaxLength) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.h21 explicit ScopedString(uptr MaxLength) : String(MaxLength), Length(0) { argument
/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutstring.c166 * MaxLength - Maximum output length. Used to constrain the
179 UINT16 MaxLength)
191 for (i = 0; (i < MaxLength) && String[i]; i++)
261 if (i == MaxLength && String[i])
177 AcpiUtPrintString( char *String, UINT16 MaxLength) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewRecordIO.h63 Error beginRecord(Optional<uint32_t> MaxLength);
245 Optional<uint32_t> MaxLength; member in struct:llvm::codeview::CodeViewRecordIO::RecordLimit
248 if (!MaxLength.hasValue())
253 if (BytesUsed >= *MaxLength)
255 return *MaxLength - BytesUsed;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamRef.cpp97 uint32_t MaxLength = getLength() - Offset;
98 if (Buffer.size() > MaxLength)
99 Buffer = Buffer.slice(0, MaxLength);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_posix_libcdep.cpp316 char *Buffer, int MaxLength);
319 char *Buffer, int MaxLength);
324 int MaxLength);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.h67 SDValue Src, SDValue MaxLength,
H A DSystemZSelectionDAGInfo.cpp270 SDValue MaxLength, MachinePointerInfo SrcPtrInfo) const {
272 MaxLength = DAG.getZExtOrTrunc(MaxLength, DL, PtrVT);
273 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength);
268 EmitTargetCodeForStrnlen( SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Src, SDValue MaxLength, MachinePointerInfo SrcPtrInfo) const argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DCodeViewRecordIO.cpp18 Error CodeViewRecordIO::beginRecord(Optional<uint32_t> MaxLength) { argument
20 Limit.MaxLength = MaxLength;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGTargetInfo.h145 SDValue Src, SDValue MaxLength,
144 EmitTargetCodeForStrnlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Src, SDValue MaxLength, MachinePointerInfo SrcPtrInfo) const argument
/freebsd-11-stable/sys/contrib/dev/acpica/components/executer/
H A Dexconvrt.c168 UINT8 MaxLength);
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dacutils.h1043 UINT16 MaxLength);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp8359 uint64_t MaxLength = uint64_t(-1);
8367 MaxLength = N.getExtValue();
8370 if (MaxLength == 0u)
8426 for (; MaxLength; --MaxLength) {
11033 uint64_t MaxLength = uint64_t(-1);
11041 MaxLength = N.getExtValue();
11045 if (MaxLength == 0u)
11077 uint64_t BytesRemaining = MaxLength;
11140 for (; MaxLength;
[all...]

Completed in 205 milliseconds