Searched refs:count (Results 126 - 150 of 5577) sorted by relevance

1234567891011>>

/macosx-10.10/bind9-45.101/bind9/bin/tests/system/pkcs11/
H A Dtests.sh33 count=`$PK11LIST | grep robie-ksk | wc -l`
34 if [ $count != 2 ]; then echo "I:failed"; status=1; fi
38 count=`grep RRSIG $zonefile.signed | wc -l`
39 if [ $count != 12 ]; then echo "I:failed"; status=1; fi
57 count=`grep RRSIG dig.out | wc -l`
58 if [ $count != 4 ]; then echo "I:failed"; status=1; fi
67 count=`$PK11LIST | grep robie-zsk | wc -l`
68 if [ $count != 0 ]; then echo "I:failed"; fi
69 status=`expr $status + $count`
/macosx-10.10/cron-39/lib/
H A Denv.c55 register int count, i; local
58 for (count = 0; envp[count] != NULL; count++)
60 p = (char **) malloc((count+1) * sizeof(char *)); /* 1 for the NULL */
65 for (i = 0; i < count; i++)
73 p[count] = NULL;
83 register int count, found; local
88 * count the number of elements, including the null pointer;
92 for (count
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/test/
H A Dmetadata.m22 -(int*) makeIntArrayOf:(int)count;
25 -(int*) nullIntArrayOf:(int)count;
29 -(NSArray*)makeIntArray:(int*) data count:(unsigned)count;
30 -(NSArray*)makeIntArray:(int*) data halfCount:(unsigned)count;
32 -(NSArray*)nullIntArray:(int*) data count:(unsigned)count;
41 -(void)fillArray:(int*)data count:(int)count;
42 -(int)nullfillArray:(int*)data count
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/test/
H A Dmetadata.m23 -(int*) makeIntArrayOf:(int)count;
26 -(int*) nullIntArrayOf:(int)count;
30 -(NSArray*)makeIntArray:(int*) data count:(unsigned)count;
31 -(NSArray*)makeIntArray:(int*) data halfCount:(unsigned)count;
33 -(NSArray*)nullIntArray:(int*) data count:(unsigned)count;
42 -(void)fillArray:(int*)data count:(int)count;
43 -(int)nullfillArray:(int*)data count
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/test/
H A Dmetadata.m23 -(int*) makeIntArrayOf:(int)count;
26 -(int*) nullIntArrayOf:(int)count;
30 -(NSArray*)makeIntArray:(int*) data count:(unsigned)count;
31 -(NSArray*)makeIntArray:(int*) data halfCount:(unsigned)count;
33 -(NSArray*)nullIntArray:(int*) data count:(unsigned)count;
42 -(void)fillArray:(int*)data count:(int)count;
43 -(int)nullfillArray:(int*)data count
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/regexp/
H A DRegExp_input.js38 var count = 0; variable
45 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; RegExp.input",
50 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; /\\d+/.exec('2345')",
55 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; /\\d+/.exec(RegExp.input)",
60 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; /[h-z]+/.exec(RegExp.input)",
65 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; /\\d+/.test('2345')",
70 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; /\\d+/.test(RegExp.input)",
75 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; (new RegExp('d+')).test(RegExp.input)",
80 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; /[h-z]+/.test(RegExp.input)",
85 testcases[count
[all...]
H A DRegExp_input_as_array.js38 var count = 0; variable
45 testcases[count++] = new TestCase ( SECTION, "RegExp['$_'] = 'abcd12357efg'; RegExp['$_']",
50 testcases[count++] = new TestCase ( SECTION, "RegExp['$_'] = 'abcd12357efg'; /\\d+/.exec('2345')",
55 testcases[count++] = new TestCase ( SECTION, "RegExp['$_'] = 'abcd12357efg'; /\\d+/.exec(RegExp.input)",
60 testcases[count++] = new TestCase ( SECTION, "RegExp['$_'] = 'abcd12357efg'; /[h-z]+/.exec(RegExp.input)",
65 testcases[count++] = new TestCase ( SECTION, "RegExp['$_'] = 'abcd12357efg'; /\\d+/.test('2345')",
70 testcases[count++] = new TestCase ( SECTION, "RegExp['$_'] = 'abcd12357efg'; /\\d+/.test(RegExp.input)",
75 testcases[count++] = new TestCase ( SECTION, "RegExp['$_'] = 'abcd12357efg'; /[h-z]+/.test(RegExp.input)",
80 testcases[count++] = new TestCase ( SECTION, "RegExp['$_'] = 'abcd12357efg'; (new RegExp('\d+')).test(RegExp.input)",
85 testcases[count
[all...]
H A DRegExp_lastParen.js38 var count = 0; variable
43 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(abc)d/); RegExp.lastParen",
48 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(new RegExp('(abc)d')); RegExp.lastParen",
53 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(bcd)e/); RegExp.lastParen",
58 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(a(b(c(d)e)f)g)/); RegExp.lastParen",
63 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(a(b)c)(d(e)f)/); RegExp.lastParen",
68 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(^)abc/); RegExp.lastParen",
73 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(^a)bc/); RegExp.lastParen",
78 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('(^a)bc')); RegExp.lastParen",
83 testcases[count
[all...]
H A DRegExp_lastParen_as_array.js38 var count = 0; variable
43 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(abc)d/); RegExp['$+']",
48 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/(bcd)e/); RegExp['$+']",
53 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(a(b(c(d)e)f)g)/); RegExp['$+']",
58 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('(a(b(c(d)e)f)g)')); RegExp['$+']",
63 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(a(b)c)(d(e)f)/); RegExp['$+']",
68 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(^)abc/); RegExp['$+']",
73 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/(^a)bc/); RegExp['$+']",
78 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('(^a)bc')); RegExp['$+']",
83 testcases[count
[all...]
H A Dstring_split.js38 var count = 0; variable
42 testcases[count++] = new TestCase ( SECTION, "'a b c de f'.split(/\s/)",
46 testcases[count++] = new TestCase ( SECTION, "'a b c de f'.split(/\s/,3)",
50 testcases[count++] = new TestCase ( SECTION, "'a b c de f'.split(/X/)",
54 testcases[count++] = new TestCase ( SECTION, "'dfe23iu 34 =+65--'.split(/\d+/)",
58 testcases[count++] = new TestCase ( SECTION, "'dfe23iu 34 =+65--'.split(new RegExp('\\d+'))",
62 testcases[count++] = new TestCase ( SECTION, "'abc'.split(/[a-z]/)",
66 testcases[count++] = new TestCase ( SECTION, "'abc'.split(/[a-z]/)",
70 testcases[count++] = new TestCase ( SECTION, "'abc'.split(new RegExp('[a-z]'))",
74 testcases[count
[all...]
H A Dbackslash.js38 var count = 0; variable
42 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('\e'))",
46 testcases[count++] = new TestCase ( SECTION, "'ab\\cde'.match(new RegExp('\\\\'))",
50 testcases[count++] = new TestCase ( SECTION, "'ab\\cde'.match(/\\\\/)",
54 testcases[count++] = new TestCase ( SECTION,
60 testcases[count++] = new TestCase ( SECTION,
H A Dexec.js38 var count = 0; variable
41 testcases[count++] = new TestCase ( SECTION,
45 testcases[count++] = new TestCase ( SECTION,
50 testcases[count++] = new TestCase ( SECTION,
54 testcases[count++] = new TestCase ( SECTION,
59 testcases[count++] = new TestCase ( SECTION,
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebKitStatistics.idl40 HRESULT webViewCount([out, retval] int* count);
41 HRESULT frameCount([out, retval] int* count);
42 HRESULT dataSourceCount([out, retval] int* count);
43 HRESULT viewCount([out, retval] int* count);
44 HRESULT HTMLRepresentationCount([out, retval] int* count);
/macosx-10.10/dtrace-147/DTTk/Bin/
H A Dcpudists8 # USAGE: cpudists [-ahV] [-t top] [interval [count]]
23 # count Number of occurances at least this duration (ns)
27 # seconds consumed will be a multiple of the CPU count and interval.
57 opt_all=0; opt_time=1; opt_top=0; top=0; interval=1; count=1
66 USAGE: cpudists [-ahV] [-t top] [interval [count]]
78 interval=$1; count=-1; shift
81 count=$1; shift
99 inline int COUNTER = '$count';
H A Dcputimes14 # USAGE: cputimes [-ahTV] [-t top] [interval [count]]
35 # seconds consumed will be a multiple of the CPU count and interval.
67 top=0; interval=1; count=1
77 USAGE: cputimes [-ahTV] [-t top] [interval [count]]
94 interval=$1; count=-1; shift
97 count=$1; shift
116 inline int COUNTER = '$count';
/macosx-10.10/dtrace-147/DTTk/Kernel/
H A Dcpudists8 # USAGE: cpudists [-ahV] [-t top] [interval [count]]
23 # count Number of occurances at least this duration (ns)
27 # seconds consumed will be a multiple of the CPU count and interval.
57 opt_all=0; opt_time=1; opt_top=0; top=0; interval=1; count=1
66 USAGE: cpudists [-ahV] [-t top] [interval [count]]
78 interval=$1; count=-1; shift
81 count=$1; shift
99 inline int COUNTER = '$count';
H A Dcputimes14 # USAGE: cputimes [-ahTV] [-t top] [interval [count]]
35 # seconds consumed will be a multiple of the CPU count and interval.
67 top=0; interval=1; count=1
77 USAGE: cputimes [-ahTV] [-t top] [interval [count]]
94 interval=$1; count=-1; shift
97 count=$1; shift
116 inline int COUNTER = '$count';
/macosx-10.10/screen-22/screen/etc/
H A Dcountmail8 my $count = 0;
26 $count++ if !$msgread;
33 return $count;
48 $count = countmsgs($mbox);
49 if ($count == -1) {
51 } elsif ($count < $oldcount || $count == 0) {
52 printf "$oldfmt\n", $count;
54 printf "$newfmt\n", $count;
56 $oldcount = $count;
[all...]
/macosx-10.10/IOAudioFamily-200.6/PCMBlitterLib/
H A DIOAudioBlitterLibDispatch.h101 * @param count The number of items to convert
103 extern void IOAF_NativeInt16ToFloat32( const SInt16 *src, Float32 *dest, unsigned int count );
110 * @param count The number of items to convert
112 extern void IOAF_SwapInt16ToFloat32( const SInt16 *src, Float32 *dest, unsigned int count );
119 * @param count The number of items to convert
121 extern void IOAF_NativeInt24ToFloat32( const UInt8 *src, Float32 *dest, unsigned int count );
128 * @param count The number of items to convert
130 extern void IOAF_SwapInt24ToFloat32( const UInt8 *src, Float32 *dest, unsigned int count );
137 * @param count The number of items to convert
139 extern void IOAF_NativeInt32ToFloat32( const SInt32 *src, Float32 *dest, unsigned int count );
[all...]
/macosx-10.10/tcl-105/tk/tk/library/demos/
H A Dtextpeer.tcl22 set count 0
25 set first [text $w.text[incr count]]
38 global count
39 set t [$parent peer create $w.text[incr count] -yscroll "$w.sb$count set"\
41 set sb [scrollbar $w.sb$count -command "$t yview" -orient vertical]
42 set b1 [button $w.clone$count -command "makeClone $w $t" \
44 set b2 [button $w.kill$count -command "killClone $w $count" \
46 set row [expr {$count *
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/
H A Dstack_oo.tcl57 # count number of items to pop; defaults to 1
60 # items top count items from the stack; if there are not enough items
63 method peek {{count 1}} {
64 if { $count < 1 } {
65 return -code error "invalid item count $count"
66 } elseif { $count > [llength $mystack] } {
70 if { $count == 1 } {
77 incr count -1
78 return [lreverse [lrange $mystack end-$count en
[all...]
/macosx-10.10/emacs-93/emacs/lisp/textmodes/
H A Dpage.el33 (defun forward-page (&optional count)
38 (or count (setq count 1))
39 (while (and (> count 0) (not (eobp)))
46 (setq count (1- count)))
47 (while (and (< count 0) (not (bobp)))
59 (setq count (1+ count))))
61 (defun backward-page (&optional count)
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Dvi_mode.c179 _rl_vi_stuff_insert (count)
180 int count;
183 while (count--)
192 rl_vi_redo (count, c)
193 int count, c;
209 _rl_vi_stuff_insert (count);
219 _rl_vi_stuff_insert (count);
232 rl_vi_undo (count, key)
233 int count, key;
235 return (rl_undo_command (count, ke
1351 int count = 1, brack, pos, tmp, pre; local
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Dccrandom.c78 ssize_t count; local
89 count = read(fd, outdata, size);
90 if (count < 0 && errno == EINTR)
92 else if (count <= 0) {
96 outdata += count;
97 size -= count;
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/function/
H A DString.js38 var count = 0; variable
42 testcases[count++] = new TestCase( SECTION, "String(true) ",
44 testcases[count++] = new TestCase( SECTION, "String(false) ",
46 testcases[count++] = new TestCase( SECTION, "String(-124) ",
48 testcases[count++] = new TestCase( SECTION, "String(1.23) ",
63 //testcases[count++] = new TestCase( SECTION, "String({p:1}) ",
65 testcases[count++] = new TestCase( SECTION, "String(null) ",
80 //testcases[count++] = new TestCase( SECTION, "String([1,2,3]) ",

Completed in 367 milliseconds

1234567891011>>