Lines Matching refs:IsWide
163 void evalMemcpy(CheckerContext &C, const CallExpr *CE, bool IsWide) const;
170 bool Restricted, bool IsMempcpy, bool IsWide) const;
251 AccessKind Access, bool IsWide = false) const;
255 bool IsWide = false) const;
258 AnyArgExpr Second, bool IsWide = false) const;
342 bool IsWide) const { in CheckLocation()
363 if (!IsWide) { in CheckLocation()
420 AccessKind Access, bool IsWide) const { in CheckBufferAccess()
429 QualType PtrTy = Ctx.getPointerType(IsWide ? Ctx.WideCharTy : Ctx.CharTy); in CheckBufferAccess()
463 State = CheckLocation(C, State, Buffer, BufEnd, Access, IsWide); in CheckBufferAccess()
478 bool IsWide) const { in CheckOverlap()
557 QualType CharPtrTy = Ctx.getPointerType(IsWide ? Ctx.WideCharTy : Ctx.CharTy); in CheckOverlap()
1193 bool IsMempcpy, bool IsWide) const { in evalCopyCommon()
1236 state = CheckBufferAccess(C, state, Dest, Size, AccessKind::write, IsWide); in evalCopyCommon()
1237 state = CheckBufferAccess(C, state, Source, Size, AccessKind::read, IsWide); in evalCopyCommon()
1240 state = CheckOverlap(C, state, Size, Dest, Source, IsWide); in evalCopyCommon()
1291 bool IsWide) const { in evalMemcpy()
1303 IsWide); in evalMemcpy()