Searched refs:count (Results 1 - 25 of 15364) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavcodec/
H A Dflac.c30 int count; local
32 count = 16; /* frame header */
33 count += ch * ((7+bps+7)/8); /* subframe headers */
36 count += (( 2*bps+1) * blocksize + 7) / 8;
38 count += ( ch*bps * blocksize + 7) / 8;
40 count += 2; /* frame footer */
42 return count;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavcodec/
H A Dflac.c30 int count; local
32 count = 16; /* frame header */
33 count += ch * ((7+bps+7)/8); /* subframe headers */
36 count += (( 2*bps+1) * blocksize + 7) / 8;
38 count += ( ch*bps * blocksize + 7) / 8;
40 count += 2; /* frame footer */
42 return count;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/libavcodec/
H A Dflac.c30 int count; local
32 count = 16; /* frame header */
33 count += ch * ((7+bps+7)/8); /* subframe headers */
36 count += (( 2*bps+1) * blocksize + 7) / 8;
38 count += ( ch*bps * blocksize + 7) / 8;
40 count += 2; /* frame footer */
42 return count;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source3/script/
H A Dcount_80_col.pl5 $count = 0;
8 $count++ if (length($_) > 80);
12 print "$ARGV[0]: $count lines > 80 characters\n" if ($count > 0);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source3/script/
H A Dcount_80_col.pl5 $count = 0;
8 $count++ if (length($_) > 80);
12 print "$ARGV[0]: $count lines > 80 characters\n" if ($count > 0);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source3/script/
H A Dcount_80_col.pl5 $count = 0;
8 $count++ if (length($_) > 80);
12 print "$ARGV[0]: $count lines > 80 characters\n" if ($count > 0);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/asm-generic/
H A Dmutex-dec.h11 * __mutex_fastpath_lock - try to take the lock by moving the count
13 * @count: pointer of type atomic_t
16 * Change the count from 1 to a value lower than 1, and call <fail_fn> if
21 __mutex_fastpath_lock(atomic_t *count, void (*fail_fn)(atomic_t *)) argument
23 if (unlikely(atomic_dec_return(count) < 0))
24 fail_fn(count);
28 * __mutex_fastpath_lock_retval - try to take the lock by moving the count
30 * @count: pointer of type atomic_t
33 * Change the count from 1 to a value lower than 1, and call <fail_fn> if
38 __mutex_fastpath_lock_retval(atomic_t *count, in argument
59 __mutex_fastpath_unlock(atomic_t *count, void (*fail_fn)(atomic_t *)) argument
83 __mutex_fastpath_trylock(atomic_t *count, int (*fail_fn)(atomic_t *)) argument
[all...]
H A Dmutex-null.h13 #define __mutex_fastpath_lock(count, fail_fn) fail_fn(count)
14 #define __mutex_fastpath_lock_retval(count, fail_fn) fail_fn(count)
15 #define __mutex_fastpath_unlock(count, fail_fn) fail_fn(count)
16 #define __mutex_fastpath_trylock(count, fail_fn) fail_fn(count)
H A Dmutex-xchg.h16 * __mutex_fastpath_lock - try to take the lock by moving the count
18 * @count: pointer of type atomic_t
21 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it
26 __mutex_fastpath_lock(atomic_t *count, void (*fail_fn)(atomic_t *)) argument
28 if (unlikely(atomic_xchg(count, 0) != 1))
29 fail_fn(count);
33 * __mutex_fastpath_lock_retval - try to take the lock by moving the count
35 * @count: pointer of type atomic_t
38 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it
43 __mutex_fastpath_lock_retval(atomic_t *count, in argument
63 __mutex_fastpath_unlock(atomic_t *count, void (*fail_fn)(atomic_t *)) argument
87 __mutex_fastpath_trylock(atomic_t *count, int (*fail_fn)(atomic_t *)) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/asm-generic/
H A Dmutex-dec.h11 * __mutex_fastpath_lock - try to take the lock by moving the count
13 * @count: pointer of type atomic_t
16 * Change the count from 1 to a value lower than 1, and call <fail_fn> if
21 __mutex_fastpath_lock(atomic_t *count, void (*fail_fn)(atomic_t *)) argument
23 if (unlikely(atomic_dec_return(count) < 0))
24 fail_fn(count);
28 * __mutex_fastpath_lock_retval - try to take the lock by moving the count
30 * @count: pointer of type atomic_t
33 * Change the count from 1 to a value lower than 1, and call <fail_fn> if
38 __mutex_fastpath_lock_retval(atomic_t *count, in argument
59 __mutex_fastpath_unlock(atomic_t *count, void (*fail_fn)(atomic_t *)) argument
83 __mutex_fastpath_trylock(atomic_t *count, int (*fail_fn)(atomic_t *)) argument
[all...]
H A Dmutex-null.h13 #define __mutex_fastpath_lock(count, fail_fn) fail_fn(count)
14 #define __mutex_fastpath_lock_retval(count, fail_fn) fail_fn(count)
15 #define __mutex_fastpath_unlock(count, fail_fn) fail_fn(count)
16 #define __mutex_fastpath_trylock(count, fail_fn) fail_fn(count)
H A Dmutex-xchg.h16 * __mutex_fastpath_lock - try to take the lock by moving the count
18 * @count: pointer of type atomic_t
21 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it
26 __mutex_fastpath_lock(atomic_t *count, void (*fail_fn)(atomic_t *)) argument
28 if (unlikely(atomic_xchg(count, 0) != 1))
29 fail_fn(count);
33 * __mutex_fastpath_lock_retval - try to take the lock by moving the count
35 * @count: pointer of type atomic_t
38 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it
43 __mutex_fastpath_lock_retval(atomic_t *count, in argument
63 __mutex_fastpath_unlock(atomic_t *count, void (*fail_fn)(atomic_t *)) argument
87 __mutex_fastpath_trylock(atomic_t *count, int (*fail_fn)(atomic_t *)) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/xtensa/kernel/
H A Dio.c20 void outsb(unsigned long addr, const void *src, unsigned long count) { argument
21 while (count) {
22 count -= 1;
29 void outsw(unsigned long addr, const void *src, unsigned long count) { argument
30 while (count) {
31 count -= 2;
38 void outsl(unsigned long addr, const void *src, unsigned long count) { argument
39 while (count) {
40 count -= 4;
47 void insb(unsigned long addr, void *dst, unsigned long count) { argument
56 insw(unsigned long addr, void *dst, unsigned long count) argument
65 insl(unsigned long addr, void *dst, unsigned long count) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/xtensa/kernel/
H A Dio.c20 void outsb(unsigned long addr, const void *src, unsigned long count) { argument
21 while (count) {
22 count -= 1;
29 void outsw(unsigned long addr, const void *src, unsigned long count) { argument
30 while (count) {
31 count -= 2;
38 void outsl(unsigned long addr, const void *src, unsigned long count) { argument
39 while (count) {
40 count -= 4;
47 void insb(unsigned long addr, void *dst, unsigned long count) { argument
56 insw(unsigned long addr, void *dst, unsigned long count) argument
65 insl(unsigned long addr, void *dst, unsigned long count) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/accel-pptp/src/
H A Dinststr.c33 int count; local
39 for (count = 1; count < argc; count++) {
40 if (argv[count] == ptr + 1
42 (aligned && argv[count] > ptr && argv[count] <= (char *)((UL)(ptr + PTRSIZE) & mask))
44 ptr = argv[count] + strlen(argv[count]);
50 for (count
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/accel-pptp/src/pppd/plugins/pptp/
H A Dinststr.c33 int count; local
39 for (count = 1; count < argc; count++) {
40 if (argv[count] == ptr + 1
42 (aligned && argv[count] > ptr && argv[count] <= (char *)((UL)(ptr + PTRSIZE) & mask))
44 ptr = argv[count] + strlen(argv[count]);
50 for (count
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/pppd/pppd/plugins/pptp/
H A Dinststr.c33 int count; local
39 for (count = 1; count < argc; count++) {
40 if (argv[count] == ptr + 1
42 (aligned && argv[count] > ptr && argv[count] <= (char *)((UL)(ptr + PTRSIZE) & mask))
44 ptr = argv[count] + strlen(argv[count]);
50 for (count
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/accel-pptp/src/
H A Dinststr.c33 int count; local
39 for (count = 1; count < argc; count++) {
40 if (argv[count] == ptr + 1
42 (aligned && argv[count] > ptr && argv[count] <= (char *)((UL)(ptr + PTRSIZE) & mask))
44 ptr = argv[count] + strlen(argv[count]);
50 for (count
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/accel-pptp/src/pppd/plugins/pptp/
H A Dinststr.c33 int count; local
39 for (count = 1; count < argc; count++) {
40 if (argv[count] == ptr + 1
42 (aligned && argv[count] > ptr && argv[count] <= (char *)((UL)(ptr + PTRSIZE) & mask))
44 ptr = argv[count] + strlen(argv[count]);
50 for (count
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/accel-pptp/src/
H A Dinststr.c33 int count; local
39 for (count = 1; count < argc; count++) {
40 if (argv[count] == ptr + 1
42 (aligned && argv[count] > ptr && argv[count] <= (char *)((UL)(ptr + PTRSIZE) & mask))
44 ptr = argv[count] + strlen(argv[count]);
50 for (count
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/accel-pptp/src/pppd/plugins/pptp/
H A Dinststr.c33 int count; local
39 for (count = 1; count < argc; count++) {
40 if (argv[count] == ptr + 1
42 (aligned && argv[count] > ptr && argv[count] <= (char *)((UL)(ptr + PTRSIZE) & mask))
44 ptr = argv[count] + strlen(argv[count]);
50 for (count
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/pppd/pppd/plugins/pptp/
H A Dinststr.c33 int count; local
39 for (count = 1; count < argc; count++) {
40 if (argv[count] == ptr + 1
42 (aligned && argv[count] > ptr && argv[count] <= (char *)((UL)(ptr + PTRSIZE) & mask))
44 ptr = argv[count] + strlen(argv[count]);
50 for (count
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/pppd/pppd/plugins/pptp/
H A Dinststr.c33 int count; local
39 for (count = 1; count < argc; count++) {
40 if (argv[count] == ptr + 1
42 (aligned && argv[count] > ptr && argv[count] <= (char *)((UL)(ptr + PTRSIZE) & mask))
44 ptr = argv[count] + strlen(argv[count]);
50 for (count
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/x86/include/asm/
H A Dmutex_32.h15 * __mutex_fastpath_lock - try to take the lock by moving the count
17 * @count: pointer of type atomic_t
20 * Change the count from 1 to a value lower than 1, and call <fn> if it
24 #define __mutex_fastpath_lock(count, fail_fn) \
28 typecheck(atomic_t *, count); \
36 : "a" (count) \
42 * __mutex_fastpath_lock_retval - try to take the lock by moving the count
44 * @count: pointer of type atomic_t
47 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it
51 static inline int __mutex_fastpath_lock_retval(atomic_t *count, argument
103 __mutex_fastpath_trylock(atomic_t *count, int (*fail_fn)(atomic_t *)) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/x86/include/asm/
H A Dmutex_32.h15 * __mutex_fastpath_lock - try to take the lock by moving the count
17 * @count: pointer of type atomic_t
20 * Change the count from 1 to a value lower than 1, and call <fn> if it
24 #define __mutex_fastpath_lock(count, fail_fn) \
28 typecheck(atomic_t *, count); \
36 : "a" (count) \
42 * __mutex_fastpath_lock_retval - try to take the lock by moving the count
44 * @count: pointer of type atomic_t
47 * Change the count from 1 to a value lower than 1, and call <fail_fn> if it
51 static inline int __mutex_fastpath_lock_retval(atomic_t *count, argument
103 __mutex_fastpath_trylock(atomic_t *count, int (*fail_fn)(atomic_t *)) argument
[all...]

Completed in 137 milliseconds

1234567891011>>