Lines Matching defs:x
37 static inline unsigned char idx(unsigned char x, unsigned char y) { in idx()
42 static inline uint64_t load64(const unsigned char* x) { in load64()
51 static inline void store64(unsigned char* x, uint64_t val) { in store64()
58 static inline void xor64(unsigned char* x, uint64_t val) { in xor64()
65 # define readLane(x, y) load64(ctx->state+sizeof(uint64_t)*idx(x, y)) argument
66 # define writeLane(x, y, v) store64(ctx->state+sizeof(uint64_t)*idx(x, y), v) argument
67 # define XORLane(x, y, v) xor64(ctx->state+sizeof(uint64_t)*idx(x, y), v) argument
69 # define readLane(x, y) (((uint64_t*)ctx->state)[idx(x,y)]) argument
70 # define writeLane(x, y, v) (((uint64_t*)ctx->state)[idx(x,y)] = v) argument
71 # define XORLane(x, y, v) (((uint64_t*)ctx->state)[idx(x,y)] ^= v) argument
95 unsigned char x, y; in permute() local
109 unsigned char x = 1, y = 0, t; in permute() local
124 unsigned char x, y; in permute() local