• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/oss/dmasound/

Lines Matching defs:userCount

70 static ssize_t ata_ct_law(const u_char __user *userPtr, size_t userCount,
73 static ssize_t ata_ct_s8(const u_char __user *userPtr, size_t userCount,
76 static ssize_t ata_ct_u8(const u_char __user *userPtr, size_t userCount,
79 static ssize_t ata_ct_s16be(const u_char __user *userPtr, size_t userCount,
82 static ssize_t ata_ct_u16be(const u_char __user *userPtr, size_t userCount,
85 static ssize_t ata_ct_s16le(const u_char __user *userPtr, size_t userCount,
88 static ssize_t ata_ct_u16le(const u_char __user *userPtr, size_t userCount,
91 static ssize_t ata_ctx_law(const u_char __user *userPtr, size_t userCount,
94 static ssize_t ata_ctx_s8(const u_char __user *userPtr, size_t userCount,
97 static ssize_t ata_ctx_u8(const u_char __user *userPtr, size_t userCount,
100 static ssize_t ata_ctx_s16be(const u_char __user *userPtr, size_t userCount,
103 static ssize_t ata_ctx_u16be(const u_char __user *userPtr, size_t userCount,
106 static ssize_t ata_ctx_s16le(const u_char __user *userPtr, size_t userCount,
109 static ssize_t ata_ctx_u16le(const u_char __user *userPtr, size_t userCount,
154 static ssize_t ata_ct_law(const u_char __user *userPtr, size_t userCount,
163 count = min_t(unsigned long, userCount, frameLeft);
179 static ssize_t ata_ct_s8(const u_char __user *userPtr, size_t userCount,
186 count = min_t(unsigned long, userCount, frameLeft);
197 static ssize_t ata_ct_u8(const u_char __user *userPtr, size_t userCount,
205 count = min_t(unsigned long, userCount, frameLeft);
216 count = min_t(unsigned long, userCount, frameLeft)>>1;
232 static ssize_t ata_ct_s16be(const u_char __user *userPtr, size_t userCount,
240 count = min_t(unsigned long, userCount, frameLeft)>>1;
254 count = min_t(unsigned long, userCount, frameLeft) & ~3;
264 static ssize_t ata_ct_u16be(const u_char __user *userPtr, size_t userCount,
272 count = min_t(unsigned long, userCount, frameLeft)>>1;
287 count = min_t(unsigned long, userCount, frameLeft)>>2;
303 static ssize_t ata_ct_s16le(const u_char __user *userPtr, size_t userCount,
312 count = min_t(unsigned long, userCount, frameLeft)>>1;
327 count = min_t(unsigned long, userCount, frameLeft)>>2;
344 static ssize_t ata_ct_u16le(const u_char __user *userPtr, size_t userCount,
353 count = min_t(unsigned long, userCount, frameLeft)>>1;
367 count = min_t(unsigned long, userCount, frameLeft)>>2;
384 static ssize_t ata_ctx_law(const u_char __user *userPtr, size_t userCount,
395 used = userCount;
403 if (!userCount)
408 userCount--;
422 if (userCount < 2)
430 userCount -= 2;
440 used -= userCount;
446 static ssize_t ata_ctx_s8(const u_char __user *userPtr, size_t userCount,
455 used = userCount;
462 if (!userCount)
466 userCount--;
479 if (userCount < 2)
484 userCount -= 2;
494 used -= userCount;
500 static ssize_t ata_ctx_u8(const u_char __user *userPtr, size_t userCount,
509 used = userCount;
516 if (!userCount)
521 userCount--;
534 if (userCount < 2)
540 userCount -= 2;
550 used -= userCount;
556 static ssize_t ata_ctx_s16be(const u_char __user *userPtr, size_t userCount,
565 used = userCount;
572 if (userCount < 2)
577 userCount -= 2;
591 if (userCount < 4)
596 userCount -= 4;
606 used -= userCount;
612 static ssize_t ata_ctx_u16be(const u_char __user *userPtr, size_t userCount,
621 used = userCount;
628 if (userCount < 2)
634 userCount -= 2;
648 if (userCount < 4)
654 userCount -= 4;
664 used -= userCount;
670 static ssize_t ata_ctx_s16le(const u_char __user *userPtr, size_t userCount,
679 used = userCount;
686 if (userCount < 2)
692 userCount -= 2;
706 if (userCount < 4)
712 userCount -= 4;
722 used -= userCount;
728 static ssize_t ata_ctx_u16le(const u_char __user *userPtr, size_t userCount,
737 used = userCount;
744 if (userCount < 2)
750 userCount -= 2;
764 if (userCount < 4)
770 userCount -= 4;
780 used -= userCount;