Searched refs:count (Results 76 - 100 of 5577) sorted by relevance

1234567891011>>

/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Dtext.c236 The first is a count: the numeric arg pased to this command.
253 rl_forward_byte (count, key)
254 int count, key;
256 if (count < 0)
257 return (rl_backward_byte (-count, key));
259 if (count > 0)
261 int end = rl_point + count;
286 rl_forward_char (count, key)
287 int count, key;
292 return (rl_forward_byte (count, ke
880 int count; local
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dcpputils.h26 inline void uprv_arrayCopy(const double* src, double* dst, int32_t count) argument
27 { uprv_memcpy(dst, src, (size_t)(count * sizeof(*src))); }
31 double* dst, int32_t dstStart, int32_t count)
32 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
35 inline void uprv_arrayCopy(const int8_t* src, int8_t* dst, int32_t count) argument
36 { uprv_memcpy(dst, src, (size_t)(count * sizeof(*src))); }
40 int8_t* dst, int32_t dstStart, int32_t count)
41 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
44 inline void uprv_arrayCopy(const int16_t* src, int16_t* dst, int32_t count) argument
45 { uprv_memcpy(dst, src, (size_t)(count * sizeo
30 uprv_arrayCopy(const double* src, int32_t srcStart, double* dst, int32_t dstStart, int32_t count) argument
39 uprv_arrayCopy(const int8_t* src, int32_t srcStart, int8_t* dst, int32_t dstStart, int32_t count) argument
48 uprv_arrayCopy(const int16_t* src, int32_t srcStart, int16_t* dst, int32_t dstStart, int32_t count) argument
53 uprv_arrayCopy(const int32_t* src, int32_t* dst, int32_t count) argument
57 uprv_arrayCopy(const int32_t* src, int32_t srcStart, int32_t* dst, int32_t dstStart, int32_t count) argument
63 uprv_arrayCopy(const UChar *src, int32_t srcStart, UChar *dst, int32_t dstStart, int32_t count) argument
72 uprv_arrayCopy(const icu::UnicodeString *src, icu::UnicodeString *dst, int32_t count) argument
80 uprv_arrayCopy(const icu::UnicodeString *src, int32_t srcStart, icu::UnicodeString *dst, int32_t dstStart, int32_t count) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/samples/layout/
H A Darraymem.h14 #define ARRAY_COPY(dst, src, count) memcpy((void *) (dst), (void *) (src), (count) * sizeof (src)[0])
16 #define NEW_ARRAY(type,count) (type *) malloc((count) * sizeof(type))
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/regexp/
H A DRegExp_dollar_number.js39 var count = 0; variable
44 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$1",
48 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$2",
52 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$3",
56 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$4",
60 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$5",
64 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$6",
72 testcases[count++] = new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$1",
74 testcases[count++] = new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$2",
76 testcases[count
[all...]
H A DRegExp_multiline.js38 var count = 0; variable
44 testcases[count++] = new TestCase ( SECTION, "RegExp.multiline",
48 testcases[count++] = new TestCase ( SECTION, "(multiline == false) '123\\n456'.match(/^4../)",
52 testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'a11\\na22\\na23\\na24'.match(/^a../g)",
56 testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'a11\na22'.match(/^.+^./)",
60 testcases[count++] = new TestCase ( SECTION, "(multiline == false) '123\\n456'.match(/.3$/)",
64 testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'a11\\na22\\na23\\na24'.match(/a..$/g)",
68 testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'abc\ndef'.match(/c$...$/)",
72 testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'a11\\na22\\na23\\na24'.match(new RegExp('a..$','g'))",
76 testcases[count
[all...]
H A DRegExp_multiline_as_array.js38 var count = 0; variable
44 testcases[count++] = new TestCase ( SECTION, "RegExp['$*']",
48 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) '123\\n456'.match(/^4../)",
52 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(/^a../g)",
56 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\na22'.match(/^.+^./)",
60 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) '123\\n456'.match(/.3$/)",
64 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(/a..$/g)",
68 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'abc\ndef'.match(/c$...$/)",
72 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(new RegExp('a..$','g'))",
76 testcases[count
[all...]
H A Dquestion_mark.js38 var count = 0; variable
42 testcases[count++] = new TestCase ( SECTION, "'abcdef'.match(new RegExp('cd?e'))",
46 testcases[count++] = new TestCase ( SECTION, "'abcdef'.match(new RegExp('cdx?e'))",
50 testcases[count++] = new TestCase ( SECTION, "'pqrstuvw'.match(new RegExp('o?pqrst'))",
54 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(new RegExp('x?y?z?'))",
58 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(new RegExp('x?ay?bz?c'))",
62 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/x?ay?bz?c/)",
66 testcases[count++] = new TestCase ( SECTION, "'abbbbc'.match(new RegExp('b?b?b?b'))",
70 testcases[count++] = new TestCase ( SECTION, "'123az789'.match(new RegExp('ab?c?d?x?y?z'))",
74 testcases[count
[all...]
/macosx-10.10/OpenSSH-189/openssh/
H A Droaming_dummy.c39 roaming_write(int fd, const void *buf, size_t count, int *cont) argument
41 return write(fd, buf, count);
45 roaming_read(int fd, void *buf, size_t count, int *cont) argument
49 return read(fd, buf, count);
/macosx-10.10/WebKit2-7600.1.25/Shared/API/c/efl/
H A DWKArrayEfl.cpp39 unsigned count = eina_list_count(array); local
40 if (!count)
44 vector.reserveInitialCapacity(count);
51 return WKArrayCreateAdoptingValues(vector.data(), count);
/macosx-10.10/dtrace-147/test/tst/common/aggs/
H A Dtst.count3.d31 * Test multiple count() calls.
48 @counts1[execname] = count();
49 @counts2[execname, arg0] = count();
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dsafe-write.h25 extern size_t safe_write (int fd, const void *buf, size_t count);
/macosx-10.10/llvmCore-3425.0.34/utils/count/
H A DMakefile1 ##===- utils/count/Makefile --------------------------------*- Makefile -*-===##
11 TOOLNAME = count
/macosx-10.10/postfix-255/postfix/src/util/
H A Dsane_socketpair.c52 int count; local
60 for (count = 0; /* void */ ; count++) {
61 if ((err = socketpair_ok_errors[count]) == 0)
/macosx-10.10/xnu-2782.1.97/bsd/dev/
H A Dbusvar.h44 int (*ps_func)(int count);
/macosx-10.10/BerkeleyDB-21/db/test_micro/
H A Dreport.awk6 ++count[$1];
11 avg[i] = total[i] / count[i];
18 var = (sum[i] - ((total[i] * total[i]) / count[i])) / count[i];
23 # Display the release value, the average score, and run count.
24 printf("%s:%.2f:%d:", i, avg[i], count[i]);
35 if (count[i] > 1)
/macosx-10.10/ICU-531.30/icuSources/layoutex/
H A DLXUtilities.h20 static le_int32 search(le_int32 value, const le_int32 array[], le_int32 count);
21 static void reverse(le_int32 array[], le_int32 count);
22 static void reverse(float array[], le_int32 count);
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/operator/
H A DstrictEquality.js38 var count = 0; variable
42 testcases[count++] = new TestCase( SECTION, "('8' === 8) ",
45 testcases[count++] = new TestCase( SECTION, "(8 === 8) ",
48 testcases[count++] = new TestCase( SECTION, "(8 === true) ",
51 testcases[count++] = new TestCase( SECTION, "(new String('') === new String('')) ",
54 testcases[count++] = new TestCase( SECTION, "(new Boolean(true) === new Boolean(true))",
59 testcases[count++] = new TestCase( SECTION, "(anObject === anObject) ",
62 testcases[count++] = new TestCase( SECTION, "(anObject === { one:1 , two:2 }) ",
65 testcases[count++] = new TestCase( SECTION, "({ one:1 , two:2 } === anObject) ",
68 testcases[count
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/stress/
H A Dinfinite-loop-that-uses-captured-variables-but-they-do-not-escape.js1 var count = 0; variable
4 if (++count < 10) {
10 count = 0;
H A Dtricky-inferred-infinite-loop-that-uses-captured-variables-and-creates-the-activation-outside-the-loop.js1 var count = 0; variable
4 if (++count < 10)
6 count = 0;
H A Dtricky-infinite-loop-that-uses-captured-variables-and-creates-the-activation-outside-the-loop.js1 var count = 0; variable
4 if (++count < 10)
6 count = 0;
H A Dtricky-infinite-loop-that-uses-captured-variables.js1 var count = 0; variable
4 if (++count < 10)
6 count = 0;
/macosx-10.10/dtrace-147/test/tst/common/safety/
H A Dtst.rw.d41 @[rw_read_held((krwlock_t *)&`clock)] = count();
42 @[rw_read_held((krwlock_t *)rand())] = count();
48 @[rw_write_held((krwlock_t *)&`clock)] = count();
49 @[rw_write_held((krwlock_t *)rand())] = count();
55 @[rw_iswriter((krwlock_t *)&`clock)] = count();
56 @[rw_iswriter((krwlock_t *)rand())] = count();
/macosx-10.10/dtrace-147/test/tst/common/ustack/
H A Dtst.spin.c32 volatile long long count = 0; variable
38 while (count != -1) {
39 count++;
/macosx-10.10/ncurses-44/ncurses/ncurses/base/
H A Dkeybound.c38 * Returns the count'th string definition which is associated with the
42 keybound(int code, int count) argument
46 T((T_CALLED("keybound(%d,%d)"), code, count));
48 result = _nc_expand_try(SP->_keytry, (unsigned) code, &count, 0);
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_command_server.c61 int count; local
64 count = attr_vscan(stream, ATTR_FLAG_MISSING, ap);
66 return (count);

Completed in 373 milliseconds

1234567891011>>