Lines Matching refs:max_slots
73 print(" !jo_prev(address, max_slots = 100)");
75 print(" 'max_slots' before the given 'address', assumes the object");
78 print(" !jo_next(address, max_slots = 100)");
80 print(" 'max_slots' following the given 'address', assumes the object");
438 function print_object_prev(addr, max_slots = 100) {
439 let obj_addr = find_object_prev(addr, max_slots);
442 `No object found within ${max_slots} slots prior to ${hex(addr)}`);
450 function print_object_next(addr, max_slots = 100) {
451 let obj_addr = find_object_next(addr, max_slots);
454 `No object found within ${max_slots} slots following ${hex(addr)}`);