Searched refs:total (Results 1 - 25 of 86) sorted by relevance

1234

/barrelfish-2018-10-04/usr/bench/freemem_bench/
H A Dfreemem.c9 genpaddr_t available, total; local
11 err = ram_available(&available, &total);
18 printf("Total memory: %"PRIu32" MB (%" PRIu32 " bytes)\n",((uint32_t)total)/1024/1024, (uint32_t)total);
/barrelfish-2018-10-04/include/vm/
H A Dvm_meter.c110 struct vmtotal total; local
115 bzero(&total, sizeof(total));
136 total.t_sw++;
139 total.t_dw++;
141 total.t_sl++;
144 total.t_pw++;
149 total.t_sw++;
153 total.t_rq++;
197 total
[all...]
H A Dswap_pager.h86 void swap_pager_status(int *total, int *used);
/barrelfish-2018-10-04/usr/eclipseclp/CPViz/viz/src/ie/ucc/cccc/viz/
H A DVisualizerVectorSize.java41 int total = 0;
43 total += vars[i].size();
45 max = Math.max(max,total);
46 count[line] = total;
/barrelfish-2018-10-04/include/lwip2/netif/ppp/polarssl/
H A Dmd4.h47 unsigned long total[2]; /*!< number of bytes processed */ member in struct:__anon153
H A Dmd5.h47 unsigned long total[2]; /*!< number of bytes processed */ member in struct:__anon154
H A Dsha1.h47 unsigned long total[2]; /*!< number of bytes processed */ member in struct:__anon155
H A Dmd4.c77 ctx->total[0] = 0;
78 ctx->total[1] = 0;
200 left = ctx->total[0] & 0x3F;
203 ctx->total[0] += ilen;
204 ctx->total[0] &= 0xFFFFFFFF;
206 if( ctx->total[0] < (unsigned long) ilen )
207 ctx->total[1]++;
250 high = ( ctx->total[0] >> 29 )
251 | ( ctx->total[1] << 3 );
252 low = ( ctx->total[
[all...]
H A Dmd5.c76 ctx->total[0] = 0;
77 ctx->total[1] = 0;
219 left = ctx->total[0] & 0x3F;
222 ctx->total[0] += ilen;
223 ctx->total[0] &= 0xFFFFFFFF;
225 if( ctx->total[0] < (unsigned long) ilen )
226 ctx->total[1]++;
269 high = ( ctx->total[0] >> 29 )
270 | ( ctx->total[1] << 3 );
271 low = ( ctx->total[
[all...]
H A Dsha1.c76 ctx->total[0] = 0;
77 ctx->total[1] = 0;
253 left = ctx->total[0] & 0x3F;
256 ctx->total[0] += ilen;
257 ctx->total[0] &= 0xFFFFFFFF;
259 if( ctx->total[0] < (unsigned long) ilen )
260 ctx->total[1]++;
303 high = ( ctx->total[0] >> 29 )
304 | ( ctx->total[1] << 3 );
305 low = ( ctx->total[
[all...]
/barrelfish-2018-10-04/usr/tests/memtest/
H A Dmem_alloc.c26 size_t total = 0; local
55 total = 0;
60 /* printf("%d: Out of memory! total %lu bytes after %d allocations\n", */
61 /* ME, total, j); */
66 total += ALLOC_BYTES;
89 printf("%d: Total %zu bytes after %d allocations\n", ME, total, j);
/barrelfish-2018-10-04/lib/libc/db/recno/
H A Drec_search.c70 recno_t total; local
74 for (pg = P_ROOT, total = 0;;) {
79 t->bt_cur.index = recno - total;
84 if (++idx == top || total + r->nrecs > recno)
86 total += r->nrecs;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/lhash/
H A Dlh_stats.c117 unsigned long total=0,n_used=0; local
126 total+=num;
130 fprintf(out,"%lu items\n",total);
133 (int)(total/lh->num_nodes),
134 (int)((total%lh->num_nodes)*100/lh->num_nodes),
135 (int)(total/n_used),
136 (int)((total%n_used)*100/n_used));
226 unsigned long total=0,n_used=0; local
235 total+=num;
239 BIO_printf(out,"%lu items\n",total);
[all...]
/barrelfish-2018-10-04/lib/libc/stdio/
H A Dfread.c69 size_t total; local
98 total = resid;
108 return ((total - resid) / size);
/barrelfish-2018-10-04/lib/lwip2/src/netif/ppp/polarssl/
H A Dmd4.c77 ctx->total[0] = 0;
78 ctx->total[1] = 0;
200 left = ctx->total[0] & 0x3F;
203 ctx->total[0] += ilen;
204 ctx->total[0] &= 0xFFFFFFFF;
206 if( ctx->total[0] < (unsigned long) ilen )
207 ctx->total[1]++;
250 high = ( ctx->total[0] >> 29 )
251 | ( ctx->total[1] << 3 );
252 low = ( ctx->total[
[all...]
H A Dmd5.c76 ctx->total[0] = 0;
77 ctx->total[1] = 0;
219 left = ctx->total[0] & 0x3F;
222 ctx->total[0] += ilen;
223 ctx->total[0] &= 0xFFFFFFFF;
225 if( ctx->total[0] < (unsigned long) ilen )
226 ctx->total[1]++;
269 high = ( ctx->total[0] >> 29 )
270 | ( ctx->total[1] << 3 );
271 low = ( ctx->total[
[all...]
H A Dsha1.c76 ctx->total[0] = 0;
77 ctx->total[1] = 0;
253 left = ctx->total[0] & 0x3F;
256 ctx->total[0] += ilen;
257 ctx->total[0] &= 0xFFFFFFFF;
259 if( ctx->total[0] < (unsigned long) ilen )
260 ctx->total[1]++;
303 high = ( ctx->total[0] >> 29 )
304 | ( ctx->total[1] << 3 );
305 low = ( ctx->total[
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DSpreadSheet.java184 final int total = getParent().getWidth();
189 setPreferredWidth((((i+1)*total)/col_count)-((i*total)/col_count));
197 final int total = getParent().getHeight();
202 // setRowHeight(i, (((i+1)*total)/row_count)-((i*total)/row_count));
204 setRowHeight(Math.max(3,total/row_count));
/barrelfish-2018-10-04/lib/barrelfish/
H A Dslab.c62 head->free = head->total = buflen / blocksize;
63 assert(head->total > 0);
67 for (uint32_t i = head->total; i > 1; i--) {
139 + blocksize * sh->total;
150 assert(sh->free <= sh->total);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/x509v3/
H A Dv3_utl.c681 int total; member in struct:__anon1299
692 v6stat.total = 0;
707 if (v6stat.total != 16)
713 if (v6stat.total == 16)
721 if (v6stat.total > 0)
728 && (v6stat.zero_pos != v6stat.total))
735 || (v6stat.zero_pos == v6stat.total))
747 memset(v6 + v6stat.zero_pos, 0, 16 - v6stat.total);
749 if (v6stat.total != v6stat.zero_pos)
750 memcpy(v6 + v6stat.zero_pos + 16 - v6stat.total,
[all...]
/barrelfish-2018-10-04/lib/zlib/
H A Dinflate.h85 unsigned long total; /* protected copy of output count */ member in struct:inflate_state
/barrelfish-2018-10-04/include/barrelfish/
H A Dram_alloc.h33 errval_t ram_available(genpaddr_t *available, genpaddr_t *total);
H A Dslab.h30 uint32_t total, free; ///< Count of total and free blocks in this slab member in struct:slab_head
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/pkcs7/
H A Dexample.c83 int i,total; local
95 total=ASN1_object_size(1,i,V_ASN1_SEQUENCE);
97 data=malloc(total);
104 ASN1_STRING_set(seq,data,total);
247 int i,total; local
259 total=ASN1_object_size(1,i,V_ASN1_SEQUENCE);
261 data=malloc(total);
268 ASN1_STRING_set(seq,data,total);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/perlasm/
H A Dcbc.pl314 $total=16+4;
315 $total+=4 if ($p1 > 0);
316 $total+=4 if ($p2 > 0);
317 $total+=4 if ($p3 > 0);
318 &add("esp",$total);

Completed in 118 milliseconds

1234