syclreference.com
  1. SYCL
  2. | API Reference
  3. | Streams
  4. | stream_value

stream_value

MISSING


const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const bool & rhs)
(1)
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const char & rhs)
(2)
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const char * rhs)
(3)
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const cl::sycl::half & rhs)
(4)
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const cl::sycl::precision_manipulator & rhs)
(5)
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const cl::sycl::stream_manipulator & rhs)
(6)
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const detail::width_manipulator & rhs)
(7)
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const double & rhs)
(8)
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const float & rhs)
(9)
template <class dataType, typename overloadDependantT, typename >
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, dataType rhs)
(10)
template <int dimensions, bool with_offset>
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const item<dimensions, with_offset> & rhs, char * typeStr)
(11)
template <int dimensions>
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const id<dimensions> & rhs, char * typeStr)
(12)
template <int dimensions>
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const range<dimensions> & rhs, char * typeStr)
(13)
template <int dimensions>
static const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const group<dimensions> & rhs)
(14)
template <int dimensions>
static const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const h_item<dimensions> & rhs)
(15)
template <int dimensions>
static const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const nd_item<dimensions> & rhs)
(16)
template <int dimensions>
static const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const nd_range<dimensions> & rhs)
(17)
template <typename dataType, cl::sycl::access::address_space asp>
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, const multi_ptr<dataType, asp> & rhs)
(18)
template <typename pointerT>
const cl::sycl::stream & stream_value(const cl::sycl::stream & os, pointerT * rhs)
(19)
  1. Inline function that streams a bool value to a stream object.
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to.
    • const bool & rhs : The bool value to be streamed.
  2. Inline function that streams a const char & value to a stream object.
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to.
    • const char & rhs : The const char
  3. Inline function that streams a const char * value to a stream object.
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to.
    • const char * rhs : The const char * value to be streamed.
  4. Streams a half value to a stream object
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to
    • const cl::sycl::half & rhs : The half value to be streamed
  5. Inline function that streams a precision manipulator to a stream object, applying the precision value.
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to.
    • const cl::sycl::precision_manipulator & rhs : The precision_manipulator be applied to the stream object.
  6. Inline function that streams a manipulator to a stream object, applying the appropriate action.
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to.
    • const cl::sycl::stream_manipulator & rhs : The stream_manipulator be applied to the stream object.
  7. Sets the width used for streaming data to the value specified by rhs
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to
    • const detail::width_manipulator & rhs : Width manipulator specifying the new width
    Returns: Original stream object
  8. Inline function that streams a double value to a stream object.
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to.
    • const double & rhs : The double value to be streamed.
  9. Inline function that streams a float value to a stream object.
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to.
    • const float & rhs : The float value to be streamed.
  10. Streams an integral type into a stream
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to
    • dataType rhs : Integral value
    Returns: Original stream object
  11. Streams an item object into a stream object
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to
    • const item<dimensions, with_offset> & rhs : item object
    • char * typeStr
    Returns: Original stream object
  12. Streams an id object into a stream object
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to
    • const id<dimensions> & rhs : id object
    • char * typeStr : Optional type name
    Returns: Original stream object
  13. Streams a range object into a stream object
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to
    • const range<dimensions> & rhs : range object
    • char * typeStr : Optional type name
    Returns: Original stream object
  14. Streams a group object into a stream object
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to
    • const group<dimensions> & rhs : group object
    Returns: Original stream object
  15. Streams an h_item object into a stream object
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to
    • const h_item<dimensions> & rhs : h_item object
    Returns: Original stream object
  16. Streams an nd_item object into a stream object
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to
    • const nd_item<dimensions> & rhs : nd_item object
    Returns: Original stream object
  17. Streams an nd_range object into a stream object
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to
    • const nd_range<dimensions> & rhs : nd_range object
    Returns: Original stream object
  18. Streams a multi_ptr object into a stream
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to
    • const multi_ptr<dataType, asp> & rhs : multi_ptr object to display in the stream
    Returns: Original stream object
  19. Template function that streams a pointer value to a stream object.
    Parameters:
    • const cl::sycl::stream & os : The stream object to be streamed to.
    • pointerT * rhs : The pointer value to be streamed.

syclreference.com — SYCL Reference Pages

Last updated: 2019-01-24 00:24:52 +0000