/src/sys/dev/dtv/ |
dtv_math.c | 50 * Here's a table of the desired and actual results, as well 53 * x desired actual err_abs err_rel 184 "x", "desired", "actual", "err_abs", "err_rel"); 188 uint32_t desired = (uint32_t)(log10((double)x) local in function:main 191 int32_t err_abs = actual - desired; 197 x, desired, actual, err_abs, err_rel);
|
/src/sys/rump/librump/rumpkern/ |
vm.c | 847 void *rv, *desired = NULL; local in function:uvm_km_alloc 869 desired = (void *)(0x80000000 - size); 878 error = rumpuser_anonmmap(desired, size, alignbit,
|
/src/sbin/fsdb/ |
fsdb.c | 1100 static long slotcount, desired; variable in typeref:typename:long 1107 if (slotcount++ == desired) { 1125 desired = strtol(argv[1], &cp, 0); 1126 if (cp == argv[1] || *cp != '\0' || desired < 0) { 1150 if (slotcount++ == desired) { 1174 desired = strtoul(argv[1], &cp, 0); 1204 if (slotcount++ == desired) { 1221 desired = strtoul(argv[1], &cp, 0);
|
/src/sys/kern/ |
subr_vmem.c | 1567 size_t desired; local in function:vmem_rehash_all 1570 desired = atomic_load_relaxed(&vm->vm_maxbusytag); 1573 if (desired > VMEM_HASHSIZE_MAX) { 1574 desired = VMEM_HASHSIZE_MAX; 1575 } else if (desired < VMEM_HASHSIZE_MIN) { 1576 desired = VMEM_HASHSIZE_MIN; 1578 if (desired > current * 2 || desired * 2 < current) { 1579 vmem_rehash(vm, desired, VM_NOSLEEP);
|