Searched refs:cachesize (Results 1 - 21 of 21) sorted by path

/openbsd-current/gnu/usr.bin/binutils/gdb/rdi-share/
H A Darmdbg.h1120 Dbg_MCState *state, uint32 cachesize, bool closefiles);
1122 * If <cachesize> is non-zero, the text from the most recently accessed
1123 * source files (of total size not to exceed <cachesize>) is saved in
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/
H A DCacheMgr.pm28 #-> sub CPAN::CacheMgr::cachesize ;
29 sub cachesize { subroutine
/openbsd-current/include/
H A Ddb.h117 unsigned int cachesize; /* bytes to cache */ member in struct:__anon7458
136 unsigned int cachesize; /* bytes to cache */ member in struct:__anon7459
148 unsigned int cachesize; /* bytes to cache */ member in struct:__anon7460
/openbsd-current/lib/libc/db/btree/
H A Dbt_open.c101 * file is opened. Also, the file's page size can cause the cachesize
140 b.cachesize = 0;
215 * changes, the cachesize value can change too. If the user
267 if (b.cachesize && b.cachesize & (b.psize - 1))
268 b.cachesize += (~b.cachesize & (b.psize - 1)) + 1;
269 if (b.cachesize < b.psize * MINCACHE)
270 b.cachesize = b.psize * MINCACHE;
273 ncache = (b.cachesize
[all...]
/openbsd-current/lib/libc/db/hash/
H A Dhash.c175 if (info && info->cachesize)
176 __buf_init(hashp, info->cachesize);
H A Dndbm.c78 info.cachesize = 0;
/openbsd-current/lib/libkeynote/
H A Denvironment.c65 size_t cachesize; local
80 for (cachesize = 0, kl = keynote_current_session->ks_action_authorizers;
84 cachesize += strlen(kl->key_stringkey) + 1;
86 if (cachesize == 0)
90 calloc(cachesize, sizeof(char));
101 cachesize - len, "%s,", kl->key_stringkey);
116 size_t cachesize; local
130 for (cachesize = 0, i = 0; i < keynote_current_session->ks_values_num; i++)
131 cachesize += strlen(keynote_current_session->ks_values[i]) + 1;
133 if (cachesize
[all...]
/openbsd-current/regress/lib/libc/db/
H A Drun.test599 "Test 20: hash: bucketsize, fill factor; nelem 25000 cachesize 65536"
631 -ibsize=$bsize,ffactor=$ffactor,nelem=25000,cachesize=65536\
636 bsize=$bsize ffactor=$ffactor nelem=25000 cachesize=65536 failed"
644 -ibsize=$bsize,ffactor=$ffactor,nelem=25000,cachesize=65536\
649 bsize=$bsize ffactor=$ffactor nelem=25000 cachesize=65536 failed"
657 -ibsize=$bsize,ffactor=$ffactor,nelem=25000,cachesize=65536\
662 bsize=$bsize ffactor=$ffactor nelem=25000 cachesize=65536 failed"
670 -ibsize=$bsize,ffactor=$ffactor,nelem=25000,cachesize=65536\
675 bsize=$bsize ffactor=$ffactor nelem=25000 cachesize=65536 failed"
683 -ibsize=$bsize,ffactor=$ffactor,nelem=25000,cachesize
[all...]
H A Ddbtest.c596 if (!strcmp("cachesize", s)) {
597 ib.cachesize = atoi(eq);
630 if (!strcmp("cachesize", s)) {
631 ih.cachesize = atoi(eq);
644 if (!strcmp("cachesize", s)) {
645 rh.cachesize = atoi(eq);
/openbsd-current/sys/arch/alpha/alpha/
H A Ddec_kn300.c94 int cachesize; local
123 cachesize = (1 * 1024 * 1024);
127 cachesize = (2 * 1024 * 1024);
131 cachesize = (4 * 1024 * 1024);
136 cachesize = (1 * 1024 * 1024);
/openbsd-current/usr.sbin/ypserv/common/
H A Dypdb.c61 info.cachesize = 0;
86 info.cachesize = 0;
/openbsd-current/gnu/usr.bin/perl/cpan/DB_File/
H A DDB_File.pm37 cachesize => 1,
125 qw( bval cachesize psize flags lorder reclen bfname )
144 cachesize => 1,
751 $DB_HASH reference will only allow keys called C<bsize>, C<cachesize>,
756 $DB_HASH->{'cachesize'} = 10000 ;
768 $a->{'cachesize'} ;
776 $b->{'cachesize'} ;
786 $c->{'cachesize'} ;
799 $a->{'cachesize'} = 12345 ;
1387 That means that you can specify other options (e.g. cachesize) an
[all...]
H A DDB_File.xs350 #define db_HA_cachesize hash.cachesize
357 #define db_BT_cachesize btree.cachesize
367 #define db_RE_cachesize recno.cachesize
893 printf (" cachesize = %d\n", hash->db_HA_cachesize) ;
908 printf (" cachesize = %d\n", recno->db_RE_cachesize) ;
930 printf (" cachesize = %d\n", btree->db_BT_cachesize) ;
1080 svp = hv_fetch(action, "cachesize", 9, FALSE);
1117 svp = hv_fetch(action, "cachesize", 9, FALSE);
1153 svp = hv_fetch(action, "cachesize", 9, FALSE);
1362 svp = hv_fetch(action, "cachesize",
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/DB_File/t/
H A Ddb-btree.t141 ok(2, ! defined $dbh->{cachesize}) ;
152 $dbh->{cachesize} = 9000 ;
153 ok(10, $dbh->{cachesize} == 9000);
H A Ddb-hash.t105 ok(4, ! defined $dbh->{cachesize}) ;
118 $dbh->{cachesize} = 65 ;
119 ok(10, $dbh->{cachesize} == 65 );
H A Ddb-recno.t164 ok(2, ! defined $dbh->{cachesize}) ;
174 $dbh->{cachesize} = 9000 ;
175 ok(9, $dbh->{cachesize} == 9000 );
/openbsd-current/lib/libc/db/recno/
H A Drec_open.c70 btopeninfo.cachesize = openinfo->cachesize;
/openbsd-current/sys/arch/i386/i386/
H A Dmachdep.c1632 int family, model, step, modif, cachesize; local
1746 cachesize = -1;
1752 cachesize = intel_cachetable[(cpu_cache_edx & 0xFF) - 0x40];
1759 cachesize = (regs[2] >> 16);
1808 if (cachesize > -1) {
1813 ((*token) ? "\" " : ""), classnames[class], cachesize);
/openbsd-current/sys/dev/pci/
H A Dif_bge.c3280 pcireg_t cachesize, command, devctl; local
3317 cachesize = pci_conf_read(pa->pa_pc, pa->pa_tag, BGE_PCI_CACHESZ);
3418 pci_conf_write(pa->pa_pc, pa->pa_tag, BGE_PCI_CACHESZ, cachesize);
/openbsd-current/usr.bin/systat/
H A Dpftop.c1728 int cachesize = DEFAULT_CACHE_SIZE; local
1744 if (cache_init(cachesize))
1746 else if (interactive && cachesize > 0)
/openbsd-current/usr.sbin/pwd_mkdb/
H A Dpwd_mkdb.c71 2048 * 1024, /* cachesize */
190 openinfo.cachesize = MINIMUM(st.st_size * 20, (off_t)12*1024*1024);

Completed in 273 milliseconds