Lines Matching refs:offset
71 test(int offset)
73 assert(offset < mSize);
74 return mMask[offset];
78 setMask(int offset, int len)
80 assert(mSize >= (offset + len));
82 mMask[offset + i] = true;
94 getMask(int offset, int len) const
97 assert(mSize >= (offset + len));
99 tmp = tmp & mMask.at(offset + i);
171 int offset = mAtomicOp[i].first;
173 (*fnctr)(&p[offset]);
181 int offset = mAtomicOp[i].first;
182 uint8_t *p = blk.getDataMod(offset);