Lines Matching defs:index

668             size_type& operator[](int index)
670 return data_[index];
673 const size_type& operator[](int index) const
675 return data_[index];
1700 int index = 7;
1701 while(versionInfo[index] != '.' ) {
1703 highVersion += versionInfo[index]-'0';
1704 ++index;
1706 ++index;
1707 while(versionInfo[index] != ' ' && versionInfo[index] != '\0') {
1709 lowVersion += versionInfo[index]-'0';
1710 ++index;
5988 cl_int setArg(cl_uint index, const cl::pointer<T, D> &argPtr)
5991 ::clSetKernelArgSVMPointer(object_, index, argPtr.get()),
5998 cl_int setArg(cl_uint index, const cl::vector<T, Alloc> &argPtr)
6001 ::clSetKernelArgSVMPointer(object_, index, argPtr.data()),
6009 setArg(cl_uint index, const T argPtr)
6012 ::clSetKernelArgSVMPointer(object_, index, argPtr),
6021 setArg(cl_uint index, const T &value)
6026 index,
6032 cl_int setArg(cl_uint index, size_type size, const void* argPtr)
6035 ::clSetKernelArg(object_, index, size, argPtr),
6093 template<int index, int ArrayLength, class D, typename T0, typename T1, typename... Ts>
6096 pointerList[index] = static_cast<void*>(t0.get());
6097 setSVMPointersHelper<index + 1, ArrayLength>(pointerList, t1, ts...);
6100 template<int index, int ArrayLength, typename T0, typename T1, typename... Ts>
6104 pointerList[index] = static_cast<void*>(t0);
6105 setSVMPointersHelper<index + 1, ArrayLength>(pointerList, t1, ts...);
6108 template<int index, int ArrayLength, typename T0, class D>
6111 pointerList[index] = static_cast<void*>(t0.get());
6115 template<int index, int ArrayLength, typename T0>
6119 pointerList[index] = static_cast<void*>(t0);
6791 setSpecializationConstant(cl_uint index, const T &value)
6796 index,
6806 cl_int setSpecializationConstant(cl_uint index, size_type size, const void* value)
6811 index,
6941 inline cl_int cl::Program::setSpecializationConstant(cl_uint index, const bool &value)
6947 index,
9962 template<int index, typename T0, typename... T1s>
9965 kernel_.setArg(index, t0);
9966 setArgs<index + 1, T1s...>(std::forward<T1s>(t1s)...);
9969 template<int index, typename T0>
9972 kernel_.setArg(index, t0);
9975 template<int index>