Searched refs:count (Results 101 - 125 of 5577) sorted by relevance

1234567891011>>

/macosx-10.10/postfix-255/postfix/src/util/
H A Dpeekfd.c58 int count; local
60 return (ioctl(fd, FIONREAD, (char *) &count) < 0 ? -1 : count);
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Dkill.c201 rl_kill_word (count, key)
202 int count, key;
206 if (count < 0)
207 return (rl_backward_kill_word (-count, key));
211 rl_forward_word (count, key);
225 rl_backward_kill_word (count, ignore)
226 int count, ignore;
230 if (count < 0)
231 return (rl_kill_word (-count, ignore));
235 rl_backward_word (count, ignor
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/String/
H A Dconcat.js38 var count = 0; variable
45 testcases[count++] = new TestCase( SECTION, "aString.concat(' more')", "test string more", aString.concat(' more').toString());
46 testcases[count++] = new TestCase( SECTION, "aString.concat(bString)", "test string another ", aString.concat(bString).toString());
47 testcases[count++] = new TestCase( SECTION, "aString ", "test string", aString.toString());
48 testcases[count++] = new TestCase( SECTION, "bString ", " another ", bString.toString());
49 testcases[count++] = new TestCase( SECTION, "aString.concat(345) ", "test string345", aString.concat(345).toString());
50 testcases[count++] = new TestCase( SECTION, "aString.concat(true) ", "test stringtrue", aString.concat(true).toString());
51 testcases[count++] = new TestCase( SECTION, "aString.concat(null) ", "test stringnull", aString.concat(null).toString());
59 //testcases[count++] = new TestCase( SECTION, "aString.concat([]) ", "test string[]", aString.concat([]).toString());
60 //testcases[count
[all...]
H A DcharCodeAt.js38 var count = 0; variable
44 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt(-2)", NaN, aString.charCodeAt(-2));
45 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt(-1)", NaN, aString.charCodeAt(-1));
46 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( 0)", 116, aString.charCodeAt( 0));
47 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( 1)", 69, aString.charCodeAt( 1));
48 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( 2)", 115, aString.charCodeAt( 2));
49 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( 3)", 53, aString.charCodeAt( 3));
50 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( 4)", NaN, aString.charCodeAt( 4));
51 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( 5)", NaN, aString.charCodeAt( 5));
52 testcases[count
[all...]
/macosx-10.10/ruby-106/ruby/benchmark/
H A Dbm_so_nsieve.rb9 count = 0
14 count += 1
23 count
33 count = sieve(m)
34 printf "Primes up to %8d %8d\n", m, count
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/regexp/
H A Dglobal.js38 var count = 0; variable
42 testcases[count++] = new TestCase ( SECTION, "/xyz/g.global",
46 testcases[count++] = new TestCase ( SECTION, "/xyz/.global",
50 testcases[count++] = new TestCase ( SECTION, "'123 456 789'.match(/\\d+/g)",
54 testcases[count++] = new TestCase ( SECTION, "'123 456 789'.match(/(\\d+)/g)",
58 testcases[count++] = new TestCase ( SECTION, "'123 456 789'.match(/\\d+/)",
62 testcases[count++] = new TestCase ( SECTION, "(new RegExp('[a-z]','g')).global",
66 testcases[count++] = new TestCase ( SECTION, "(new RegExp('[a-z]','i')).global",
70 testcases[count++] = new TestCase ( SECTION, "'123 456 789'.match(new RegExp('\\\\d+','g'))",
74 testcases[count
[all...]
H A Dvertical_bar.js38 var count = 0; variable
42 testcases[count++] = new TestCase ( SECTION, "'abc'.match(new RegExp('xyz|abc'))",
46 testcases[count++] = new TestCase ( SECTION, "'this is a test'.match(new RegExp('quiz|exam|test|homework'))",
50 testcases[count++] = new TestCase ( SECTION, "'abc'.match(new RegExp('xyz|...'))",
54 testcases[count++] = new TestCase ( SECTION, "'abc'.match(new RegExp('(.)..|abc'))",
58 testcases[count++] = new TestCase ( SECTION, "'color: grey'.match(new RegExp('.+: gr(a|e)y'))",
62 testcases[count++] = new TestCase ( SECTION, "'no match'.match(new RegExp('red|white|blue'))",
66 testcases[count++] = new TestCase ( SECTION, "'Hi Bob'.match(new RegExp('(Rob)|(Bob)|(Robert)|(Bobby)'))",
70 testcases[count++] = new TestCase ( SECTION, "'abcdef'.match(new RegExp('abc|bcd|cde|def'))",
74 testcases[count
[all...]
H A DRegExp_rightContext_as_array.js38 var count = 0; variable
43 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/123/); RegExp['$\'']",
48 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/456/); RegExp['$\'']",
53 testcases[count++] = new TestCase ( SECTION, "'abc123xyz'.match(/abc123xyz/); RegExp['$\'']",
58 testcases[count++] = new TestCase ( SECTION, "'xxxx'.match(/$/); RegExp['$\'']",
63 testcases[count++] = new TestCase ( SECTION, "'test'.match(/^/); RegExp['$\'']",
68 testcases[count++] = new TestCase ( SECTION, "'xxxx'.match(new RegExp('$')); RegExp['$\'']",
73 testcases[count++] = new TestCase ( SECTION, "'test'.match(new RegExp('^')); RegExp['$\'']",
H A Dbackspace.js38 var count = 0; variable
42 testcases[count++] = new TestCase ( SECTION, "'abc\bdef'.match(new RegExp('.[\\b].'))",
46 testcases[count++] = new TestCase ( SECTION, "'abc\\bdef'.match(new RegExp('.[\\b].'))",
50 testcases[count++] = new TestCase ( SECTION, "'abc\b\b\bdef'.match(new RegExp('c[\\b]{3}d'))",
54 testcases[count++] = new TestCase ( SECTION, "'abc\bdef'.match(new RegExp('[^\\[\\b\\]]+'))",
58 testcases[count++] = new TestCase ( SECTION, "'abcdef'.match(new RegExp('[^\\[\\b\\]]+'))",
62 testcases[count++] = new TestCase ( SECTION, "'abcdef'.match(/[^\\[\\b\\]]+/)",
H A DbeginLine.js38 var count = 0; variable
42 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('^ab'))",
46 testcases[count++] = new TestCase ( SECTION, "'ab\ncde'.match(new RegExp('^..^e'))",
50 testcases[count++] = new TestCase ( SECTION, "'yyyyy'.match(new RegExp('^xxx'))",
54 testcases[count++] = new TestCase ( SECTION, "'^^^x'.match(new RegExp('^\\^+'))",
58 testcases[count++] = new TestCase ( SECTION, "'^^^x'.match(/^\\^+/)",
63 testcases[count++] = new TestCase ( SECTION, "'abc\n123xyz'.match(new RegExp('^\\d+','m'))",
H A DendLine.js38 var count = 0; variable
42 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('de$'))",
46 testcases[count++] = new TestCase ( SECTION, "'ab\ncde'.match(new RegExp('..$e$'))",
50 testcases[count++] = new TestCase ( SECTION, "'yyyyy'.match(new RegExp('xxx$'))",
54 testcases[count++] = new TestCase ( SECTION, "'a$$$'.match(new RegExp('\\$+$'))",
58 testcases[count++] = new TestCase ( SECTION, "'a$$$'.match(/\\$+$/)",
63 testcases[count++] = new TestCase ( SECTION, "'abc\n123xyz890\nxyz'.match(new RegExp('\\d+$','m'))",
H A Dstring_replace.js38 var count = 0; variable
42 testcases[count++] = new TestCase ( SECTION, "'adddb'.replace(/ddd/,'XX')",
46 testcases[count++] = new TestCase ( SECTION, "'adddb'.replace(/eee/,'XX')",
50 testcases[count++] = new TestCase ( SECTION, "'34 56 78b 12'.replace(new RegExp('[0-9]+b'),'**')",
54 testcases[count++] = new TestCase ( SECTION, "'34 56 78b 12'.replace(new RegExp('[0-9]+c'),'XX')",
58 testcases[count++] = new TestCase ( SECTION, "'original'.replace(new RegExp(),'XX')",
62 testcases[count++] = new TestCase ( SECTION, "'qwe ert x\t\n 345654AB'.replace(new RegExp('x\\s*\\d+(..)$'),'****')",
/macosx-10.10/ncurses-44/ncurses/ncurses/widechar/
H A Dlib_inwstr.c48 int count = 0; local
59 while (count < n && count != ERR) {
64 if (count + 1 > n) {
65 if ((count = last) == 0) {
66 count = ERR; /* error if we store nothing */
70 wstr[count++] = wch;
73 last = count;
79 if (count > 0) {
80 wstr[count]
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/Array/
H A Dgeneral1.js38 var count = 0; variable
47 testcases[count++] = new TestCase( SECTION, "array1.pop()", array1.pop(),'cat');
50 testcases[count++] = new TestCase( SECTION, "array1.shift()", array1.shift(),123);
53 testcases[count++] = new TestCase( SECTION, "state of array", String([96,"dog",-99,"mouse"]), String(array1));
54 testcases[count++] = new TestCase( SECTION, "array1.length", array1.length,4);
58 testcases[count++] = new TestCase( SECTION, "array1.shift()", array1.shift(),"mouse");
59 testcases[count++] = new TestCase( SECTION, "array1.shift()", "undefined", String(array1.shift()));
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/function/
H A Dnesting.js38 var count = 0; variable
46 testcases[count++] = new TestCase( SECTION, "outer:x ",
48 testcases[count++] = new TestCase( SECTION, "outer:y ",
53 testcases[count++] = new TestCase( SECTION, "inner:x ",
55 testcases[count++] = new TestCase( SECTION, "inner:y ",
60 testcases[count++] = new TestCase( SECTION, "outer:x ",
62 testcases[count++] = new TestCase( SECTION, "outer:y ",
/macosx-10.10/Security-57031.1.35/Security/include/security_keychain/
H A DSecRandom.c42 int SecRandomCopyBytes(SecRandomRef rnd, size_t count, uint8_t *bytes) { argument
45 return CCRandomCopyBytes(kCCRandomDefault, bytes, count);
50 SecRandomCopyData(SecRandomRef rnd, size_t count) argument
56 if((bytes = malloc(count)) == NULL) return NULL;
57 if(CCRandomCopyBytes(kCCRandomDefault, bytes, count) == kCCSuccess)
58 retval = CFDataCreate(kCFAllocatorDefault, bytes, count);
59 bzero(bytes, count);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DSecRandom.c42 int SecRandomCopyBytes(SecRandomRef rnd, size_t count, uint8_t *bytes) { argument
45 return CCRandomCopyBytes(kCCRandomDefault, bytes, count);
50 SecRandomCopyData(SecRandomRef rnd, size_t count) argument
56 if((bytes = malloc(count)) == NULL) return NULL;
57 if(CCRandomCopyBytes(kCCRandomDefault, bytes, count) == kCCSuccess)
58 retval = CFDataCreate(kCFAllocatorDefault, bytes, count);
59 bzero(bytes, count);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DSecRandom.c42 int SecRandomCopyBytes(SecRandomRef rnd, size_t count, uint8_t *bytes) { argument
45 return CCRandomCopyBytes(kCCRandomDefault, bytes, count);
50 SecRandomCopyData(SecRandomRef rnd, size_t count) argument
56 if((bytes = malloc(count)) == NULL) return NULL;
57 if(CCRandomCopyBytes(kCCRandomDefault, bytes, count) == kCCSuccess)
58 retval = CFDataCreate(kCFAllocatorDefault, bytes, count);
59 bzero(bytes, count);
/macosx-10.10/WebKit-7600.1.25/mac/History/
H A DWebURLsWithTitles.m54 unsigned index, count;
56 count = [URLs count];
57 if (count == 0) {
65 if (count != [titles count]) {
69 URLStrings = [NSMutableArray arrayWithCapacity:count];
70 titlesOrEmptyStrings = [NSMutableArray arrayWithCapacity:count];
71 for (index = 0; index < count; ++index) {
93 unsigned index, count;
[all...]
/macosx-10.10/ntfs-84/kext/
H A Dntfs_bitmap.h47 const s64 start_bit, const s64 count, const u8 value,
54 * @count: number of bits to set
57 * Set @count bits starting at bit @start_bit in the bitmap described by the
65 const s64 start_bit, const s64 count, const u8 value)
67 return __ntfs_bitmap_set_bits_in_run(ni, start_bit, count, value,
75 * @count: number of bits to set
77 * Set @count bits starting at bit @start_bit in the bitmap described by the
85 const s64 count)
87 return ntfs_bitmap_set_bits_in_run(ni, start_bit, count, 1);
94 * @count
64 ntfs_bitmap_set_bits_in_run(ntfs_inode *ni, const s64 start_bit, const s64 count, const u8 value) argument
84 ntfs_bitmap_set_run(ntfs_inode *ni, const s64 start_bit, const s64 count) argument
103 ntfs_bitmap_clear_run(ntfs_inode *ni, const s64 start_bit, const s64 count) argument
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djutils.c174 register size_t count = (size_t) (num_cols * SIZEOF(JSAMPLE)); local
176 register JDIMENSION count; local
187 FMEMCOPY(outptr, inptr, count);
189 for (count = num_cols; count > 0; count--)
205 register long count;
209 for (count = (long) num_blocks * DCTSIZE2; count > 0; count
[all...]
/macosx-10.10/autofs-246/automountd/
H A Dreplica.c45 * errors worthy of an error message unless count == -1, which means
60 free_replica(struct replica *list, int count) argument
64 for (i = 0; i < count; i++) {
74 parse_replica(char *special, int *count) argument
82 *count = 0;
112 if ((list = realloc(list, (*count + 1) *
115 bzero(&list[(*count)++], sizeof (struct replica));
117 list[*count-1].host = strdup(proot);
118 if (!list[*count-1].host)
145 if ((list = realloc(list, (*count
[all...]
/macosx-10.10/libiconv-42/libiconv/lib/
H A Dhz.h34 unsigned int count = 0; local
39 if (n < count+2)
46 return count+2;
50 s += 2; count += 2;
51 if (n < count+1)
56 s += 2; count += 2;
57 if (n < count+1)
64 s += 2; count += 2;
65 if (n < count+1)
77 return count
107 int count = (state ? 3 : 1); local
127 int count = (state ? 2 : 4); local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/simulation/
H A Drandom.tcl30 variable count 0
45 variable count
47 incr count
49 set name ::simulation::random::PRNG_$count
68 variable count
70 incr count
72 set name ::simulation::random::PRNG_$count
92 variable count
94 incr count
96 set name ::simulation::random::PRNG_$count
[all...]
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebCoreStatistics.idl40 HRESULT javaScriptObjectsCount([out, retval] UINT* count);
41 HRESULT javaScriptGlobalObjectsCount([out, retval] UINT* count);
42 HRESULT javaScriptProtectedObjectsCount([out, retval] UINT* count);
43 HRESULT javaScriptProtectedGlobalObjectsCount([out, retval] UINT* count);
45 HRESULT iconPageURLMappingCount([out, retval] UINT* count);
46 HRESULT iconRetainedPageURLCount([out, retval] UINT* count);
47 HRESULT iconRecordCount([out, retval] UINT* count);
48 HRESULT iconsWithDataCount([out, retval] UINT* count);
50 HRESULT cachedFontDataCount([out, retval] UINT* count);
51 HRESULT cachedFontDataInactiveCount([out, retval] UINT* count);
[all...]

Completed in 302 milliseconds

1234567891011>>