Home
last modified time | relevance | path

Searched refs:gcthreshold (Results 1 – 11 of 11) sorted by relevance

/dports/security/p5-Net-SAML/zxid-1.42/
H A Dzxidssofinalizetest.c62 int gcthreshold = 0; variable
169 gcthreshold = atoi((*argv)[0]); in opt()
170 if (!gcthreshold) in opt()
H A Dzxidxmltool.c64 int gcthreshold = 0; variable
221 gcthreshold = atoi((*argv)[0]); in opt()
222 if (!gcthreshold) in opt()
H A Dzxbench.c79 int gcthreshold = 0; variable
186 gcthreshold = atoi((*argv)[0]); in opt()
187 if (!gcthreshold) in opt()
H A Dzxid.c85 int gcthreshold = 0; variable
264 gcthreshold = atoi((*argv)[0]); in opt()
265 if (!gcthreshold) in opt()
H A Dzxbusd.c120 int gcthreshold = 0; variable
370 gcthreshold = atoi((*argv)[0]); in opt()
371 if (!gcthreshold) in opt()
H A Dzxencdectest.c71 int gcthreshold = 0; variable
567 gcthreshold = atoi((*argv)[0]); in opt()
568 if (!gcthreshold) in opt()
/dports/lang/gravity/gravity-0.8.5/src/runtime/
H A Dgravity_vm.c65 gravity_int_t gcthreshold; // memory required to trigger a GC member
1906 if (strcmp(key, GRAVITY_VM_GCTHRESHOLD) == 0) return VALUE_FROM_INT(vm->gcthreshold); in gravity_vm_get()
1919 …if ((strcmp(key, GRAVITY_VM_GCTHRESHOLD) == 0) && VALUE_ISA_INT(value)) {vm->gcthreshold = VALUE_A… in gravity_vm_set()
2162 vm->gcthreshold = (threshold) ? threshold : DEFAULT_CG_THRESHOLD; in gravity_gc_setvalues()
2164 vm->gcthreshold_original = vm->gcthreshold; in gravity_gc_setvalues()
2229 if (vm->memallocated >= vm->gcthreshold) gravity_gc_start(vm); in gravity_gc_check()
2248 if (vm->memallocated >= vm->gcthreshold) gravity_gc_start(vm); in gravity_gc_transfer()
2306 vm->gcthreshold = (gravity_int_t)(vm->memallocated + (vm->memallocated * vm->gcratio / 100)); in gravity_gc_start()
2307 if (vm->gcthreshold < vm->gcminthreshold) vm->gcthreshold = vm->gcminthreshold; in gravity_gc_start()
2310 if (vm->gcthreshold < vm->gcthreshold_original) vm->gcthreshold = vm->gcthreshold_original; in gravity_gc_start()
[all …]
/dports/lang/gravity/gravity-0.8.5/docs/
H A Dsystem.md22 // ratio used during automatic recomputation of the new gcthreshold value
/dports/graphics/opensubdiv/OpenSubdiv-3_4_4/opensubdiv/hbr/
H A Dmesh.h911 static const size_t gcthreshold = 4096; in GarbageCollect() local
913 if (gcVertices.size() <= gcthreshold) return; in GarbageCollect()
923 int numprocessed = (int)gcVertices.size() - gcthreshold / 2; in GarbageCollect()
/dports/misc/mxnet/incubator-mxnet-1.9.0/example/gluon/word_language_model/
H A Dtrain.py138 …on_params = None if args.gctype == 'none' else {'type': args.gctype, 'threshold': args.gcthreshold}
/dports/misc/py-mxnet/incubator-mxnet-1.9.0/example/gluon/word_language_model/
H A Dtrain.py138 …on_params = None if args.gctype == 'none' else {'type': args.gctype, 'threshold': args.gcthreshold}