Lines Matching refs:GetLength
46 GetLength<static_cast<VerifyObjectFlags>(kVerifyFlags & ~kVerifyThis)>(); in SizeOf()
56 static_cast<uint32_t>(GetLength<kVerifyFlags>()))) { in CheckIsValidIndex()
139 DCHECK_LT(dst_pos, GetLength()); in Memmove()
140 DCHECK_LE(dst_pos, GetLength() - count); in Memmove()
141 DCHECK_LT(src_pos, src->GetLength()); in Memmove()
142 DCHECK_LE(src_pos, src->GetLength() - count); in Memmove()
201 DCHECK_LT(dst_pos, GetLength()); in Memcpy()
202 DCHECK_LE(dst_pos, GetLength() - count); in Memcpy()
203 DCHECK_LT(src_pos, src->GetLength()); in Memcpy()
204 DCHECK_LE(src_pos, src->GetLength() - count); in Memcpy()
277 for (size_t i = 0, count = GetLength(); i < count; ++i) { in Fixup()