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

1234567891011>>

/freebsd-9.3-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-9.3-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-9.3-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-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_stats.h141 # define XFS_STATS_INC(count) ( xfsstats.count++ )
142 # define XFS_STATS_DEC(count) ( xfsstats.count-- )
143 # define XFS_STATS_ADD(count, inc) ( xfsstats.count += (inc) )
151 # define XFS_STATS_INC(count)
152 # define XFS_STATS_DEC(count)
153 # define XFS_STATS_ADD(count, inc)
/freebsd-9.3-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-9.3-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-9.3-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-9.3-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-9.3-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-9.3-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-9.3-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-9.3-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-9.3-release/sys/xen/evtchn/
H A Devtchn_dev.c108 unsigned int count, c, p, sst = 0, bytes1 = 0, bytes2 = 0; local
109 count = uio->uio_resid;
111 count &= ~1; /* even number of bytes */
113 if ( count == 0 )
119 if ( count > PAGE_SIZE )
120 count = PAGE_SIZE;
152 /* Truncate chunks according to caller's maximum byte count. */
153 if ( bytes1 > count ) {
154 bytes1 = count;
157 else if ( (bytes1 + bytes2) > count ) {
183 int rc, i, count; local
[all...]
/freebsd-9.3-release/bin/sh/bltin/
H A Decho.c54 int count; local
90 count = 3;
91 while (--count >= 0 && (unsigned)(*p - '0') < 8)
/freebsd-9.3-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-9.3-release/contrib/llvm/lib/Support/
H A DDataExtractor.cpp33 static T *getUs(uint32_t *offset_ptr, T *dst, uint32_t count, argument
37 if (count > 0 && de->isValidOffsetForDataOfSize(offset, sizeof(*dst)*count)) {
38 for (T *value_ptr = dst, *end = dst + count; value_ptr != end;
55 DataExtractor::getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const {
56 return getUs<uint8_t>(offset_ptr, dst, count, this, IsLittleEndian,
66 uint32_t count) const {
67 return getUs<uint16_t>(offset_ptr, dst, count, this, IsLittleEndian,
76 uint32_t count) const {
77 return getUs<uint32_t>(offset_ptr, dst, count, thi
[all...]
/freebsd-9.3-release/contrib/wpa/hostapd/
H A Ddump_state.c151 int count = radius_client_get_mib(hapd->radius, buf, 4096); local
152 if (count < 0)
153 count = 0;
154 else if (count > 4095)
155 count = 4095;
156 buf[count] = '\0';
160 count = radius_server_get_mib(hapd->radius_srv, buf, 4096);
161 if (count < 0)
162 count = 0;
163 else if (count > 409
[all...]
/freebsd-9.3-release/lib/libc/stdlib/
H A Dheapsort.c50 #define SWAP(a, b, count, size, tmp) { \
51 count = size; \
56 } while (--count); \
60 #define COPY(a, b, count, size, tmp1, tmp2) { \
61 count = size; \
66 } while (--count); \
76 #define CREATE(initval, nmemb, par_i, child_i, par, child, size, count, tmp) { \
87 SWAP(par, child, count, size, tmp); \
108 #define SELECT(par_i, child_i, nmemb, par, child, size, k, count, tmp1, tmp2) { \
116 COPY(par, child, count, siz
[all...]
/freebsd-9.3-release/sys/dev/aic/
H A Daicvar.h135 #define aic_insb(aic, port, addr, count) \
136 bus_space_read_multi_1((aic)->tag, (aic)->bsh, (port), (addr), (count))
138 #define aic_outsb(aic, port, addr, count) \
139 bus_space_write_multi_1((aic)->tag, (aic)->bsh, (port), (addr), (count))
141 #define aic_insw(aic, port, addr, count) \
143 (u_int16_t *)(addr), (count))
145 #define aic_outsw(aic, port, addr, count) \
147 (u_int16_t *)(addr), (count))
149 #define aic_insl(aic, port, addr, count) \
151 (u_int32_t *)(addr), (count))
[all...]
/freebsd-9.3-release/sys/dev/ep/
H A Dif_epvar.h92 #define CSR_WRITE_MULTI_1(sc, off, addr, count) \
93 bus_space_write_multi_1(sc->bst, sc->bsh, off, addr, count)
94 #define CSR_WRITE_MULTI_2(sc, off, addr, count) \
95 bus_space_write_multi_2(sc->bst, sc->bsh, off, addr, count)
96 #define CSR_WRITE_MULTI_4(sc, off, addr, count) \
97 bus_space_write_multi_4(sc->bst, sc->bsh, off, addr, count)
98 #define CSR_READ_MULTI_1(sc, off, addr, count) \
99 bus_space_read_multi_1(sc->bst, sc->bsh, off, addr, count)
100 #define CSR_READ_MULTI_2(sc, off, addr, count) \
101 bus_space_read_multi_2(sc->bst, sc->bsh, off, addr, count)
[all...]
/freebsd-9.3-release/sys/dev/fe/
H A Dif_fevar.h167 #define fe_insb(sc, port, addr, count) \
168 bus_read_multi_1((sc)->port_res, (port), (addr), (count))
170 #define fe_outsb(sc, port, addr, count) \
171 bus_write_multi_1((sc)->port_res, (port), (addr), (count))
173 #define fe_insw(sc, port, addr, count) \
174 bus_read_multi_2((sc)->port_res, (port), (addr), (count))
176 #define fe_outsw(sc, port, addr, count) \
177 bus_write_multi_2((sc)->port_res, (port), (addr), (count))
179 #define fe_inblk(sc, port, addr, count) \
180 bus_read_region_1((sc)->port_res, (port), (addr), (count))
[all...]
/freebsd-9.3-release/sys/dev/random/
H A Dnehemiah.c119 VIA_ACE_cbc(void *in, void *out, size_t count, void *key, union VIA_ACE_CW *cw, void *iv) argument
128 : "+a" (iv), "+c" (count), "+D" (out), "+S" (in)
157 size_t count, ret; local
168 count = 0;
173 count += ret;
174 } while (count < CIPHER_BLOCK_SIZE);
177 count = 0;
182 count += ret;
183 } while (count < CIPHER_BLOCK_SIZE);
186 count
[all...]
/freebsd-9.3-release/tools/regression/geom_shsec/
H A Dtest-2.t16 dd if=/dev/random of=${src} count=$nblocks1 >/dev/null 2>&1
25 dd if=${src} of=/dev/shsec/${name} count=$nblocks1 >/dev/null 2>&1
27 dd if=/dev/shsec/${name} of=${dst} count=$nblocks1 >/dev/null 2>&1
34 dd if=/dev/md${us0} of=${dst} count=$nblocks1 >/dev/null 2>&1
41 dd if=/dev/md${us1} of=${dst} count=$nblocks1 >/dev/null 2>&1
48 dd if=/dev/md${us2} of=${dst} count=$nblocks1 >/dev/null 2>&1
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Dmm-internal.h50 * @return On success, return a pointer to (count * size) newly allocated
56 void *event_mm_calloc_(size_t count, size_t size);
71 #define mm_calloc(count, size) event_mm_calloc_((count), (size))
/freebsd-9.3-release/contrib/wpa/hostapd/logwatch/
H A Dhostapd49 my $count = $hostapd{$iface}->{$mac}->{$layer}->{$details};
50 if ($count > 1) {
51 print ": " . $count . " Times";

Completed in 249 milliseconds

1234567891011>>