Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions OpenCL_C.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6911,14 +6911,16 @@ endif::cl_khr_fp16[]

Scalar inputs to *any* are <<unified-spec, deprecated by>> OpenCL C version
3.0.
| Returns 1 if the most significant bit of _x_ (for scalar inputs) or
any component of _x_ (for vector inputs) is set; otherwise returns 0.
| Returns 1 if the most significant bit of _x_ is set for scalar inputs, or
if the most significant bit is set for any component of _x_ for vector
inputs; otherwise returns 0.
| int *all*(igentype _x_)

Scalar inputs to *all* are <<unified-spec, deprecated by>> OpenCL C version
3.0.
| Returns 1 if the most significant bit of _x_ (for scalar inputs) or
all components of _x_ (for vector inputs) is set; otherwise returns 0.
| Returns 1 if the most significant bit of _x_ is set for scalar inputs, or
if the most significant bit is set for all components of _x_ for vector
inputs; otherwise returns 0.
| |
| gentype *bitselect*(gentype _a_, gentype _b_, gentype _c_)
| Each bit of the result is the corresponding bit of _a_ if the
Expand Down