Home | History | Annotate | Download | only in Utils

Lines Matching refs:Len

119 Value *llvm::EmitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len,
142 CastToCStr(Ptr2, B), Len, "strncmp");
176 Value *llvm::EmitStrNCpy(Value *Dst, Value *Src, Value *Len,
192 Len->getType(), NULL);
194 Len, "strncpy");
201 /// This expects that the Len and ObjSize have type 'intptr_t' and Dst/Src
203 Value *llvm::EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
223 CallInst *CI = B.CreateCall4(MemCpy, Dst, Src, Len, ObjSize);
230 /// a pointer, Val is an i32 value, and Len is an 'intptr_t' value.
232 Value *Len, IRBuilder<> &B, const DataLayout *TD,
250 CallInst *CI = B.CreateCall3(MemChr, CastToCStr(Ptr, B), Val, Len, "memchr");
260 Value *Len, IRBuilder<> &B, const DataLayout *TD,
281 Len, "memcmp");