Home
last modified time | relevance | path

Searched refs:userCount (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/sound/oss/dmasound/
Ddmasound_atari.c71 static ssize_t ata_ct_law(const u_char __user *userPtr, size_t userCount,
74 static ssize_t ata_ct_s8(const u_char __user *userPtr, size_t userCount,
77 static ssize_t ata_ct_u8(const u_char __user *userPtr, size_t userCount,
80 static ssize_t ata_ct_s16be(const u_char __user *userPtr, size_t userCount,
83 static ssize_t ata_ct_u16be(const u_char __user *userPtr, size_t userCount,
86 static ssize_t ata_ct_s16le(const u_char __user *userPtr, size_t userCount,
89 static ssize_t ata_ct_u16le(const u_char __user *userPtr, size_t userCount,
92 static ssize_t ata_ctx_law(const u_char __user *userPtr, size_t userCount,
95 static ssize_t ata_ctx_s8(const u_char __user *userPtr, size_t userCount,
98 static ssize_t ata_ctx_u8(const u_char __user *userPtr, size_t userCount,
[all …]
Ddmasound_q40.c62 static ssize_t q40_ct_law(const u_char __user *userPtr, size_t userCount, in q40_ct_law() argument
70 used = count = min_t(size_t, userCount, frameLeft); in q40_ct_law()
83 static ssize_t q40_ct_s8(const u_char __user *userPtr, size_t userCount, in q40_ct_s8() argument
90 used = count = min_t(size_t, userCount, frameLeft); in q40_ct_s8()
102 static ssize_t q40_ct_u8(const u_char __user *userPtr, size_t userCount, in q40_ct_u8() argument
109 used = count = min_t(size_t, userCount, frameLeft); in q40_ct_u8()
118 static ssize_t q40_ctx_law(const u_char __user *userPtr, size_t userCount, in q40_ctx_law() argument
131 utotal = userCount; in q40_ctx_law()
135 if (userCount == 0) in q40_ctx_law()
141 userCount--; in q40_ctx_law()
[all …]
Ddmasound_paula.c157 static ssize_t ami_ct_s8(const u_char __user *userPtr, size_t userCount, in ami_ct_s8() argument
164 count = min_t(unsigned long, userCount, frameLeft) & ~1; in ami_ct_s8()
171 count = min_t(unsigned long, userCount, frameLeft)>>1 & ~1; in ami_ct_s8()
190 static ssize_t funcname(const u_char __user *userPtr, size_t userCount, \
198 count = min_t(size_t, userCount, frameLeft) & ~1; \
210 count = min_t(size_t, userCount, frameLeft)>>1 & ~1; \
241 static ssize_t funcname(const u_char __user *userPtr, size_t userCount, \
252 count = min_t(size_t, userCount, frameLeft)>>1 & ~1; \
267 count = min_t(size_t, userCount, frameLeft)>>2 & ~1; \
Ddmasound_core.c274 size_t userCount, u_char frame[], in sound_copy_translate() argument
311 return ct_func(userPtr, userCount, frame, frameUsed, frameLeft); in sound_copy_translate()