Home | History | Annotate | Download | only in block

Lines Matching full:x1ff

324         if (offset & 0x1ff) {
327 shift = offset & 0x1ff;
328 size = (shift + count + 0x1ff) & ~0x1ff;
348 if (count & 0x1ff || (uintptr_t) buf & 0x1ff) {
354 size = (count + 0x1ff) & ~0x1ff;
412 if (offset & 0x1ff) {
414 shift = offset & 0x1ff;
436 if (count & 0x1ff || (uintptr_t) buf & 0x1ff) {
438 while ((size = (count & ~0x1ff)) != 0) {
454 /* here, count < 512 because (count & ~0x1ff) == 0 */