stream_value
MISSING
(1) | |
(2) | |
(3) | |
(4) | |
(5) | |
(6) | |
(7) | |
(8) | |
(9) | |
(10) | |
(11) | |
(12) | |
(13) | |
(14) | |
(15) | |
(16) | |
(17) | |
(18) | |
(19) |
-
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.
-
-
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
-
-
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.
-
-
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
-
-
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.
-
-
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.
-
-
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
-
-
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.
-
-
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.
-
-
Streams an integral type into a stream
Parameters:-
const cl::sycl::stream &
os
: The stream object to be streamed to -
dataType
rhs
: Integral value
-
-
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
-
-
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
-
-
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
-
-
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
-
-
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
-
-
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
-
-
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
-
-
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
-
-
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.
-