Home
last modified time | relevance | path

Searched refs:StrLen (Results 1 – 20 of 20) sorted by relevance

/netbsd-src/sys/external/bsd/gnu-efi/dist/lib/
H A Dconsole.c38 IN UINTN StrLen in Input() argument
47 StrLen in Input()
57 IN UINTN StrLen in IInput() argument
93 if (Len < StrLen-1) { in IInput()
H A Dprint.c326 len = StrLen(Buffer); in _SPrint()
368 newlen = spc->len + StrLen(Buffer) + 1; in _PoolPrint()
1416 UINTN x = StrLen(Buffer); in FloatToString()
H A Dstr.c181 StrLen ( in StrLen() function
/netbsd-src/common/dist/zlib/contrib/pascal/
H A Dexample.pas61 len := StrLen(hello)+1;
90 len := StrLen(hello)+1;
162 uncomprLen := StrLen(PChar(uncompr));
189 len := StrLen(hello)+1;
373 len := StrLen(hello)+1;
461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary));
469 c_stream.avail_in := StrLen(hello)+1;
513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
/netbsd-src/external/gpl3/binutils/dist/zlib/contrib/pascal/
H A Dexample.pas61 len := StrLen(hello)+1;
90 len := StrLen(hello)+1;
162 uncomprLen := StrLen(PChar(uncompr));
189 len := StrLen(hello)+1;
373 len := StrLen(hello)+1;
461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary));
469 c_stream.avail_in := StrLen(hello)+1;
513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
/netbsd-src/external/gpl3/gdb/dist/zlib/contrib/pascal/
H A Dexample.pas61 len := StrLen(hello)+1;
90 len := StrLen(hello)+1;
162 uncomprLen := StrLen(PChar(uncompr));
189 len := StrLen(hello)+1;
373 len := StrLen(hello)+1;
461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary));
469 c_stream.avail_in := StrLen(hello)+1;
513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
/netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/pascal/
H A Dexample.pas61 len := StrLen(hello)+1;
90 len := StrLen(hello)+1;
162 uncomprLen := StrLen(PChar(uncompr));
189 len := StrLen(hello)+1;
373 len := StrLen(hello)+1;
461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary));
469 c_stream.avail_in := StrLen(hello)+1;
513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
/netbsd-src/external/gpl3/gdb.old/dist/zlib/contrib/pascal/
H A Dexample.pas61 len := StrLen(hello)+1;
90 len := StrLen(hello)+1;
162 uncomprLen := StrLen(PChar(uncompr));
189 len := StrLen(hello)+1;
373 len := StrLen(hello)+1;
461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary));
469 c_stream.avail_in := StrLen(hello)+1;
513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DIdentifierTable.h148 template <std::size_t StrLen>
149 bool isStr(const char (&Str)[StrLen]) const { in isStr() argument
150 return getLength() == StrLen-1 && in isStr()
151 memcmp(getNameStart(), Str, StrLen-1) == 0; in isStr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DTypoCorrection.h207 template<std::size_t StrLen>
208 bool isKeyword(const char (&Str)[StrLen]) const { in isKeyword() argument
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBTF.h85 uint32_t StrLen; ///< Length of string section member
H A DBTFDebug.cpp792 uint32_t TypeLen = 0, StrLen; in emitBTFSection() local
795 StrLen = StringTable.getSize(); in emitBTFSection()
800 OS.emitInt32(StrLen); in emitBTFSection()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DDiagnostic.cpp559 template <std::size_t StrLen>
561 const char (&Str)[StrLen]) { in ModifierIs() argument
562 return StrLen-1 == ModifierLen && memcmp(Modifier, Str, StrLen-1) == 0; in ModifierIs()
/netbsd-src/sys/external/bsd/gnu-efi/dist/inc/
H A Defilib.h376 StrLen (
516 IN UINTN StrLen
525 IN UINTN StrLen
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp315 if (Value *StrLen = emitStrLen(SrcStr, B, DL, TLI)) in optimizeStrChr() local
316 return B.CreateGEP(B.getInt8Ty(), SrcStr, StrLen, "strchr"); in optimizeStrChr()
524 Value *StrLen = emitStrLen(Src, B, DL, TLI); in optimizeStpCpy() local
525 return StrLen ? B.CreateInBoundsGEP(B.getInt8Ty(), Dst, StrLen) : nullptr; in optimizeStpCpy()
808 Value *StrLen = emitStrLen(CI->getArgOperand(1), B, DL, TLI); in optimizeStrStr() local
809 if (!StrLen) in optimizeStrStr()
812 StrLen, B, DL, TLI); in optimizeStrStr()
3327 Value *StrLen = emitStrLen(Src, B, DL, TLI); in optimizeStrpCpyChk() local
3328 return StrLen ? B.CreateInBoundsGEP(B.getInt8Ty(), Dst, StrLen) : nullptr; in optimizeStrpCpyChk()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp352 size_t StrLen = StrEnd - Offset; in terminatedSubstr() local
353 return Str.substr(Offset, StrLen); in terminatedSubstr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaInit.cpp2915 uint64_t StrLen = SL->getLength(); in CheckDesignatedInitializer() local
2916 if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen)) in CheckDesignatedInitializer()
2917 StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue(); in CheckDesignatedInitializer()
2918 StructuredList->resizeInits(Context, StrLen); in CheckDesignatedInitializer()
2922 for (unsigned i = 0, e = StrLen; i != e; ++i) { in CheckDesignatedInitializer()
2938 uint64_t StrLen = Str.size(); in CheckDesignatedInitializer() local
2939 if (cast<ConstantArrayType>(AT)->getSize().ult(StrLen)) in CheckDesignatedInitializer()
2940 StrLen = cast<ConstantArrayType>(AT)->getSize().getZExtValue(); in CheckDesignatedInitializer()
2941 StructuredList->resizeInits(Context, StrLen); in CheckDesignatedInitializer()
2945 for (unsigned i = 0, e = StrLen; i != e; ++i) { in CheckDesignatedInitializer()
H A DSemaChecking.cpp636 size_t StrLen = in checkFortifiedBuiltinMemoryFunction() local
639 H, FormatBytes, FormatBytes + StrLen, getLangOpts(), in checkFortifiedBuiltinMemoryFunction()
9266 size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size()); in CheckFormatString() local
9271 Str, Str + StrLen, S.getLangOpts(), S.Context.getTargetInfo())) in CheckFormatString()
9287 if (StrLen == 0 && numDataArgs > 0) { in CheckFormatString()
9304 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen, in CheckFormatString()
9314 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen, in CheckFormatString()
9329 size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size()); in FormatStringHasSArg() local
9330 return analyze_format_string::ParseFormatStringHasSArg(Str, Str + StrLen, in FormatStringHasSArg()
9628 template <std::size_t StrLen>
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DConstantFolding.cpp704 size_t StrLen = Str.size(); in ConstantFoldLoadFromConstPtr() local
708 if ((NumBits >> 3) == StrLen + 1 && (NumBits & 7) == 0 && in ConstantFoldLoadFromConstPtr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DItaniumMangle.cpp5965 template <std::size_t StrLen>
5967 const char (&Str)[StrLen]) { in isStreamCharSpecialization() argument