Searched refs:gcthreshold (Results 1 – 11 of 11) sorted by relevance
62 int gcthreshold = 0; variable169 gcthreshold = atoi((*argv)[0]); in opt()170 if (!gcthreshold) in opt()
64 int gcthreshold = 0; variable221 gcthreshold = atoi((*argv)[0]); in opt()222 if (!gcthreshold) in opt()
79 int gcthreshold = 0; variable186 gcthreshold = atoi((*argv)[0]); in opt()187 if (!gcthreshold) in opt()
85 int gcthreshold = 0; variable264 gcthreshold = atoi((*argv)[0]); in opt()265 if (!gcthreshold) in opt()
120 int gcthreshold = 0; variable370 gcthreshold = atoi((*argv)[0]); in opt()371 if (!gcthreshold) in opt()
71 int gcthreshold = 0; variable567 gcthreshold = atoi((*argv)[0]); in opt()568 if (!gcthreshold) in opt()
65 gravity_int_t gcthreshold; // memory required to trigger a GC member1906 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 …]
22 // ratio used during automatic recomputation of the new gcthreshold value
911 static const size_t gcthreshold = 4096; in GarbageCollect() local913 if (gcVertices.size() <= gcthreshold) return; in GarbageCollect()923 int numprocessed = (int)gcVertices.size() - gcthreshold / 2; in GarbageCollect()
138 …on_params = None if args.gctype == 'none' else {'type': args.gctype, 'threshold': args.gcthreshold}