Home | History | Annotate | Download | only in functional

Lines Matching refs:workGroupSize

609 		const int					workGroupSize	= m_localSize[0]*m_localSize[1]*m_localSize[2];
611 const int numValues = workGroupSize*workGroupCount;
621 << "shared uint offsets[" << workGroupSize << "];\n\n"
672 for (int localOffs = 0; localOffs < workGroupSize; localOffs++)
674 const int globalOffs = groupNdx*workGroupSize;
676 const int offs0 = localOffs-1 < 0 ? ((localOffs+workGroupSize-1)%workGroupSize) : ((localOffs-1)%workGroupSize);
677 const int offs1 = localOffs-2 < 0 ? ((localOffs+workGroupSize-2)%workGroupSize) : ((localOffs-2)%workGroupSize);
832 const int workGroupSize = m_localSize[0]*m_localSize[1]*m_localSize[2];
834 const int numValues = workGroupSize*workGroupCount;
844 << "shared uint offsets[" << workGroupSize << "];\n\n"
891 for (int localOffs = 0; localOffs < workGroupSize; localOffs++)
893 const int globalOffs = groupNdx*workGroupSize;
895 const deUint32 ref = (deUint32)(globalOffs + (workGroupSize-localOffs-1)*(workGroupSize-localOffs-1));
926 const int workGroupSize = m_localSize[0]*m_localSize[1]*m_localSize[2];
928 const int numValues = workGroupSize*workGroupCount;
985 for (int localOffs = 0; localOffs < workGroupSize; localOffs++)
987 const int globalOffs = groupNdx*workGroupSize;
1495 const int workGroupSize = m_localSize[0]*m_localSize[1]*m_localSize[2];
1497 const int numValues = workGroupSize*workGroupCount;