Lines Matching defs:offset
705 m_spec.inputs.push_back(Symbol("offset", glu::VarType(glu::TYPE_INT, precision)));
708 m_spec.source = "extracted = bitfieldExtract(value, offset, bits);";
725 const int offset = rnd.getInt(0, numBits-bits);
727 inOffset[valueNdx] = offset;
739 const int offset = *((const int*)inputs[1]);
756 const deUint32 baseVal = (offset == 32) ? (0) : ((value >> offset) & valMask);
779 m_spec.inputs.push_back(Symbol("offset", glu::VarType(glu::TYPE_INT, precision)));
782 m_spec.source = "result = bitfieldInsert(base, insert, offset, bits);";
799 const int offset = rnd.getInt(0, numBits-bits);
801 inOffset[valueNdx] = offset;
816 const int offset = *((const int*)inputs[2]);
826 const deUint32 ref = (base & ~(mask<<offset)) | ((insert & mask)<<offset);