Lines Matching refs:size
10 unsigned long __xchg_small(volatile void *ptr, unsigned long val, unsigned int size)
17 WARN_ON((unsigned long)ptr & (size - 1));
19 /* Mask value to the correct size. */
20 mask = GENMASK((size * BITS_PER_BYTE) - 1, 0);
30 shift ^= sizeof(u32) - size;
51 unsigned long new, unsigned int size)
58 WARN_ON((unsigned long)ptr & (size - 1));
60 /* Mask inputs to the correct size. */
61 mask = GENMASK((size * BITS_PER_BYTE) - 1, 0);
72 shift ^= sizeof(u32) - size;