Lines Matching defs:value

312      *  \param err error code value.
523 /*! \brief Constructs a string populated from an arbitrary value of
528 * \param str the initial value of the string instance. Note that '\0'
550 /*! \brief Constructs a string populated from a null-terminated value.
552 * \param str the null-terminated initial value of the string instance.
613 /*! \brief Copies the value of another string to this one.
650 /*! \brief Constructs a string by copying the value of another instance.
661 //! \brief Destructor - frees memory used to hold the current value.
778 /*! \brief Constructs with a value copied from another.
794 * \param val value of initial elements.
1174 T* value = (T*) alloca(required);
1175 err = f(name, required, value, NULL);
1180 param->assign(&value[0], &value[required/sizeof(T)]);
1199 typename T::cl_type * value = (typename T::cl_type *) alloca(required);
1200 err = f(name, required, value, NULL);
1206 param->assign(&value[0], &value[elements]);
1209 if (value[i] != NULL)
1244 char* value = (char*)alloca(required);
1245 err = f(name, required, value, NULL);
1250 *param = value;
1262 VECTOR_CLASS<char> value(required);
1263 err = f(name, required, value.data(), NULL);
1268 param->assign(value.begin(), value.end() - 1u);
1288 ::size_t* value = (::size_t*) alloca(required);
1289 err = f(name, required, value, NULL);
1295 (*param)[i] = value[i];
1312 typename T::cl_type value;
1313 cl_int err = f(name, sizeof(value), &value, NULL);
1317 *param = value;
1318 if (value != NULL)
1526 enum { value = param_name }; \
1617 cl_uint param, ::size_t size, void* value, ::size_t* size_ret)
1618 { return f_(arg0_, param, size, value, size_ret); }
1626 cl_uint param, ::size_t size, void* value, ::size_t* size_ret)
1627 { return f_(arg0_, arg1_, param, size, value, size_ret); }
2068 * This simply copies the device ID value, which is an inexpensive operation.
2080 * This simply copies the device ID value, which is an inexpensive operation.
2127 //! \brief Wrapper for clGetDeviceInfo() that returns by value.
2221 * This simply copies the platform ID value, which is an inexpensive operation.
2227 * This simply copies the platform ID value, which is an inexpensive operation.
2243 //! \brief Wrapper for clGetPlatformInfo() that returns by value.
2304 * \note In the case that exceptions are enabled and a return value
2419 /*! \brief Gets the first available platform, returning it by value.
2748 * clReleaseContext() on the value previously held by this instance.
2765 //! \brief Wrapper for clGetContextInfo() that returns by value.
2806 ImageFormat* value = (ImageFormat*)
2813 (cl_image_format*)value,
2819 formats->assign(&value[0], &value[numEntries]);
2884 * clReleaseEvent() on the value previously held by this instance.
2901 //! \brief Wrapper for clGetEventInfo() that returns by value.
2924 //! \brief Wrapper for clGetEventProfilingInfo() that returns by value.
3063 * clReleaseMemObject() on the value previously held by this instance.
3110 //! \brief Wrapper for clGetMemObjectInfo() that returns by value.
3130 * Repeated calls to this function, for a given cl_mem value, will append
3136 * value - not the Memory class instance.
3642 //! \brief Wrapper for clGetImageInfo() that returns by value.
4699 * clReleaseSampler() on the value previously held by this instance.
4746 //! \brief Wrapper for clGetSamplerInfo() that returns by value.
4829 static const T* ptr(const T& value) { return &value; }
4835 static ::size_t size(const LocalSpaceArg& value) { return value.size_; }
4893 * clReleaseKernel() on the value previously held by this instance.
4999 cl_int setArg(cl_uint index, const T &value)
5005 detail::KernelArgumentHandler<T>::size(value),
5006 detail::KernelArgumentHandler<T>::ptr(value)),
5379 Kernel* value = (Kernel*) alloca(numKernels * sizeof(Kernel));
5381 object_, numKernels, (cl_kernel*) value, NULL);
5386 kernels->assign(&value[0], &value[numKernels]);
6027 * This is a four component RGBA floating-point color value if
6061 * This is a four component RGBA signed integer color value if
6095 * This is a four component RGBA unsigned integer color value if