Fabcoin Core  0.16.2
P2P Digital Currency
Functions
words.h File Reference
#include "config.h"
#include "misc.h"
Include dependency graph for words.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

size_t CountWords (const word *X, size_t N)
 
void SetWords (word *r, word a, size_t n)
 
void CopyWords (word *r, const word *a, size_t n)
 
void XorWords (word *r, const word *a, const word *b, size_t n)
 
void XorWords (word *r, const word *a, size_t n)
 
void AndWords (word *r, const word *a, const word *b, size_t n)
 
void AndWords (word *r, const word *a, size_t n)
 
void OrWords (word *r, const word *a, const word *b, size_t n)
 
void OrWords (word *r, const word *a, size_t n)
 
word ShiftWordsLeftByBits (word *r, size_t n, unsigned int shiftBits)
 
word ShiftWordsRightByBits (word *r, size_t n, unsigned int shiftBits)
 
void ShiftWordsLeftByWords (word *r, size_t n, size_t shiftWords)
 
void ShiftWordsRightByWords (word *r, size_t n, size_t shiftWords)
 

Function Documentation

void AndWords ( word r,
const word a,
const word b,
size_t  n 
)
inline

Definition at line 44 of file words.h.

Here is the caller graph for this function:

void AndWords ( word r,
const word a,
size_t  n 
)
inline

Definition at line 50 of file words.h.

void CopyWords ( word r,
const word a,
size_t  n 
)
inline

Definition at line 22 of file words.h.

Here is the call graph for this function:

Here is the caller graph for this function:

size_t CountWords ( const word X,
size_t  N 
)
inline

Definition at line 9 of file words.h.

Here is the caller graph for this function:

void OrWords ( word r,
const word a,
const word b,
size_t  n 
)
inline

Definition at line 56 of file words.h.

Here is the caller graph for this function:

void OrWords ( word r,
const word a,
size_t  n 
)
inline

Definition at line 62 of file words.h.

void SetWords ( word r,
word  a,
size_t  n 
)
inline

Definition at line 16 of file words.h.

Here is the caller graph for this function:

word ShiftWordsLeftByBits ( word r,
size_t  n,
unsigned int  shiftBits 
)
inline

Definition at line 68 of file words.h.

Here is the caller graph for this function:

void ShiftWordsLeftByWords ( word r,
size_t  n,
size_t  shiftWords 
)
inline

Definition at line 96 of file words.h.

Here is the call graph for this function:

Here is the caller graph for this function:

word ShiftWordsRightByBits ( word r,
size_t  n,
unsigned int  shiftBits 
)
inline

Definition at line 82 of file words.h.

Here is the caller graph for this function:

void ShiftWordsRightByWords ( word r,
size_t  n,
size_t  shiftWords 
)
inline

Definition at line 107 of file words.h.

Here is the call graph for this function:

Here is the caller graph for this function:

void XorWords ( word r,
const word a,
const word b,
size_t  n 
)
inline

Definition at line 32 of file words.h.

Here is the caller graph for this function:

void XorWords ( word r,
const word a,
size_t  n 
)
inline

Definition at line 38 of file words.h.