Home
last modified time | relevance | path

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

/third_party/zlib/contrib/pascal/
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));
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceGlobalInits.h248 size_t StrLen) in DataInitializer() argument
249 : Initializer(DataInitializerKind), ContentsSize(StrLen), in DataInitializer()
251 for (size_t i = 0; i < StrLen; ++i) in DataInitializer()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringMap.h40 unsigned StrLen; variable
43 explicit StringMapEntryBase(unsigned Len) : StrLen(Len) {} in StringMapEntryBase()
45 unsigned getKeyLength() const { return StrLen; } in getKeyLength()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringMap.h39 size_t StrLen; variable
42 explicit StringMapEntryBase(size_t Len) : StrLen(Len) {} in StringMapEntryBase()
44 size_t getKeyLength() const { return StrLen; } in getKeyLength()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
DBTF.h85 uint32_t StrLen; ///< Length of string section member
DBTFDebug.cpp731 uint32_t TypeLen = 0, StrLen; in emitBTFSection() local
734 StrLen = StringTable.getSize(); in emitBTFSection()
739 OS.EmitIntValue(StrLen, 4); in emitBTFSection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp368 if (Value *StrLen = emitStrLen(SrcStr, B, DL, TLI)) in optimizeStrChr() local
369 return B.CreateGEP(B.getInt8Ty(), SrcStr, StrLen, "strchr"); in optimizeStrChr()
575 Value *StrLen = emitStrLen(Src, B, DL, TLI); in optimizeStpCpy() local
576 return StrLen ? B.CreateInBoundsGEP(B.getInt8Ty(), Dst, StrLen) : nullptr; in optimizeStpCpy()
846 Value *StrLen = emitStrLen(CI->getArgOperand(1), B, DL, TLI); in optimizeStrStr() local
847 if (!StrLen) in optimizeStrStr()
850 StrLen, B, DL, TLI); in optimizeStrStr()
3329 Value *StrLen = emitStrLen(Src, B, DL, TLI); in optimizeStrpCpyChk() local
3330 return StrLen ? B.CreateInBoundsGEP(B.getInt8Ty(), Dst, StrLen) : nullptr; in optimizeStrpCpyChk()
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
Ddemangle.cc228 static size_t StrLen(const char *str) { in StrLen() function
469 int length = StrLen(str); in MaybeAppend()
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
Dvariant_test.cc1801 struct StrLen { in TEST() struct
1807 EXPECT_EQ(7, absl::visit(StrLen{}, v)); in TEST()
1809 EXPECT_EQ(17, absl::visit(StrLen{}, v)); in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DConstantFolding.cpp657 size_t StrLen = Str.size(); in ConstantFoldLoadFromConstPtr() local
661 if ((NumBits >> 3) == StrLen + 1 && (NumBits & 7) == 0 && in ConstantFoldLoadFromConstPtr()