Searched refs:count (Results 151 - 175 of 3217) sorted by relevance

1234567891011>>

/freebsd-10.1-release/crypto/openssl/crypto/cast/
H A Dcast_spd.c164 long count; local
184 count = 10;
189 count *= 2;
191 for (i = count; i; i--)
195 ca = count / 512;
196 cb = count;
197 cc = count * 8 / BUFSIZE + 1;
199 # define COND(d) (count != (d))
203 # define COUNT(d) (count)
210 for (count
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/rc2/
H A Drc2speed.c164 long count; local
184 count = 10;
189 count *= 2;
191 for (i = count; i; i--)
195 ca = count / 512;
196 cb = count;
197 cc = count * 8 / BUFSIZE + 1;
199 # define COND(d) (count != (d))
203 # define COUNT(d) (count)
210 for (count
[all...]
/freebsd-10.1-release/sys/dev/syscons/fade/
H A Dfade_saver.c47 static int count = 0; local
53 if (count <= 0)
55 if (count < 256) {
58 if (palette[i] - count > 60)
59 pal[i] = palette[i] - count;
64 count++;
72 count = 0;
/freebsd-10.1-release/usr.bin/file2c/
H A Dfile2c.c22 fprintf(stderr, "usage: %s [-sx] [-n count] [prefix [suffix]]\n",
30 int c, count, linepos, maxcount, pretty, radix; local
56 count = linepos = 0;
58 if (count) {
63 (maxcount > 0 && count >= maxcount)) {
65 count = linepos = 0;
68 if (count) {
86 count++;
/freebsd-10.1-release/tools/test/testfloat/
H A DtestLoops.c87 static void writeTestsPerformed( int16 count )
92 stderr, "\r%d%04d tests performed", tenthousandsCount, count );
95 fprintf( stderr, "\r%d tests performed", count );
127 static void writeErrorFound( int16 count )
137 writeTestsPerformed( count );
474 int16 count; local
480 count = 10000;
491 --count;
492 if ( count == 0 ) {
494 count
525 int16 count; local
578 int16 count; local
633 int16 count; local
688 int16 count; local
739 int16 count; local
792 int16 count; local
847 int16 count; local
902 int16 count; local
959 int16 count; local
1016 int16 count; local
1073 int16 count; local
1132 int16 count; local
1189 int16 count; local
1246 int16 count; local
1298 int16 count; local
1356 int16 count; local
1413 int16 count; local
1470 int16 count; local
1527 int16 count; local
1586 int16 count; local
1643 int16 count; local
1700 int16 count; local
1752 int16 count; local
1812 int16 count; local
1869 int16 count; local
1926 int16 count; local
1981 int16 count; local
2038 int16 count; local
2095 int16 count; local
2152 int16 count; local
2204 int16 count; local
2266 int16 count; local
2323 int16 count; local
2380 int16 count; local
2435 int16 count; local
2492 int16 count; local
2549 int16 count; local
2606 int16 count; local
2658 int16 count; local
[all...]
/freebsd-10.1-release/lib/libelf/
H A Delf_strptr.c46 size_t alignment, count; local
94 count = (size_t) 0; /* cumulative count of bytes seen */
95 while ((d = elf_getdata(s, d)) != NULL && count <= offset) {
110 count = roundup2(count, alignment);
113 if (offset < count) {
119 if (offset < count + d->d_size) {
122 offset - count);
127 count
[all...]
/freebsd-10.1-release/sys/dev/syscons/
H A Dscvtb.c188 sc_vtb_copy(sc_vtb_t *vtb1, int from, sc_vtb_t *vtb2, int to, int count) argument
195 count*sizeof(u_int16_t));
199 count*sizeof(u_int16_t));
204 count*sizeof(u_int16_t));
208 sc_vtb_append(sc_vtb_t *vtb1, int from, sc_vtb_t *vtb2, int count) argument
215 while (count > 0) {
216 len = imin(count, vtb2->vtb_size - vtb2->vtb_tail);
228 count -= len;
240 sc_vtb_erase(sc_vtb_t *vtb, int at, int count, int c, int attr) argument
242 if (at + count > vt
253 sc_vtb_move(sc_vtb_t *vtb, int from, int to, int count) argument
272 sc_vtb_delete(sc_vtb_t *vtb, int at, int count, int c, int attr) argument
302 sc_vtb_ins(sc_vtb_t *vtb, int at, int count, int c, int attr) argument
[all...]
/freebsd-10.1-release/sys/i386/isa/
H A Dccbque.h47 int count; \
64 DEV##_init_ccbque(count) \
65 int count; \
69 CCBTYPE##que.maxccb += count; \
78 if (CCBTYPE##que.count < CCBTYPE##que.maxccb) \
80 CCBTYPE##que.count ++; \
96 CCBTYPE##que.count --; \
113 CCBTYPE##que.count --; \
118 wakeup ((caddr_t) &CCBTYPE##que.count); \
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Bin/
H A Drb_calls.d3 * rb_calls.d - count Ruby calls using DTrace.
50 @calls[basename(copyinstr(arg2)), "method", this->name] = count();
58 @calls[this->filename, "obj-new", this->name] = count();
64 @calls[".", "obj-free", this->name] = count();
69 @calls[".", "gc", "begin"] = count();
75 @calls[basename(copyinstr(arg1)), "raise", this->name] = count();
80 @calls[basename(copyinstr(arg0)), "rescue", "-"] = count();
H A Dpl_syscalls.d3 * pl_syscalls.d - count Perl subroutine calls and syscalls using DTrace.
51 @calls[basename(copyinstr(arg1)), "sub", copyinstr(arg0)] = count();
57 @calls[basename(execname), "syscall", probefunc] = count();
H A Dpy_syscalls.d3 * py_syscalls.d - count Python function calls and syscalls using DTrace.
49 @calls[basename(copyinstr(arg0)), "func", copyinstr(arg1)] = count();
55 @calls[basename(execname), "syscall", probefunc] = count();
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Ruby/
H A Drb_calls.d3 * rb_calls.d - count Ruby calls using DTrace.
50 @calls[basename(copyinstr(arg2)), "method", this->name] = count();
58 @calls[this->filename, "obj-new", this->name] = count();
64 @calls[".", "obj-free", this->name] = count();
69 @calls[".", "gc", "begin"] = count();
75 @calls[basename(copyinstr(arg1)), "raise", this->name] = count();
80 @calls[basename(copyinstr(arg0)), "rescue", "-"] = count();
/freebsd-10.1-release/contrib/libreadline/
H A Dmisc.c253 rl_universal_argument (count, key)
254 int count, key;
444 rl_beginning_of_history (count, key)
445 int count, key;
452 rl_end_of_history (count, key)
453 int count, key;
463 rl_get_next_history (count, key)
464 int count, key;
468 if (count < 0)
469 return (rl_get_previous_history (-count, ke
[all...]
/freebsd-10.1-release/lib/libc/softfloat/bits64/
H A Dsoftfloat-macros36 Shifts `a' right by the number of bits given in `count'. If any nonzero
38 the result by setting the least significant bit to 1. The value of `count'
39 can be arbitrarily large; in particular, if `count' is greater than 32, the
44 INLINE void shift32RightJamming( bits32 a, int16 count, bits32 *zPtr )
48 if ( count == 0 ) {
51 else if ( count < 32 ) {
52 z = ( a>>count ) | ( ( a<<( ( - count ) & 31 ) ) != 0 );
63 Shifts `a' right by the number of bits given in `count'. If any nonzero
65 the result by setting the least significant bit to 1. The value of `count'
[all...]
/freebsd-10.1-release/sbin/dhclient/
H A Dalloc.c60 new_hash_table(int count) argument
66 (count * sizeof(struct hash_bucket *)));
69 rval->hash_count = count;
/freebsd-10.1-release/sys/cam/
H A Dcam_xpt_sim.h43 u_int32_t xpt_freeze_simq(struct cam_sim *sim, u_int count);
45 u_int32_t xpt_freeze_devq(struct cam_path *path, u_int count);
47 u_int count, int run_queue);
/freebsd-10.1-release/sys/dev/bktr/
H A Dbktr_card.h89 int signCard( bktr_ptr_t bktr, int offset, int count, u_char* sig );
92 int writeEEProm( bktr_ptr_t bktr, int offset, int count, u_char *data );
93 int readEEProm( bktr_ptr_t bktr, int offset, int count, u_char *data );
/freebsd-10.1-release/sys/dev/ex/
H A Dif_exvar.h101 #define CSR_WRITE_MULTI_1(sc, off, addr, count) \
102 bus_write_multi_1((sc)->ioport, off, addr, count)
103 #define CSR_WRITE_MULTI_2(sc, off, addr, count) \
104 bus_write_multi_2((sc)->ioport, off, addr, count)
105 #define CSR_WRITE_MULTI_4(sc, off, addr, count) \
106 bus_write_multi_4((sc)->ioport, off, addr, count)
107 #define CSR_READ_MULTI_1(sc, off, addr, count) \
108 bus_read_multi_1((sc)->ioport, off, addr, count)
109 #define CSR_READ_MULTI_2(sc, off, addr, count) \
110 bus_read_multi_2((sc)->ioport, off, addr, count)
[all...]
/freebsd-10.1-release/contrib/ntp/lib/isc/include/isc/
H A Dlfsr.h34 * It MUST set "count" to a new value or the lfsr will never reseed again.
49 unsigned int count; /*%< reseed count (in BITS!) */ member in struct:isc_lfsr
59 isc_uint32_t tap, unsigned int count,
79 isc_lfsr_generate(isc_lfsr_t *lfsr, void *data, unsigned int count);
81 * Returns "count" bytes of data from the LFSR.
89 *\li count > 0.
/freebsd-10.1-release/contrib/ntp/lib/isc/
H A Dlfsr.c35 isc_uint32_t tap, unsigned int count,
45 lfsr->count = count;
49 if (count == 0 && reseed != NULL)
86 isc_lfsr_generate(isc_lfsr_t *lfsr, void *data, unsigned int count) argument
94 REQUIRE(count > 0);
97 byte = count;
109 if (lfsr->count != 0 && lfsr->reseed != NULL) {
110 if (lfsr->count <= count *
34 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits, isc_uint32_t tap, unsigned int count, isc_lfsrreseed_t reseed, void *arg) argument
[all...]
/freebsd-10.1-release/contrib/apr-util/crypto/
H A Dapr_sha1.c181 /* count is the number of bytes to do an endian flip */
182 static void maybe_byte_reverse(apr_uint32_t *buffer, int count) argument
188 count /= sizeof(apr_uint32_t);
190 for (i = 0; i < count; ++i) {
222 unsigned int count)
226 if ((sha_info->count_lo + ((apr_uint32_t) count << 3)) < sha_info->count_lo) {
229 sha_info->count_lo += (apr_uint32_t) count << 3;
230 sha_info->count_hi += (apr_uint32_t) count >> 29;
233 if (i > count) {
234 i = count;
220 apr_sha1_update_binary(apr_sha1_ctx_t *sha_info, const unsigned char *buffer, unsigned int count) argument
259 apr_sha1_update(apr_sha1_ctx_t *sha_info, const char *buf, unsigned int count) argument
316 int count, i, j; local
[all...]
/freebsd-10.1-release/contrib/ncurses/ncurses/tty/
H A Dlib_twait.c113 for (n = 0; n < evl->count; ++n) {
153 int count; local
193 count = 0;
205 fds = typeMalloc(struct pollfd, MIN_FDS + evl->count);
209 fds[count].fd = sp->_ifd;
210 fds[count].events = POLLIN;
211 count++;
215 fds[count].fd = fd;
216 fds[count].events = POLLIN;
217 count
[all...]
/freebsd-10.1-release/sys/mips/malta/
H A Dgt_pci_bus_space.c244 bus_size_t offset, uint16_t *addr, size_t count)
248 while (count--)
254 bus_size_t offset, uint32_t *addr, size_t count)
258 while (count--)
263 * Read `count' 2 or 4 byte quantities from bus space
269 bus_size_t offset, uint16_t *addr, size_t count)
273 while (count--) {
281 bus_size_t offset, uint32_t *addr, size_t count)
285 while (count--) {
312 * Write `count'
243 gt_pci_bs_rm_2(void *t, bus_space_handle_t bsh, bus_size_t offset, uint16_t *addr, size_t count) argument
253 gt_pci_bs_rm_4(void *t, bus_space_handle_t bsh, bus_size_t offset, uint32_t *addr, size_t count) argument
268 gt_pci_bs_rr_2(void *t, bus_space_handle_t bsh, bus_size_t offset, uint16_t *addr, size_t count) argument
280 gt_pci_bs_rr_4(void *t, bus_space_handle_t bsh, bus_size_t offset, uint32_t *addr, size_t count) argument
316 gt_pci_bs_wm_2(void *t, bus_space_handle_t bsh, bus_size_t offset, const uint16_t *addr, size_t count) argument
326 gt_pci_bs_wm_4(void *t, bus_space_handle_t bsh, bus_size_t offset, const uint32_t *addr, size_t count) argument
340 gt_pci_bs_wr_2(void *t, bus_space_handle_t bsh, bus_size_t offset, const uint16_t *addr, size_t count) argument
352 gt_pci_bs_wr_4(void *t, bus_space_handle_t bsh, bus_size_t offset, const uint32_t *addr, size_t count) argument
368 gt_pci_bs_sm_2(void *t, bus_space_handle_t bsh, bus_size_t offset, uint16_t value, size_t count) argument
378 gt_pci_bs_sm_4(void *t, bus_space_handle_t bsh, bus_size_t offset, uint32_t value, size_t count) argument
392 gt_pci_bs_sr_2(void *t, bus_space_handle_t bsh, bus_size_t offset, uint16_t value, size_t count) argument
402 gt_pci_bs_sr_4(void *t, bus_space_handle_t bsh, bus_size_t offset, uint32_t value, size_t count) argument
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/des/
H A Dspeed.c169 long count; local
194 count = 10;
199 count *= 2;
201 for (i = count; i; i--)
205 ca = count;
206 cb = count * 3;
207 cc = count * 3 * 8 / BUFSIZE + 1;
208 cd = count * 8 / BUFSIZE + 1;
209 ce = count / 20 + 1;
211 # define COND(d) (count !
[all...]
/freebsd-10.1-release/sys/mips/rmi/
H A Dbus_space_rmi.c81 size_t count);
87 size_t count);
93 size_t count);
99 size_t count);
105 size_t count);
111 size_t count);
133 size_t count);
140 size_t count);
147 size_t count);
154 size_t count);
425 rmi_bus_space_read_multi_1(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int8_t * addr, size_t count) argument
432 rmi_bus_space_read_multi_2(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int16_t * addr, size_t count) argument
439 rmi_bus_space_read_multi_4(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int32_t * addr, size_t count) argument
479 rmi_bus_space_write_multi_1(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int8_t * addr, size_t count) argument
486 rmi_bus_space_write_multi_2(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int16_t * addr, size_t count) argument
493 rmi_bus_space_write_multi_4(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int32_t * addr, size_t count) argument
505 rmi_bus_space_set_region_2(void *t, bus_space_handle_t bsh, bus_size_t offset, u_int16_t value, size_t count) argument
515 rmi_bus_space_set_region_4(void *t, bus_space_handle_t bsh, bus_size_t offset, u_int32_t value, size_t count) argument
530 rmi_bus_space_copy_region_2(void *t, bus_space_handle_t bsh1, bus_size_t off1, bus_space_handle_t bsh2, bus_size_t off2, size_t count) argument
568 rmi_bus_space_read_multi_stream_1(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int8_t * addr, size_t count) argument
575 rmi_bus_space_read_multi_stream_2(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int16_t * addr, size_t count) argument
582 rmi_bus_space_read_multi_stream_4(void *tag, bus_space_handle_t handle, bus_size_t offset, u_int32_t * addr, size_t count) argument
595 rmi_bus_space_read_region_1(void *t, bus_space_handle_t bsh, bus_size_t offset, u_int8_t * addr, size_t count) argument
602 rmi_bus_space_read_region_2(void *t, bus_space_handle_t bsh, bus_size_t offset, u_int16_t * addr, size_t count) argument
609 rmi_bus_space_read_region_4(void *t, bus_space_handle_t bsh, bus_size_t offset, u_int32_t * addr, size_t count) argument
645 rmi_bus_space_write_multi_stream_1(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int8_t * addr, size_t count) argument
652 rmi_bus_space_write_multi_stream_2(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int16_t * addr, size_t count) argument
659 rmi_bus_space_write_multi_stream_4(void *tag, bus_space_handle_t handle, bus_size_t offset, const u_int32_t * addr, size_t count) argument
666 rmi_bus_space_write_region_2(void *t, bus_space_handle_t bsh, bus_size_t offset, const u_int16_t * addr, size_t count) argument
676 rmi_bus_space_write_region_4(void *t, bus_space_handle_t bsh, bus_size_t offset, const u_int32_t * addr, size_t count) argument
[all...]

Completed in 408 milliseconds

1234567891011>>