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

1234567891011>>

/barrelfish-2018-10-04/usr/bench/ump_bench/
H A Dexchange.c93 static int count = 0; local
94 count++;
98 if (count == num_cores) {
/barrelfish-2018-10-04/usr/monitor/
H A Dinvocations.c149 gensize_t count, capaddr_t to, capaddr_t slot, int level)
155 newtype, objsize, count, to, slot, level);
160 size_t count, capaddr_t src,
168 newtype, objsize, count,
233 gensize_t objsize, size_t count)
235 return invoke_monitor_is_retypeable((uint64_t*)cap, offset, objsize, count);
147 monitor_retype_remote_cap(struct capref croot, capaddr_t src, gensize_t offset, enum objtype newtype, gensize_t objsize, gensize_t count, capaddr_t to, capaddr_t slot, int level) argument
158 monitor_create_caps(struct capref src_root, struct capref dest_root, enum objtype newtype, gensize_t objsize, size_t count, capaddr_t src, int src_level, size_t offset, capaddr_t dest_cn, int dest_level, cslot_t dest_slot) argument
232 monitor_is_retypeable(struct capability *cap, gensize_t offset, gensize_t objsize, size_t count) argument
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/evp/
H A Devp_key.c117 int count, unsigned char *key, unsigned char *iv)
143 for (i=1; i<(unsigned int)count; i++)
115 EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md, const unsigned char *salt, const unsigned char *data, int datal, int count, unsigned char *key, unsigned char *iv) argument
H A Ddigest.c231 int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *data, size_t count) argument
233 return ctx->update(ctx,data,count);
329 int EVP_Digest(const void *data, size_t count, argument
338 && EVP_DigestUpdate(&ctx, data, count)
/barrelfish-2018-10-04/include/vm/
H A Dvm_pager.h120 int count,
127 (object, m, count, flags, rtvals);
117 vm_pager_put_pages( vm_object_t object, vm_page_t *m, int count, int flags, int *rtvals ) argument
/barrelfish-2018-10-04/lib/zlib/
H A Dtrees.c53 /* repeat previous bit length 3-6 times (2 bits of repeat count) */
56 /* repeat a zero length 3-10 times (3 bits of repeat count) */
59 /* repeat a zero length 11-138 times (7 bits of repeat count) */
716 int count = 0; /* repeat count of the current code */ local
717 int max_count = 7; /* max repeat count */
718 int min_count = 4; /* min repeat count */
725 if (++count < max_count && curlen == nextlen) {
727 } else if (count < min_count) {
728 s->bl_tree[curlen].Freq += count;
761 int count = 0; /* repeat count of the current code */ local
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/CPViz/viz/src/ie/ucc/cccc/viz/
H A DNode.java173 public void count(){ method in class:Node
199 child.count();
/barrelfish-2018-10-04/lib/cxx/cxx/
H A Dmemory.cpp144 unsigned count = 0; variable
147 if (++count > 16)
/barrelfish-2018-10-04/usr/tests/dma_test/
H A Ddma_test.c127 uint32_t count = 0x1F; local
128 while(count--) {
/barrelfish-2018-10-04/usr/tests/xeon_phi_test/
H A Dbenchmark.h191 uint32_t *count)
200 *count = counter;
189 xphi_bench_read_buffer(struct bench_buf *buf, uint32_t runs, uint32_t *count) argument
/barrelfish-2018-10-04/lib/barrelfish/
H A Dcapabilities.c168 static inline bool backoff(int count) argument
171 int yieldcnt = 2^count * disp_get_core_id();
185 gensize_t objsize, size_t count, capaddr_t to,
205 count, to, slot, to_level, &remote_cap_err);
238 int count = 0; local
245 } while (err_no(remote_cap_err) == MON_ERR_REMOTE_CAP_RETRY && backoff(++count));
273 int count = 0; local
280 } while (err_no(remote_cap_err) == MON_ERR_REMOTE_CAP_RETRY && backoff(++count));
294 * \param count The number of new objects to create
303 * determined by the argument `count`
183 cap_retype_remote(struct capref src_root, struct capref dest_root, capaddr_t src, gensize_t offset, enum objtype new_type, gensize_t objsize, size_t count, capaddr_t to, capaddr_t slot, int to_level) argument
305 cap_retype(struct capref dest_start, struct capref src, gensize_t offset, enum objtype new_type, gensize_t objsize, size_t count) argument
[all...]
/barrelfish-2018-10-04/usr/drivers/e10k/
H A De10k_qdriver.c411 size_t count)
416 DEBUG("Add buffer callback %d:\n", count);
419 for (i = 0; i < count; i++) {
439 buffers[0].opaque, 1, (count == 1), totallen, 0, true, l4len != 0);
442 buffers[0].opaque, 1, (count == 1), totallen, 0, true, l4len != 0);
447 for (i = start; i < count; i++) {
450 buffers[i].opaque, (i == 0), (i == count - 1), totallen);
453 buffers[i].opaque, (i == 0), (i == count - 1), totallen);
533 size_t count; local
578 count
410 transmit_pbuf_list_fn(struct driver_buffer *buffers, size_t count) argument
1098 size_t count; local
[all...]
/barrelfish-2018-10-04/lib/dma/include/
H A Ddma_channel_internal.h59 uint32_t count; ///< number of requests in the list member in struct:dma_channel::__anon916
/barrelfish-2018-10-04/lib/libc/gmon/
H A Dmcount.c117 * Look at the clock and add the count of clock cycles since the
119 * solidifies the count for the function containing frompc and
121 * The count for the new clock will be solidified when another
164 * the count for there. Now convert frompci to the index of btrap()
200 top->count = 1;
209 top->count++;
232 top->count = 1;
245 * increment its count
248 top->count++;
292 * Solidify the count fo
[all...]
/barrelfish-2018-10-04/lib/libc/stdio/
H A Dopen_wmemstream.c99 size_t charlen, count; local
101 count = 0;
114 count++;
116 return (count);
/barrelfish-2018-10-04/usr/eclipseclp/ZincInterface/
H A DMakefile.in26 fzn_fd/count.mzn fzn_ic/count.mzn \
/barrelfish-2018-10-04/usr/drivers/solarflair/sfxge/common/
H A Defx_sram.c44 unsigned int count; local
83 count = 0;
85 EFSYS_PROBE1(wait, unsigned int, count);
99 } while (++count < 100);
/barrelfish-2018-10-04/usr/drivers/xeon_phi/
H A Dinterrupts.h31 size_t count; member in struct:msix_allocator
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/lib/
H A Dforall.pl76 count(I,Min,Max)
86 Note that foreach/2, foreacharg/2, count/3, for/3 and param/N are only
113 count(I,1,5) do writeln(I).
117 (count(I,1,5), foreach(I,List) do true).
121 (foreach(_,List), count(_,1,3) do true).
124 (foreach(_,[a,b,c]), count(_,1,N) do true).
127 length(List, N) :- (foreach(_,List), count(_,1,N) do true).
151 count(I,1,5) do writeln(I).
/barrelfish-2018-10-04/include/ahci/
H A Dsata_fis.h75 errval_t sata_set_count(void *fis, uint16_t count);
/barrelfish-2018-10-04/lib/blk/blk_ahci/
H A Dsata_fis.h92 void sata_h2d_set_count(struct sata_fis_reg_h2d* fis, uint16_t count);
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Dbitops.h83 static inline int get_count_order(unsigned int count) { argument
86 order = fls(count) - 1;
87 if (count & (count - 1))
/barrelfish-2018-10-04/usr/monitor/include/
H A Dcapops.h39 void capops_retype(enum objtype type, size_t objsize, size_t count, struct capref dest_root,
/barrelfish-2018-10-04/usr/tests/e10ktest/
H A De10k_ctrl.c49 void process_received_packet(struct driver_rx_buffer *buffer, size_t count, argument
/barrelfish-2018-10-04/tools/usbboot/include/aboot/
H A Daboot.h49 void *memcpy(void *_dst, const void *_src, unsigned count);

Completed in 296 milliseconds

1234567891011>>