HomeSort by relevance Sort by last modified time
    Searched refs:StrLen (Results 1 - 12 of 12) sorted by null

  /external/llvm/include/llvm/Support/
PathV1.h 201 /// @param StrLen The length of the path name at StrStart
203 Path(const char *StrStart, unsigned StrLen);
    [all...]
  /external/llvm/include/llvm/ADT/
StringMap.h 44 unsigned StrLen;
46 explicit StringMapEntryBase(unsigned Len) : StrLen(Len) {}
48 unsigned getKeyLength() const { return StrLen; }
124 explicit StringMapEntry(unsigned strLen)
125 : StringMapEntryBase(strLen), second() {}
126 StringMapEntry(unsigned strLen, const ValueTy &V)
127 : StringMapEntryBase(strLen), second(V) {}
  /external/clang/include/clang/Basic/
IdentifierTable.h 84 template <std::size_t StrLen>
85 bool isStr(const char (&Str)[StrLen]) const {
86 return getLength() == StrLen-1 && !memcmp(getNameStart(), Str, StrLen-1);
  /external/zlib/contrib/pascal/
example.pas 61 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));
  /external/clang/lib/Basic/
Diagnostic.cpp 32 Output.append(Str, Str+strlen(Str));
391 template <std::size_t StrLen>
393 const char (&Str)[StrLen]) {
394 return StrLen-1 == ModifierLen && !memcmp(Modifier, Str, StrLen-1);
710 OutStr.append(S, S + strlen(S));
759 OutStr.append(S, S + strlen(S));
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 31 /// EmitStrLen - Emit a call to the strlen function to the builder, for the
41 Constant *StrLen = M->getOrInsertFunction("strlen", AttrListPtr::get(AWI, 2),
45 CallInst *CI = B.CreateCall(StrLen, CastToCStr(Ptr, B), "strlen");
46 if (const Function *F = dyn_cast<Function>(StrLen->stripPointerCasts()))
214 unsigned NameLen = strlen(Name);
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 450 unsigned StrLen = Str.length();
455 if ((NumBits >> 3) == StrLen + 1 && (NumBits & 7) == 0 &&
460 for (signed i = StrLen-1; i >= 0; i--) {
465 for (unsigned i = 0; i < StrLen; i++) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 166 // memory is to be moved to. We just generate a call to strlen.
515 // 'strlen' Optimizations
527 // Constant folding: strlen("xyz") -> 3
531 // strlen(x) != 0 --> *x != 0
532 // strlen(x) == 0 --> *x == 0
653 // strcspn(s, "") -> strlen(s)
677 // fold strstr(a, b) == a -> strncmp(a, b, strlen(b)) == 0
679 Value *StrLen = EmitStrLen(CI->getArgOperand(1), B, TD);
681 StrLen, B, TD);
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp 285 std::string::size_type StartOfMacroName = strlen("#define ");
373 std::string::size_type StartOfMacroName = strlen("#define ");
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp     [all...]

Completed in 742 milliseconds