Home | History | Annotate | Download | only in netboot

Lines Matching refs:xor

1445 /* given 6 bytes, view them as 8 6-bit numbers and return the XOR of those */
1463 inline u32 xor( u32 a, u32 b )
1467 #define XOR8( a, b, c, d, e, f, g, h ) xor( a, xor( b, xor( c, xor( d, xor( e, xor( f, xor( g, h ) ) ) ) ) ) )