Lines Matching defs:curOffset
914 deUint32 curOffset = 0;
930 curOffset = (deUint32)deAlign32((int)curOffset, (int)alignment);
933 layoutEntry.offset = curOffset;
936 curOffset += size;
944 curOffset = (deUint32)deAlign32((int)curOffset, (int)vecAlignment);
947 layoutEntry.offset = curOffset;
950 curOffset += vecAlignment*numVecs;
957 const deUint32 totalSize = (deUint32)deAlign32(curOffset, maxAlignment);
1221 int curOffset = 0;
1222 while (curOffset < numValues)
1224 const int numToExec = de::min(maxValuesPerInvocation, numValues-curOffset);
1227 gl.bindBufferRange(GL_SHADER_STORAGE_BUFFER, INPUT_BUFFER_BINDING, getInputBuffer(), curOffset*inputStride, numToExec*inputStride);
1229 gl.bindBufferRange(GL_SHADER_STORAGE_BUFFER, OUTPUT_BUFFER_BINDING, getOutputBuffer(), curOffset*outputStride, numToExec*outputStride);
1235 curOffset += numToExec;