Searched refs:count (Results 176 - 200 of 3879) sorted by relevance

1234567891011>>

/freebsd-13-stable/usr.bin/from/
H A Dfrom.c64 int ch, count, newline; local
74 count = -1;
78 count = 0;
125 if (count != -1)
126 count++;
132 if (count != -1)
134 count == 1 ? "is" : "are", count, count == 1 ? "" : "s");
/freebsd-13-stable/crypto/openssl/apps/
H A Dspeed.c195 static void print_result(int alg, int run_no, int count, double time_used);
596 # define COND(d) (count < (d))
599 # define COND(unused_cond) (run && count<0x7fffffff)
600 # define COUNT(d) (count)
645 int count; local
647 for (count = 0; COND(c[D_MD2][testnum]); count++) {
652 return count;
662 int count; local
664 for (count
679 int count; local
696 int count; local
708 int count; local
724 int count; local
735 int count; local
746 int count; local
758 int count; local
771 int count; local
787 int count; local
803 int count; local
814 int count; local
830 int count; local
841 int count; local
852 int count; local
864 int count; local
876 int count; local
888 int count; local
900 int count; local
910 int count; local
924 int outl, count, rc; local
962 int outl, count; local
1000 int outl, count; local
1032 int count; local
1054 int ret, count; local
1074 int ret, count; local
1098 int ret, count; local
1118 int ret, count; local
1141 int ret, count; local
1161 int ret, count; local
1182 int count; local
1199 int ret, count; local
1220 int ret, count; local
1398 long count = 0; local
3424 print_result(int alg, int run_no, int count, double time_used) argument
3617 int j, count, keylen, num = OSSL_NELEM(mblengths_list); local
[all...]
/freebsd-13-stable/contrib/tcp_wrappers/
H A Dscaffold.c54 int count; local
58 for (count = 0; hp->h_addr_list[count] != 0; count++)
62 + (hp->h_length + sizeof(char *)) * count)) == 0) {
69 hb->host.h_addr_list[count] = 0;
70 data = (char *) (hb->host.h_addr_list + count + 1);
72 for (count = 0; (addr = hp->h_addr_list[count]) != 0; count
175 int count; local
[all...]
/freebsd-13-stable/libexec/rc/rc.d/
H A Dgbde90 count=1
91 while [ ${count} -le ${gbde_attach_attempts} ]; do
100 echo "Attach failed; attempt ${count} of ${gbde_attach_attempts}."
101 count=$((${count} + 1))
/freebsd-13-stable/sys/dev/isci/scil/
H A Dscic_sds_unsolicited_frame_control.h178 U32 count; member in struct:SCIC_SDS_UF_BUFFER_ARRAY
213 U32 count; member in struct:SCIC_SDS_UF_ADDRESS_TABLE_ARRAY
299 ( ((uf_control).buffers.count * SCU_UNSOLICITED_FRAME_BUFFER_SIZE) \
300 + ((uf_control).address_table.count * sizeof(SCI_PHYSICAL_ADDRESS)) \
301 + ((uf_control).buffers.count * sizeof(SCU_UNSOLICITED_FRAME_HEADER_T)) )
/freebsd-13-stable/contrib/ncurses/ncurses/base/
H A Dkeyok.c60 int count = 0; local
66 ch, &count, (size_t) 0)) != 0) {
70 count = 0;
79 ch, &count, (size_t) 0)) != 0) {
83 count = 0;
/freebsd-13-stable/share/examples/kld/random_adaptor/
H A Drandom_adaptor_example.c88 int count; local
92 for (count = 0; count < c; count++)
93 b[count] = getRandomNumber();
/freebsd-13-stable/contrib/tcpdump/
H A Dprint-snmp.c1226 int count = 0, ind; local
1233 if ((count = asn1_parse(ndo, np, length, &elem)) < 0)
1240 if ((u_int)count < length)
1241 ND_PRINT((ndo, "[%d extra after SEQ of varbind]", length - count));
1253 if ((count = asn1_parse(ndo, np, length, &elem)) < 0)
1260 vbend = np + count;
1261 vblength = length - count;
1267 if ((count = asn1_parse(ndo, np, length, &elem)) < 0)
1281 length -= count;
1282 np += count;
1323 int count = 0, error_status; local
1400 int count = 0, generic; local
1491 int count = 0; local
1553 int count = 0; local
1609 int count = 0; local
1643 int count = 0; local
1743 int count = 0; local
1880 int count = 0; local
[all...]
/freebsd-13-stable/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-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DStringList.cpp108 size_t count = 0; local
109 for (count = 0; count < std::min(prefix.size(), arg.size()); ++count) {
110 if (prefix[count] != arg[count])
113 prefix = prefix.take_front(count);
160 size_t count = strcspn(p, k_newline_chars); local
161 if (count == 0) {
162 if (p[count]
[all...]
/freebsd-13-stable/lib/libc/stdlib/
H A Dheapsort.c62 #define SWAP(a, b, count, size, tmp) { \
63 count = size; \
68 } while (--count); \
72 #define COPY(a, b, count, size, tmp1, tmp2) { \
73 count = size; \
78 } while (--count); \
88 #define CREATE(initval, nmemb, par_i, child_i, par, child, size, count, tmp) { \
99 SWAP(par, child, count, size, tmp); \
120 #define SELECT(par_i, child_i, nmemb, par, child, size, k, count, tmp1, tmp2) { \
128 COPY(par, child, count, siz
[all...]
/freebsd-13-stable/lib/libsecureboot/
H A Dlibsecureboot-priv.h64 br_x509_certificate* efi_get_trusted_certs(size_t *count);
65 br_x509_certificate* efi_get_forbidden_certs(size_t *count);
66 hash_data* efi_get_forbidden_digests(size_t *count);
/freebsd-13-stable/contrib/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-13-stable/contrib/expat/tests/
H A Dstructdata.c71 storage->count = 0;
83 if (storage->count == storage->max_count) {
93 entry = &storage->entries[storage->count];
98 storage->count++;
106 int count) {
112 if (count != storage->count) {
114 storage->count, count);
118 for (i = 0; i < count;
105 StructData_CheckItems(StructData *storage, const StructDataEntry *expected, int count) argument
[all...]
/freebsd-13-stable/bin/sh/bltin/
H A Decho.c56 int count; local
92 count = 3;
93 while (--count >= 0 && (unsigned)(*p - '0') < 8)
/freebsd-13-stable/sys/dev/mlxfw/
H A Dmlxfw_mfa2_tlv_multi.h51 const struct mlxfw_mfa2_tlv *from_tlv, u16 count);
63 #define mlxfw_mfa2_tlv_foreach(mfa2_file, tlv, idx, from_tlv, count) \
64 for (idx = 0, tlv = from_tlv; idx < (count); \
/freebsd-13-stable/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-13-stable/tests/sys/geom/class/mirror/
H A D2_test.sh15 dd if=/dev/random of=${src} bs=$ddbs count=$nblocks2 >/dev/null 2>&1
24 dd if=${src} of=/dev/mirror/${name} bs=$ddbs count=$nblocks2 >/dev/null 2>&1
26 dd if=/dev/mirror/${name} of=${dst} bs=$ddbs count=$nblocks2 >/dev/null 2>&1
32 dd if=/dev/${us0} of=${dst} bs=$ddbs count=$nblocks2 >/dev/null 2>&1
38 dd if=/dev/${us1} of=${dst} bs=$ddbs count=$nblocks2 >/dev/null 2>&1
45 dd if=/dev/${us2} of=${dst} bs=$ddbs count=$nblocks2 >/dev/null 2>&1
/freebsd-13-stable/tests/sys/geom/class/shsec/
H A D2_test.sh13 dd if=/dev/random of=${src} count=$nblocks1 >/dev/null 2>&1
22 dd if=${src} of=/dev/shsec/${name} count=$nblocks1 >/dev/null 2>&1
24 dd if=/dev/shsec/${name} of=${dst} count=$nblocks1 >/dev/null 2>&1
31 dd if=/dev/${us0} of=${dst} count=$nblocks1 >/dev/null 2>&1
38 dd if=/dev/${us1} of=${dst} count=$nblocks1 >/dev/null 2>&1
45 dd if=/dev/${us2} of=${dst} count=$nblocks1 >/dev/null 2>&1
/freebsd-13-stable/contrib/wpa/hostapd/logwatch/
H A Dhostapd49 my $count = $hostapd{$iface}->{$mac}->{$layer}->{$details};
50 if ($count > 1) {
51 print ": " . $count . " Times";
/freebsd-13-stable/crypto/heimdal/lib/gssapi/mech/
H A Dgss_buffer_set.c48 set->count = 0;
77 (set->count + 1) * sizeof(set->elements[0]));
83 p = &set->elements[set->count];
93 set->count++;
111 for (i = 0; i < (*buffer_set)->count; i++)
117 (*buffer_set)->count = 0;
/freebsd-13-stable/lib/libgssapi/
H A Dgss_buffer_set.c55 set->count = 0;
81 set->elements = reallocarray(set->elements, set->count + 1,
88 p = &set->elements[set->count];
98 set->count++;
115 for (i = 0; i < (*buffer_set)->count; i++)
121 (*buffer_set)->count = 0;
/freebsd-13-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dmalloc_io.h67 malloc_write_fd(int fd, const void *buf, size_t count) { argument
77 long result = syscall(SYS_write, fd, buf, count);
83 count);
89 malloc_read_fd(int fd, void *buf, size_t count) { argument
91 long result = syscall(SYS_read, fd, buf, count);
97 count);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_fuchsia.cpp31 size_t count; local
33 _zx_process_self(), ZX_INFO_PROCESS_MAPS, nullptr, 0, nullptr, &count);
40 data_.data.resize(count);
43 count * sizeof(zx_info_maps_t), &filled, &count);
48 } while (filled < count);
/freebsd-13-stable/bin/test/tests/
H A Dlegacy_test.sh41 count=$((count+1))
46 printf "not ok %s - (syntax error)\n" "$count $2"
48 printf "not ok %s - (got $ret, expected $1)\n" "$count $2"
50 printf "ok %s\n" "$count $2"
54 count=0

Completed in 213 milliseconds

1234567891011>>