VI_not | VBI_not | VSI_not | VLI_not | VQI_not | |
VU_not | VUB_not | VUS_not | VUL_not | VUQ_not | VUI_not |
|
Funktion | Bit-weises Komplement |
|
Syntax C/C++ | #include <VImath.h>
void VI_not( iVector Y, iVector X, ui size ); |
C++ VecObj | #include <OptiVec.h>
void vector<T>::not( const vector<T>& X ); |
Pascal/Delphi | uses VImath;
procedure VI_not( Y, X:iVector; size:UIntSize ); |
|
CUDA-Funktion C/C++ | #include <cudaVImath.h>
int cudaVI_not( iVector d_Y, iVector d_X, ui size );
int VIcu_not( iVector h_Y, iVector h_X, ui size );
|
CUDA-Funktion Pascal/Delphi | uses VImath;
function cudaVI_not( d_Y, d_X:iVector; size:UIntSize ): IntBool;
function VIcu_not( h_Y, h_X:iVector; size:UIntSize );
|
|
Beschreibung | Yi = ~(Xi)
Jedes einzelne Bit wird invertiert (d.h. es wird 0 in Yi, wenn es 1 in Xi war und umgekehrt). |
|
|
|
|