Searched refs:ncache (Results 1 - 25 of 27) sorted by relevance

12

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/iproute2/lib/
H A Dinet_proto.c27 static char ncache[16]; local
32 return ncache;
37 strncpy(ncache, pe->p_name, 16);
47 static char ncache[16]; local
51 if (icache>=0 && strcmp(ncache, buf) == 0)
64 strncpy(ncache, pe->p_name, 16);
H A Dll_map.c138 static char ncache[16]; local
145 if (icache && strcmp(name, ncache) == 0)
151 strcpy(ncache, name);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/db_codegen/
H A Ddb_codegen.h40 u_int32_t ncache; /* Number of caches */ member in struct:__env_obj
H A Dcode_parse.c115 cur_env->ncache = uv;
292 (u_long)cur_env->ncache);
H A Dcode_capi.c149 \tu_int32_t ncache;\n\
165 (u_long)cur_env->ncache,
355 \t ep->gbytes, ep->bytes, ep->ncache)) != 0) {\n\
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/networking/libiproute/
H A Dll_map.c141 static char ncache[16]; local
149 if (icache && strcmp(name, ncache) == 0) {
157 strcpy(ncache, name);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/mp/
H A Dmp_method.c113 u_int ncache; local
118 ncache = arg_ncache <= 0 ? 1 : (u_int)arg_ncache;
124 if (sizeof(roff_t) == 4 && gbytes / ncache == 4 && bytes == 0) {
140 if (sizeof(roff_t) <= 4 && gbytes / ncache >= 4) {
145 if (gbytes / ncache > 10000) {
166 if (bytes / ncache < DB_CACHESIZE_MIN)
167 bytes = ncache * DB_CACHESIZE_MIN;
175 dbenv->mp_ncache = ncache;
H A Dmp_resize.c478 u_int32_t ncache; local
485 ncache = (u_int32_t)((total_size + reg_size / 2) / reg_size);
487 if (ncache < 1)
488 ncache = 1;
489 else if (ncache > mp->max_nreg) {
492 (u_long)ncache, (u_long)mp->max_nreg);
498 while (mp->nreg != ncache)
499 if ((ret = (mp->nreg < ncache ?
H A Dmp_mvcc.c164 u_int32_t magic, nbucket, ncache, pagesize; local
220 ncache = (u_int32_t)(infop - dbmp->reginfo);
223 (u_long)ncache, (u_long)nbucket, (u_long)pagesize / 1024);
401 u_int32_t listsize, magic, nbucket, ncache, ntrunc, nfree, pagesize; local
442 ncache = (u_int32_t)(infop - dbmp->reginfo);
445 (u_long)ncache, (u_long)nbucket, (u_long)pagesize / 1024);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Dmemp001.tcl21 proc memp001_body { ncache flags } {
28 set cachearg "-cachesize {0 400000 $ncache}"
40 puts "\tMemp001.a: Create env with $ncache caches"
57 error_check_good ncache [lindex $statpair 1] $ncache
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/sched/
H A Dsch_teql.c81 struct neighbour *ncache; member in struct:teql_sched_data
151 teql_neigh_release(xchg(&dat->ncache, NULL));
176 teql_neigh_release(xchg(&dat->ncache, NULL));
235 struct neighbour *n = q->ncache;
256 teql_neigh_release(xchg(&q->ncache, n));
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/tcl/
H A Dtcl_seq.c76 int cmdindex, ncache, result, ret; local
133 ret = seq->get_cachesize(seq, &ncache);
136 res = Tcl_NewIntObj(ncache);
H A Dtcl_db.c184 int cmdindex, intval, ncache, result, ret; local
383 ret = dbp->get_cachesize(dbp, &gbytes, &bytes, &ncache);
388 myobjv[2] = Tcl_NewIntObj((int)ncache);
H A Dtcl_env.c243 int cmdindex, i, intvalue, listobjc, ncache, result, ret; local
666 ret = dbenv->get_cachesize(dbenv, &gbytes, &bytes, &ncache);
671 myobjv[2] = Tcl_NewLongObj((long)ncache);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/db/
H A Ddb_method.c523 __db_set_cachesize(dbp, cache_gbytes, cache_bytes, ncache)
526 int ncache;
532 dbp->dbenv, cache_gbytes, cache_bytes, ncache));
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/rpc_server/
H A Ddb_server.x69 unsigned int ncache;
140 unsigned int ncache;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/cxx/
H A Dcxx_db.cpp640 DB_METHOD(set_cachesize, (u_int32_t gbytes, u_int32_t bytes, int ncache),
641 (db, gbytes, bytes, ncache), DB_RETOK_STD)
H A Dcxx_env.cpp777 (u_int32_t gbytes, u_int32_t bytes, int ncache),
778 (dbenv, gbytes, bytes, ncache))
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/docs_src/tcl/
H A Dm4.tcl93 allocated contiguously by a process. If m4_arg(ncache) is 0 or 1, the
95 1, the cache will be broken up into m4_arg(ncache) equally sized
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/internal/
H A DDb.java426 public void set_cachesize(long bytes, int ncache) throws com.sleepycat.db.DatabaseException { db_javaJNI.Db_set_cachesize(swigCPtr, this, bytes, ncache); } argument
H A DDbEnv.java321 public void set_cachesize(long bytes, int ncache) throws com.sleepycat.db.DatabaseException { db_javaJNI.DbEnv_set_cachesize(swigCPtr, this, bytes, ncache); } argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/libdb_java/
H A Ddb.i385 db_ret_t set_cachesize(jlong bytes, int ncache) {
388 (u_int32_t)(bytes % GIGABYTE), ncache);
761 db_ret_t set_cachesize(jlong bytes, int ncache) {
764 (u_int32_t)(bytes % GIGABYTE), ncache);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/rpc_server/c/
H A Ddb_server_proc.c35 &replyp->bytes, (int *)&replyp->ncache);
43 __env_set_cachesize_proc(dbenvcl_id, gbytes, bytes, ncache, replyp)
47 u_int32_t ncache;
57 ret = dbenv->set_cachesize(dbenv, gbytes, bytes, ncache);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/rpc_client/
H A Dgen_client.c308 *ncachep = (int)replyp->ncache;
546 __dbcl_env_set_cachesize(dbenv, gbytes, bytes, ncache)
550 int ncache;
566 msg.ncache = (u_int)ncache;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/rpc_server/cxx/
H A Ddb_server_cxxproc.cpp32 &replyp->bytes, (int *)&replyp->ncache);
40 u_int32_t ncache,
50 ret = dbenv->set_cachesize(gbytes, bytes, ncache);
36 __env_set_cachesize_proc( u_int dbenvcl_id, u_int32_t gbytes, u_int32_t bytes, u_int32_t ncache, __env_set_cachesize_reply *replyp) argument

Completed in 235 milliseconds

12