Home | History | Annotate | Download | only in asm-x86

Lines Matching full:word

38  * restricted to acting on a single-word quantity.
112 * modify other bits in the word.
151 * restricted to acting on a single-word quantity.
357 * __ffs - find first bit in word.
358 * @word: The word to search
362 static inline unsigned long __ffs(unsigned long word)
365 :"=r" (word)
366 :"rm" (word));
367 return word;
400 * ffz - find first zero in word.
401 * @word: The word to search
405 static inline unsigned long ffz(unsigned long word)
408 :"=r" (word)
409 :"r" (~word));
410 return word;
419 * @x: the word to search
438 * @x: the word to search