Searched refs:count (Results 1 - 25 of 468) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/acpica/source/compiler/
H A Daslcompiler.l151 count (int type);
179 [ ] { count (0); }
180 [\n] { count (0); } /* Handle files with both LF and CR/LF */
181 [\r] { count (0); } /* termination on both Unix and Windows */
182 [ \t] { count (0); }
190 ";" { count (0); return(';'); }
194 "~" { count (3); return (PARSEOP_EXP_NOT); }
195 "!" { count (3); return (PARSEOP_EXP_LOGICAL_NOT); }
196 "*" { count (3); return (PARSEOP_EXP_MULTIPLY); }
197 "/" { count (
[all...]
/barrelfish-2018-10-04/usr/skb/programs/
H A Dcount_loc_c3 count=0;
7 count=$[$count+$current_count];
9 echo $count
H A Dalgos_systems35 count=0;
37 if [ 0 -ne $count ]; then
41 echo -n "$count" >> $GNUPLOTFILE;
42 count=$[$count+1];
58 count=0;
67 echo "Algorithm: $i, count: $count";
74 echo "Algorithm: $i, count: $count";
[all...]
/barrelfish-2018-10-04/tools/usbboot/libc/
H A Dmemcpy.c1 void *memcpy(void *_dst, const void *_src, unsigned count) argument
5 while (count--)
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/rxspencer/fake/
H A Dmemmove.c9 memmove(dst, src, count)
12 size_t count;
19 for (d = dst+count, s = src+count, n = count; n > 0; n--)
22 for (d = dst, s = src, n = count; n > 0; n--)
/barrelfish-2018-10-04/lib/posixcompat/
H A Dsysconf.c32 size_t count; local
33 errval_t err = oct_get_names(&names, &count, local_apics);
35 DEBUG_ERR(err, "Can not get core count");
38 oct_free_names(names, count);
40 return count;
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Dkref.h36 volatile u_int count; member in struct:kref
43 refcount_init(&kref->count, 1);
50 refcount_acquire(&kref->count);
57 if (refcount_release(&kref->count)) {
/barrelfish-2018-10-04/lib/bomp/
H A Dsections.c41 unsigned GOMP_sections_start(unsigned count) argument
56 unsigned count)
64 unsigned count,
53 GOMP_parallel_sections_start(void (*fn)(void *), void *data, unsigned num_threads, unsigned count) argument
61 GOMP_parallel_sections(void (*fn)(void *), void *data, unsigned num_threads, unsigned count, unsigned flags) argument
/barrelfish-2018-10-04/lib/bomp_new/
H A Dsections.c41 unsigned GOMP_sections_start(unsigned count) argument
56 unsigned count)
64 unsigned count,
53 GOMP_parallel_sections_start(void (*fn)(void *), void *data, unsigned num_threads, unsigned count) argument
61 GOMP_parallel_sections(void (*fn)(void *), void *data, unsigned num_threads, unsigned count, unsigned flags) argument
/barrelfish-2018-10-04/lib/libc/stdio/
H A Dfwrite.c49 * Write `count' objects (each size `size') from memory to the given file.
53 fwrite(const void * __restrict buf, size_t size, size_t count, FILE * __restrict fp) argument
60 * ANSI and SUSv2 require a return value of 0 if size or count are 0.
62 if ((count == 0) || (size == 0))
67 * at least one of {count, size} is at least 2^16, since if both
71 if (((count | size) > 0xFFFF) &&
72 (count > SIZE_MAX / size)) {
78 n = count * size;
93 count = (n - uio.uio_resid) / size;
95 return (count);
[all...]
H A Dfread.c53 fread(void * __restrict buf, size_t size, size_t count, FILE * __restrict fp) argument
58 ret = __fread(buf, size, count, fp);
64 __fread(void * __restrict buf, size_t size, size_t count, FILE * __restrict fp) argument
72 * ANSI and SUSv2 require a return value of 0 if size or count are 0.
74 if ((count == 0) || (size == 0))
79 * at least one of {count, size} is at least 2^16, since if both
83 if (((count | size) > 0xFFFF) &&
84 (count > SIZE_MAX / size)) {
94 resid = count * size;
114 return (count);
[all...]
/barrelfish-2018-10-04/kernel/include/arch/x86/
H A Dpit.h23 void pit_timer0_set(uint16_t count, bool periodic, bool only_lsb);
/barrelfish-2018-10-04/usr/drivers/lpc_timer/
H A Dtimer.c28 /// Maximum value of (16-bit) count
59 * \brief Set hardware timer mode and count value
65 * \param count Count for oneshot timer, rate for ticker
68 static void timer0_set(uint16_t count, bool periodic) argument
72 periodic ? "periodic" : "one-shot", count);
81 // Prepare timer 0 to set its count
84 if (count > 0) {
85 // Set the count/rate (LSB, then MSB)
86 lpc_timer_cntacc0_wr(&timer, count & 0xff);
87 lpc_timer_cntacc0_wr(&timer, count >>
211 uint64_t count = us * 1000 / TIMER0_PERIOD_NS; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/
H A Debcdic.h16 void *ebcdic2ascii(void *dest, const void *srce, size_t count);
17 void *ascii2ebcdic(void *dest, const void *srce, size_t count);
/barrelfish-2018-10-04/usr/bench/mdb_bench/
H A Dmeasure.c12 static cycles_t measure_insert_one(struct cte *ctes, size_t count) argument
15 for (int i = 1; i < count; i++) {
29 static cycles_t measure_remove_one(struct cte *ctes, size_t count) argument
32 for (int i = 0; i < count; i++) {
46 static cycles_t measure_iterate_n(struct cte *ctes, size_t count, size_t steps) argument
49 for (int i = 0; i < count; i++) {
55 while (mod < count) { mod <<= 1; }
57 // assuming count is power-of-two
59 } while (startpos >= count);
77 static cycles_t measure_iterate_1(struct cte *ctes, size_t count) argument
81 measure_iterate_10(struct cte *ctes, size_t count) argument
85 measure_iterate_100(struct cte *ctes, size_t count) argument
89 measure_iterate_1000(struct cte *ctes, size_t count) argument
94 measure_has_copies(struct cte *ctes, size_t count) argument
118 measure_has_ancestors(struct cte *ctes, size_t count) argument
142 measure_has_descendants(struct cte *ctes, size_t count) argument
167 measure_query_address(struct cte *ctes, size_t count) argument
[all...]
/barrelfish-2018-10-04/include/openssl/
H A Debcdic.h16 void *ebcdic2ascii(void *dest, const void *srce, size_t count);
17 void *ascii2ebcdic(void *dest, const void *srce, size_t count);
/barrelfish-2018-10-04/kernel/arch/x86/
H A Dpit.c25 * \brief Set hardware timer mode and count value
31 * \param count Count for oneshot timer, rate for ticker
34 void pit_timer0_set(uint16_t count, bool periodic, bool only_lsb) argument
43 // Prepare timer 0 to set its count
46 if (count > 0) {
47 // Set the count/rate (LSB, then MSB)
49 lpc_timer_cntacc0_wr(&timer, count & 0xff);
50 lpc_timer_cntacc0_wr(&timer, count >> 8);
65 // 1. Issue read back command to read the status and count of the counter
68 .stat = 0, .count
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bf/
H A Dbfspeed.c176 long count; local
196 count=10;
201 count*=2;
203 for (i=count; i; i--)
207 ca=count/512;
208 cb=count;
209 cc=count*8/BUFSIZE+1;
211 #define COND(d) (count != (d))
215 #define COUNT(d) (count)
222 for (count
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/cast/
H A Dcast_spd.c176 long count; local
196 count=10;
201 count*=2;
203 for (i=count; i; i--)
207 ca=count/512;
208 cb=count;
209 cc=count*8/BUFSIZE+1;
211 #define COND(d) (count != (d))
215 #define COUNT(d) (count)
222 for (count
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rc2/
H A Drc2speed.c176 long count; local
196 count=10;
201 count*=2;
203 for (i=count; i; i--)
207 ca=count/512;
208 cb=count;
209 cc=count*8/BUFSIZE+1;
211 #define COND(d) (count != (d))
215 #define COUNT(d) (count)
222 for (count
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rc5/
H A Drc5speed.c176 long count; local
196 count=10;
201 count*=2;
203 for (i=count; i; i--)
207 ca=count/512;
208 cb=count;
209 cc=count*8/BUFSIZE+1;
211 #define COND(d) (count != (d))
215 #define COUNT(d) (count)
222 for (count
[all...]
/barrelfish-2018-10-04/lib/tommath/
H A Dpretty.build12 my $count = 0;
17 ++$count;
19 print "Source files to build: $count\nBuilding...\n";
24 printf("Building %3.2f%%, ", (++$i/$count)*100.0);
30 my $tleft = ($count - $i) / $rate;
36 my $cnt = ($i/$count)*30.0;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/des/
H A Dspeed.c181 long count; local
203 count=10;
208 count*=2;
210 for (i=count; i; i--)
214 ca=count;
215 cb=count*3;
216 cc=count*3*8/BUFSIZE+1;
217 cd=count*8/BUFSIZE+1;
218 ce=count/20+1;
220 #define COND(d) (count !
[all...]
/barrelfish-2018-10-04/include/
H A Dpthread_np.h59 int pthread_mutex_getspinloops_np(pthread_mutex_t *mutex, int *count);
60 int pthread_mutex_setspinloops_np(pthread_mutex_t *mutex, int count);
61 int pthread_mutex_getyieldloops_np(pthread_mutex_t *mutex, int *count);
62 int pthread_mutex_setyieldloops_np(pthread_mutex_t *mutex, int count);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/x509v3/
H A Dv3prin.c71 int i, count; local
89 count = X509_get_ext_count(cert);
90 printf("%d extensions\n", count);
91 for(i = 0; i < count; i++) {

Completed in 134 milliseconds

1234567891011>>