Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros
hppa.h File Reference

Go to the source code of this file.

Macros

#define Shiftdouble(left, right, amount, dest)
 
#define Variableshiftdouble(left, right, amount, dest)
 
#define Variable_shift_double(left, right, amount, dest)
 

Macro Definition Documentation

#define Shiftdouble (   left,
  right,
  amount,
  dest 
)
Value:
/* int left, right, amount, dest; */ \
dest = ((left) << (32-(amount))) | ((unsigned int)(right) >> (amount))

Definition at line 28 of file hppa.h.

#define Variable_shift_double (   left,
  right,
  amount,
  dest 
)
Value:
/* unsigned int left, right; int amount, dest; */ \
dest = (left << (32-(amount))) | ((unsigned) right >> (amount))

Definition at line 40 of file hppa.h.

#define Variableshiftdouble (   left,
  right,
  amount,
  dest 
)
Value:
/* unsigned int left, right; int amount, dest; */ \
if (amount == 0) dest = right; \
else dest = ((((unsigned) left)&0x7fffffff) << (32-(amount))) | \
((unsigned) right >> (amount))

Definition at line 33 of file hppa.h.