Searched refs:count (Results 226 - 250 of 3217) sorted by relevance

1234567891011>>

/freebsd-10.1-release/contrib/groff/src/utils/pfbtops/
H A Dpfbtops.c60 int count = 0; local
71 count++;
78 count++;
84 count++;
90 count++;
112 count = 0;
115 else if (count >= MAX_LINE_LENGTH) {
117 count = 1;
122 count = 2;
134 count
149 int count = 0; local
[all...]
/freebsd-10.1-release/sys/dev/hwpmc/
H A Dhwpmc_arm.c73 int count; local
93 for (count = 1; count < maxsamples; count++) {
113 return (count);
122 int count; local
140 for (count = 1; count < maxsamples; count++) {
159 return (count);
[all...]
/freebsd-10.1-release/usr.sbin/spray/
H A Dspray.c67 u_int count = 0; local
75 count = atoi(optarg);
111 * The default value of count is the number of packets required
114 if (!count) {
115 count = 100000 / length;
146 printf ("sending %u packets of lnth %d to %s ...", count, length,
150 for (i = 0; i < count; i++) {
172 if (host_stats.counter != count) {
173 int packets_dropped = count - host_stats.counter;
177 100.0 * packets_dropped / count );
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/idea/
H A Didea_spd.c164 long count; local
184 count = 10;
189 count *= 2;
191 for (i = count; i; i--)
195 ca = count / 4;
196 cca = count / 200;
197 cb = count;
198 cc = count * 8 / BUFSIZE + 1;
200 # define COND(d) (count <= (d))
204 # define COUNT(d) (count)
[all...]
/freebsd-10.1-release/libexec/tftpd/
H A Dtftp-file.c54 convert_from_net(char *buffer, size_t count) argument
63 for (i = 0; i < count; i++) {
105 convert_to_net(char *buffer, size_t count, int init) argument
128 while (i < count) {
134 in = fread(convbuffer, 1, count, file);
158 if (i > count) {
166 if (i < count) {
170 return count;
193 write_file(char *buffer, int count) argument
197 return fwrite(buffer, 1, count, fil
233 read_file(char *buffer, int count) argument
[all...]
/freebsd-10.1-release/sys/opencrypto/
H A Dcriov.c66 unsigned count; local
71 count = min(iov->iov_len - off, len);
72 bcopy(((caddr_t)iov->iov_base) + off, cp, count);
73 len -= count;
74 cp += count;
86 unsigned count; local
91 count = min(iov->iov_len - off, len);
92 bcopy(cp, ((caddr_t)iov->iov_base) + off, count);
93 len -= count;
94 cp += count;
143 unsigned count; local
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/rc4/
H A Drc4speed.c164 long count; local
184 count = 10;
189 count *= 2;
191 for (i = count; i; i--)
195 ca = count / 512;
196 cc = count * 8 / BUFSIZE + 1;
198 # define COND(d) (count != (d))
202 # define COUNT(d) (count)
209 for (count = 0, run = 1; COND(ca); count
[all...]
/freebsd-10.1-release/lib/libc/softfloat/
H A Dtimesoftfloat.c64 static void reportTime( int32 count, long clocks ) argument
69 ( count / ( ( (float) clocks ) / CLOCKS_PER_SEC ) ) / 1000,
107 int32 count, i; local
110 count = 0;
118 count += minIterations;
122 for ( i = count; i; --i ) {
127 reportTime( count, endClock - startClock );
134 int32 count, i; local
137 count = 0;
145 count
163 int32 count, i; local
194 int32 count, i; local
262 int32 count, i; local
289 int32 count, i; local
318 int32 count, i; local
349 int32 count, i; local
393 int32 count, i; local
420 int32 count, i; local
447 int32 count, i; local
476 int32 count, i; local
507 int32 count, i; local
536 int32 count, i; local
563 int32 count, i; local
598 int32 count, i; local
644 int32 count, i; local
710 int32 count, i; local
737 int32 count, i; local
764 int32 count, i; local
793 int32 count, i; local
824 int32 count, i; local
853 int32 count, i; local
880 int32 count, i; local
915 int32 count, i; local
985 int32 count, i; local
1056 int32 count, i; local
1088 int32 count, i; local
1120 int32 count, i; local
1152 int32 count, i; local
1186 int32 count, i; local
1220 int32 count, i; local
1252 int32 count, i; local
1294 int32 count, i; local
1374 int32 count, i; local
1451 int32 count, i; local
1483 int32 count, i; local
1515 int32 count, i; local
1547 int32 count, i; local
1581 int32 count, i; local
1615 int32 count, i; local
1647 int32 count, i; local
1689 int32 count, i; local
1768 int32 count, i; local
[all...]
/freebsd-10.1-release/lib/libc/softfloat/bits32/
H A Dsoftfloat-macros35 Shifts `a' right by the number of bits given in `count'. If any nonzero
37 the result by setting the least significant bit to 1. The value of `count'
38 can be arbitrarily large; in particular, if `count' is greater than 32, the
43 INLINE void shift32RightJamming( bits32 a, int16 count, bits32 *zPtr )
47 if ( count == 0 ) {
50 else if ( count < 32 ) {
51 z = ( a>>count ) | ( ( a<<( ( - count ) & 31 ) ) != 0 );
63 number of bits given in `count'. Any bits shifted off are lost. The value
64 of `count' ca
[all...]
/freebsd-10.1-release/contrib/ncurses/ncurses/widechar/
H A Dlib_get_wch.c67 size_t count = 0; local
84 T(("reading %d of %d", (int) count + 1, (int) sizeof(buffer)));
97 if (count != 0) {
102 } else if (count + 1 >= sizeof(buffer)) {
107 buffer[count++] = (char) UChar(value);
109 status = count_mbytes(buffer, count, state);
112 if (check_mbytes(wch, buffer, count, state) != status) {
/freebsd-10.1-release/contrib/wpa/wpa_supplicant/
H A Dblacklist.c44 * Returns: Current blacklist count on success, -1 on failure
47 * blacklist count if the BSSID was already listed. It should be called when
65 e->count++;
66 wpa_printf(MSG_DEBUG, "BSSID " MACSTR " blacklist count "
68 MAC2STR(bssid), e->count);
69 return e->count;
76 e->count = 1;
82 return e->count;
131 if (e->count > max_count)
132 max_count = e->count;
[all...]
/freebsd-10.1-release/contrib/compiler-rt/lib/
H A Dfp_lib.h122 static inline void wideLeftShift(rep_t *hi, rep_t *lo, int count) { argument
123 *hi = *hi << count | *lo >> (typeWidth - count);
124 *lo = *lo << count;
127 static inline void wideRightShiftWithSticky(rep_t *hi, rep_t *lo, unsigned int count) { argument
128 if (count < typeWidth) {
129 const bool sticky = *lo << (typeWidth - count);
130 *lo = *hi << (typeWidth - count) | *lo >> count | sticky;
131 *hi = *hi >> count;
[all...]
/freebsd-10.1-release/sys/isa/
H A Disahint.c43 int sensitive, start, count; local
61 count = 0;
63 resource_int_value(name, unit, "portsize", &count);
64 if (start > 0 || count > 0)
65 bus_set_resource(child, SYS_RES_IOPORT, 0, start, count);
68 count = 0;
70 resource_int_value(name, unit, "msize", &count);
71 if (start > 0 || count > 0)
72 bus_set_resource(child, SYS_RES_MEMORY, 0, start, count);
/freebsd-10.1-release/usr.bin/from/
H A Dfrom.c62 int ch, count, newline; local
72 count = -1;
76 count = 0;
124 if (count != -1)
125 count++;
131 if (count != -1)
133 count == 1 ? "is" : "are", count, count == 1 ? "" : "s");
/freebsd-10.1-release/contrib/gcclibs/libgomp/config/posix95/
H A Dlock.c72 lock->count = 0;
92 lock->count++;
98 lock->count--;
100 if (lock->count == 0)
119 return ++lock->count;
/freebsd-10.1-release/contrib/tcp_wrappers/
H A Dscaffold.c57 int count; local
61 for (count = 0; hp->h_addr_list[count] != 0; count++)
65 + (hp->h_length + sizeof(char *)) * count)) == 0) {
72 hb->host.h_addr_list[count] = 0;
73 data = (char *) (hb->host.h_addr_list + count + 1);
75 for (count = 0; (addr = hp->h_addr_list[count]) != 0; count
178 int count; local
[all...]
/freebsd-10.1-release/etc/rc.d/
H A Dgbde89 count=1
90 while [ ${count} -le ${gbde_attach_attempts} ]; do
99 echo "Attach failed; attempt ${count} of ${gbde_attach_attempts}."
100 count=$((${count} + 1))
/freebsd-10.1-release/sys/dev/isci/scil/
H A Dscic_sds_unsolicited_frame_control.h176 U32 count; member in struct:SCIC_SDS_UF_BUFFER_ARRAY
211 U32 count; member in struct:SCIC_SDS_UF_ADDRESS_TABLE_ARRAY
297 ( ((uf_control).buffers.count * SCU_UNSOLICITED_FRAME_BUFFER_SIZE) \
298 + ((uf_control).address_table.count * sizeof(SCI_PHYSICAL_ADDRESS)) \
299 + ((uf_control).buffers.count * sizeof(SCU_UNSOLICITED_FRAME_HEADER_T)) )
/freebsd-10.1-release/sys/dev/random/
H A Divy.c93 int count; local
96 for (b = buf, count = c; count > 0; count -= sizeof(long), b++) {
100 return (c - count);
/freebsd-10.1-release/contrib/tcpdump/
H A Dprint-snmp.c1203 int count = 0, ind; local
1210 if ((count = asn1_parse(np, length, &elem)) < 0)
1217 if ((u_int)count < length)
1218 printf("[%d extra after SEQ of varbind]", length - count);
1230 if ((count = asn1_parse(np, length, &elem)) < 0)
1237 vbend = np + count;
1238 vblength = length - count;
1244 if ((count = asn1_parse(np, length, &elem)) < 0)
1258 length -= count;
1259 np += count;
1299 int count = 0, error; local
1379 int count = 0, generic; local
1469 int count = 0; local
1530 int i, count = 0; local
1583 int count = 0; local
1612 int count = 0; local
1708 int count = 0; local
1845 int count = 0; local
[all...]
/freebsd-10.1-release/crypto/heimdal/appl/telnet/telnet/
H A Dring.c83 ring_init(Ring *ring, unsigned char *buffer, int count) argument
87 ring->size = count;
140 ring_supplied(Ring *ring, int count) argument
142 ring->supply = ring_increment(ring, ring->supply, count);
150 ring_consumed(Ring *ring, int count) argument
152 if (count == 0) /* don't update anything */
156 (ring_subtract(ring, ring->mark, ring->consume) < count)) {
161 ring->clearto <= ring->consume + count)
163 else if (ring->consume + count > ring->top &&
165 ring->bottom + ((ring->consume + count)
256 ring_supply_data(Ring *ring, unsigned char *buffer, int count) argument
275 ring_consume_data(Ring *ring, unsigned char *buffer, int count) argument
[all...]
/freebsd-10.1-release/sys/xen/evtchn/
H A Devtchn_dev.c103 unsigned int count, c, p, sst = 0, bytes1 = 0, bytes2 = 0; local
104 count = uio->uio_resid;
106 count &= ~1; /* even number of bytes */
108 if ( count == 0 )
114 if ( count > PAGE_SIZE )
115 count = PAGE_SIZE;
147 /* Truncate chunks according to caller's maximum byte count. */
148 if ( bytes1 > count ) {
149 bytes1 = count;
152 else if ( (bytes1 + bytes2) > count ) {
178 int rc, i, count; local
[all...]
/freebsd-10.1-release/bin/sh/bltin/
H A Decho.c54 int count; local
90 count = 3;
91 while (--count >= 0 && (unsigned)(*p - '0') < 8)
/freebsd-10.1-release/contrib/bmake/
H A Dbuf.h87 int count; /* Number of bytes in buffer */ member in struct:Buffer
98 int _count = ++(bp)->count; \
109 #define Buf_Size(bp) ((bp)->count)
/freebsd-10.1-release/contrib/libyaml/tests/
H A Drun-loader.c27 int count = 0; local
51 if (!done) count ++;
58 printf("%s (%d documents)\n", (error ? "FAILURE" : "SUCCESS"), count);

Completed in 297 milliseconds

1234567891011>>