Searched refs:cachesize (Results 1 - 25 of 72) sorted by relevance

123

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/etc/cnid_dbd/
H A Ddb_param.h26 int cachesize; /* in KB */ member in struct:db_param
H A Ddb_param.c60 dbp->cachesize = DEFAULT_CACHESIZE;
148 } else if (! strcmp(key, "cachesize")) {
149 params.cachesize = parse_int(val);
150 LOG(log_info, logtype_cnid, "db_param: setting cachesize to %d", params.cachesize);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/test_micro/
H A Db_get.c17 u_int32_t cachesize; local
22 cachesize = MEGABYTE;
29 cachesize = (u_int32_t)atoi(optarg);
71 DB_BENCH_ASSERT(dbp->set_cachesize(dbp, 0, cachesize, 0) == 0);
H A Db_load.c17 u_int32_t cachesize; local
22 cachesize = MEGABYTE;
30 cachesize = (u_int32_t)atoi(optarg);
91 DB_BENCH_ASSERT(dbp->set_cachesize(dbp, 0, cachesize, 0) == 0);
H A Db_curwalk.c18 u_int32_t cachesize, pagesize, walkflags; local
24 cachesize = 10 * MEGABYTE;
34 cachesize = (u_int32_t)atoi(optarg);
113 DB_BENCH_ASSERT(dbp->set_cachesize(dbp, 0, cachesize, 0) == 0);
H A Db_del.c18 u_int32_t cachesize; local
23 cachesize = MEGABYTE;
31 cachesize = (u_int32_t)atoi(optarg);
76 DB_BENCH_ASSERT(dbp->set_cachesize(dbp, 0, cachesize, 0) == 0);
H A Db_recover.c17 u_int32_t cachesize; local
27 cachesize = MEGABYTE;
33 cachesize = (u_int32_t)atoi(optarg);
50 DB_BENCH_ASSERT(dbenv->set_cachesize(dbenv, 0, cachesize, 0) == 0);
H A Db_put.c19 u_int32_t cachesize; local
25 cachesize = MEGABYTE;
34 cachesize = (u_int32_t)atoi(optarg);
91 DB_BENCH_ASSERT(dbenv->set_cachesize(dbenv, 0, cachesize, 0) == 0);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/docs_src/ref/am_conf/
H A DMakefile4 byteorder.html cachesize.html dup.html extentsize.html \
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test_micro/source/
H A Db_get.c17 u_int32_t cachesize; local
22 cachesize = MEGABYTE;
28 cachesize = (u_int32_t)atoi(optarg);
70 DB_BENCH_ASSERT(dbp->set_cachesize(dbp, 0, cachesize, 0) == 0);
H A Db_load.c17 u_int32_t cachesize; local
22 cachesize = MEGABYTE;
29 cachesize = (u_int32_t)atoi(optarg);
90 DB_BENCH_ASSERT(dbp->set_cachesize(dbp, 0, cachesize, 0) == 0);
H A Db_recover.c17 u_int32_t cachesize; local
27 cachesize = MEGABYTE;
32 cachesize = (u_int32_t)atoi(optarg);
49 DB_BENCH_ASSERT(dbenv->set_cachesize(dbenv, 0, cachesize, 0) == 0);
H A Db_curwalk.c18 u_int32_t cachesize, pagesize, walkflags; local
24 cachesize = 10 * MEGABYTE;
33 cachesize = (u_int32_t)atoi(optarg);
112 DB_BENCH_ASSERT(dbp->set_cachesize(dbp, 0, cachesize, 0) == 0);
H A Db_del.c18 u_int32_t cachesize; local
23 cachesize = MEGABYTE;
30 cachesize = (u_int32_t)atoi(optarg);
75 DB_BENCH_ASSERT(dbp->set_cachesize(dbp, 0, cachesize, 0) == 0);
H A Db_put.c19 u_int32_t cachesize; local
25 cachesize = MEGABYTE;
33 cachesize = (u_int32_t)atoi(optarg);
90 DB_BENCH_ASSERT(dbenv->set_cachesize(dbenv, 0, cachesize, 0) == 0);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_c/
H A Dex_mpool.c38 int cachesize, ch, hits, npages, pagesize; local
41 cachesize = 20 * 1024;
49 if ((cachesize = atoi(optarg)) < 20 * 1024)
71 return (run_mpool(pagesize, cachesize,
80 "usage: %s [-c cachesize] [-h hits] [-n npages] [-p pagesize]\n",
86 run_mpool(pagesize, cachesize, hits, npages, progname)
87 int pagesize, cachesize, hits, npages;
97 if ((ret = run(hits, cachesize, pagesize, npages, progname)) != 0)
156 run(hits, cachesize, pagesize, npages, progname)
157 int hits, cachesize, pagesiz
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/
H A DMpoolExample.cpp39 int initdb(const char *home, int cachesize);
53 int cachesize = 20 * 1024; local
60 if ((cachesize = atoi(argv[++i])) < 20 * 1024)
88 << ": cachesize: " << cachesize
92 if ((ret = app.initdb(NULL, cachesize)) != 0)
139 cerr << "usage: MpoolExample [-c cachesize] "
153 int MpoolExample::initdb(const char *home, int cachesize) argument
157 set_cachesize(0, cachesize, 0);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_unix/
H A Ddb185_int.h93 u_int32_t cachesize; /* bytes to cache */ member in struct:__anon1944
109 u_int32_t cachesize; /* bytes to cache */ member in struct:__anon1945
121 u_int32_t cachesize; /* bytes to cache */ member in struct:__anon1946
H A Ddb_185.h130 u_int32_t cachesize; /* bytes to cache */ member in struct:__anon1949
149 u_int32_t cachesize; /* bytes to cache */ member in struct:__anon1950
161 u_int32_t cachesize; /* bytes to cache */ member in struct:__anon1951
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/wce_tpcb/
H A DTpcbExample.h49 int cachesize; member in class:TpcbExample
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Dbigfile001.tcl35 -cachesize {0 50000000 0}} $omethod $args $dbname]
64 set db [eval {berkdb_open} {-cachesize {0 50000000 0}} $dbname]
H A Dtest121.tcl48 # Raise cachesize so this test focuses on cursor adjustment
50 set cachesize [expr 2 * 1024 * 1024]
53 set env [eval {berkdb_env -create -cachesize "0 $cachesize 1"}\
H A Denv003.tcl113 {-cachesize {0 50000 1}}]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/dnsmasq/
H A Ddnsmasq.c33 int cachesize = CACHESIZ; local
76 &serv_addrs, &cachesize, &port) ;
80 &serv_addrs, &cachesize, &port) ;
120 cache_init(cachesize, options & OPT_LOG);
187 if (cachesize)
188 syslog(LOG_INFO, "started, version %s cachesize %d", VERSION, cachesize);
259 dump_cache(options & (OPT_DEBUG | OPT_LOG), cachesize);
H A Ddnsmasq.h149 void cache_init(int cachesize, int log);
189 struct server **serv_addrs, int *cachesize, int *port);

Completed in 133 milliseconds

123