Lines Matching defs:beg
314 inline void fillBits (IterT beg, const IterT end, const deUint8 pattern = 0xdeu)
316 for (; beg < end; ++beg)
317 deMemset(&(*beg), static_cast<int>(pattern), sizeof(*beg));
322 bool checkBits (IterT beg, const IterT end, const deUint8 pattern = 0xdeu)
324 for (; beg < end; ++beg)
326 const deUint8* elementBytes = reinterpret_cast<const deUint8*>(&(*beg));
327 for (std::size_t i = 0u; i < sizeof(*beg); ++i)