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

1234567891011>>

/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/engine/
H A Deng_cryptodev.c236 int fd, i, count = 0; local
245 for (i = 0; ciphers[i].id && count < CRYPTO_ALGORITHM_MAX; i++) {
253 nids[count++] = ciphers[i].nid;
257 if (count > 0)
261 return (count);
276 int fd, i, count = 0; local
284 for (i = 0; digests[i].id && count < CRYPTO_ALGORITHM_MAX; i++) {
292 nids[count++] = digests[i].nid;
296 if (count > 0)
300 return (count);
698 cryptodev_digest_update(EVP_MD_CTX *ctx, const void *data, size_t count) argument
[all...]
/barrelfish-2018-10-04/usr/drivers/solarflair/sfxge/common/
H A Dsiena_impl.h376 __out_opt __drv_when(count > 0, __notnull)
378 __out_ecount_opt(count) __drv_when(count > 0, __notnull)
380 __in size_t count);
/barrelfish-2018-10-04/usr/eclipseclp/JavaInterface/tests/
H A Dqueue_example_2.pl33 count(I, 1, 5) do
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Dkobject.h144 const char *buf, size_t count);
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/rxspencer/
H A Dregcomp.c241 register int count; local
352 count = p_count(p);
356 REQUIRE(count <= count2, REG_BADBR);
360 count2 = count;
361 repeat(p, pos, count, count2);
444 register int count; local
530 count = p_count(p);
534 REQUIRE(count <= count2, REG_BADBR);
538 count2 = count;
539 repeat(p, pos, count, count
560 register int count = 0; local
[all...]
/barrelfish-2018-10-04/lib/nfs/
H A Dnfs.x384 count3 count;
389 count3 count;
415 count3 count;
422 count3 count;
656 count3 count;
819 count3 count;
H A Dnfs.c371 .count = (uint32_t)-1,
591 * \param count Maximum number of bytes to read
598 count3 count, nfs_read_callback_t callback, void *cbarg)
601 (uint32_t)offset, count);
607 .count = count
652 * \param count Number of bytes of data to write
660 const void *data, count3 count, stable_how stable,
668 .count = count,
597 nfs_read(struct nfs_client *client, struct nfs_fh3 fh, offset3 offset, count3 count, nfs_read_callback_t callback, void *cbarg) argument
659 nfs_write(struct nfs_client *client, struct nfs_fh3 fh, offset3 offset, const void *data, count3 count, stable_how stable, nfs_write_callback_t callback, void *cbarg) argument
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Dcrl2p7.c298 int count=0; local
325 count++;
330 ret=count;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Dt_req.c178 int j,type=0,count=1,ii=0; local
196 count=sk_ASN1_TYPE_num(a->value.set);
219 if (++ii < count) goto get_next;
/barrelfish-2018-10-04/include/vm/
H A Dvm_meter.c233 int count = *(int *)arg1; local
239 count += *(int *)((char *)&pcpu->pc_cnt + offset);
241 return (SYSCTL_OUT(req, &count, sizeof(int)));
/barrelfish-2018-10-04/kernel/arch/armv8/
H A Dpsci.c433 * @param count returns the count
438 uintptr_t *count)
445 if (err_is_ok(err) && count) {
446 *count = retval.a0;
437 psci_stat_count(uintptr_t target_cpu, uint32_t power_state, uintptr_t *count) argument
/barrelfish-2018-10-04/usr/boot_perfmon/
H A Dconnections.c41 static coreid_t count = 0; local
42 count++;
44 if (count == (coreset_count(set) - 1)) {
/barrelfish-2018-10-04/lib/barrelfish/slot_alloc/
H A Drange_slot_alloc.c280 size_t count = 0; local
292 count += walk->space;
299 return count;
/barrelfish-2018-10-04/tools/usbboot/libc/
H A Dprintf.c273 uint count = 0; local
276 count++;
280 for (; format_num > count; format_num--)
299 chars_written--; /* don't count the null */
/barrelfish-2018-10-04/lib/dma/ioat/
H A Dioat_dma_device.c134 dev->common.channels.count = ioat_dma_chancnt_num_rdf(&dev->device);
136 dev->common.channels.c = calloc(dev->common.channels.count,
146 dev->common.channels.count);
150 for (uint8_t i = 0; i < dev->common.channels.count; ++i) {
557 for (uint8_t i = 0; i < dev->channels.count; ++i) {
/barrelfish-2018-10-04/lib/lwip2/src/core/
H A Dmem.c748 mem_calloc(mem_size_t count, mem_size_t size) argument
750 return mem_clib_calloc(count, size);
755 * Contiguously allocates enough space for count objects that are size bytes
760 * @param count number of objects to allocate
765 mem_calloc(mem_size_t count, mem_size_t size) argument
769 /* allocate 'count' objects of size 'size' */
770 p = mem_malloc(count * size);
773 memset(p, 0, (size_t)count * (size_t)size);
/barrelfish-2018-10-04/usr/block_server/
H A Dlocal_server.c293 uint32_t count,
305 err = block_net_read(block_server, start_block, count, seqn,
321 count * sizeof(struct bs_meta_data));
324 for (uint32_t i = 0; i < count; ++i) {
339 (uint32_t) (start_block + count));
291 rx_read_request(struct block_service_binding *binding, uint32_t start_block, uint32_t count, uint32_t seqn) argument
/barrelfish-2018-10-04/lib/linenoise/
H A Dlinenoise.c935 int count; local
944 count = strlen(buf);
945 if (count && buf[count-1] == '\n') {
946 count--;
947 buf[count] = '\0';
952 count = linenoiseEdit(STDIN_FILENO, STDOUT_FILENO, buf, buflen, prompt);
956 return count;
966 int count; local
981 count
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dproc_desc.c496 int count[6]; local
504 for(i=0;i<6;++i) count[i] = 0;
510 case QUALI: ++count[0]; break;
511 case LOCAL: ++count[1]; break;
512 case EXPORT: ++count[2]; break;
513 case IMPORT: ++count[3]; break;
514 case DEFAULT: ++count[4]; break;
515 case IMPEXP: ++count[5]; break;
520 p_fprintf(log_output_, " QUALI=%d", count[0]);
521 p_fprintf(log_output_, " LOCAL=%d", count[
[all...]
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/infiniband/core/
H A Duser_mad.c264 struct ib_umad_packet *packet, size_t count)
272 count < hdr_size(file) + packet->length) ||
274 count < hdr_size(file) + sizeof (*recv_buf->mad)))
290 if (count < hdr_size(file) + packet->length) {
314 struct ib_umad_packet *packet, size_t count)
318 if (count < size)
333 size_t count, loff_t *pos)
339 if (count < hdr_size(file))
363 ret = copy_recv_mad(file, buf, packet, count);
365 ret = copy_send_mad(file, buf, packet, count);
263 copy_recv_mad(struct ib_umad_file *file, char __user *buf, struct ib_umad_packet *packet, size_t count) argument
313 copy_send_mad(struct ib_umad_file *file, char __user *buf, struct ib_umad_packet *packet, size_t count) argument
332 ib_umad_read(struct file *filp, char __user *buf, size_t count, loff_t *pos) argument
445 ib_umad_write(struct file *filp, const char __user *buf, size_t count, loff_t *pos) argument
[all...]
/barrelfish-2018-10-04/lib/tommath/mtest/
H A Dmpi.c133 void s_mp_setz(mp_digit *dp, mp_size count); /* zero digits */
134 void s_mp_copy(mp_digit *sp, mp_digit *dp, mp_size count); /* copy */
143 #define s_mp_setz(dp, count) \
144 {int ix;for(ix=0;ix<(count);ix++)(dp)[ix]=0;}
146 #define s_mp_setz(dp, count) memset(dp, 0, (count) * sizeof(mp_digit))
150 #define s_mp_copy(sp, dp, count) \
151 {int ix;for(ix=0;ix<(count);ix++)(dp)[ix]=(sp)[ix];}
153 #define s_mp_copy(sp, dp, count) memcpy(dp, sp, (count) * sizeo
246 mp_init_array(mp_int mp[], int count) argument
444 mp_clear_array(mp_int mp[], int count) argument
2347 int count; local
2707 s_mp_setz(mp_digit *dp, mp_size count) argument
2727 s_mp_copy(mp_digit *sp, mp_digit *dp, mp_size count) argument
[all...]
/barrelfish-2018-10-04/usr/fish/
H A Dfish_common.c745 size_t count = 0; local
766 else if (!strncmp(argv[i], "count=", 6))
767 count = atoi(argv[i] + 6);
784 size_t one_per_cent = (blocksize * count) / 100;
786 printf("from: %s to: %s bs=%zd count=%zd seek=%zd skip=%zd\n", source, target, blocksize, count, seek, skip);
879 } while (rsize > 0 && !(count > 0 && blocks_written >= count));
1182 size_t count = 0; local
1197 err = oct_parse_names(reply.output, &names, &count);
[all...]
/barrelfish-2018-10-04/usr/monitor/capops/
H A Dcapsend.c120 // count successful enqueue
168 // do not count self when calculating #dest cores
176 dests->count = 0;
179 dest_count = dests->count;
197 dests->set[dests->count++] = dest;
572 size_t count; member in struct:check_retypeable_mc_st
583 (genvaddr_t)lst, rst->offset, rst->objsize, rst->count);
588 size_t count, capsend_result_fn result_fn, void *st)
610 mc_st->count = count;
587 capsend_check_retypeable(struct domcapref src, gensize_t offset, gensize_t objsize, size_t count, capsend_result_fn result_fn, void *st) argument
652 check_retypeable__rx_handler(struct intermon_binding *b, intermon_caprep_t caprep, genvaddr_t st, uint64_t offset, uint64_t objsize, uint64_t count) argument
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Pds/src/
H A Dbmsg.msg.c1808 pds_word_t count; /* # identifiers */ member in struct:__anon1710
1822 unsigned count; local
1824 count = 0;
1829 count++;
1832 if (count == identifiers.count)
1849 identifiers.count = 0;
1869 if (identifiers.count == ID_MAX) {
1874 else identifiers.count++;
1929 if (identifiers.count
5290 long count; local
[all...]
/barrelfish-2018-10-04/lib/lwip/src/core/snmp/
H A Dmib_structs.c194 lrn->count = 0;
304 rn->count += 1;
341 if (r->count > 1) {
345 /* count <= 1, can delete node */
375 rn->count -= 1;
396 if (rn->count == 0) {
591 if ((lrn->count == 0) || (lrn->head == NULL)) {

Completed in 714 milliseconds

1234567891011>>