Lines Matching refs:tmp
297 unsigned int tmp; in fault_uint_attr_store() local
300 result = kstrtouint(page, 0, &tmp); in fault_uint_attr_store()
304 *val = tmp; in fault_uint_attr_store()
311 unsigned long tmp; in fault_ulong_attr_store() local
313 result = kstrtoul(page, 0, &tmp); in fault_ulong_attr_store()
317 *val = tmp; in fault_ulong_attr_store()
323 bool tmp; in fault_bool_attr_store() local
326 result = kstrtobool(page, &tmp); in fault_bool_attr_store()
330 *val = tmp; in fault_bool_attr_store()
336 int tmp; in fault_atomic_t_attr_store() local
339 result = kstrtoint(page, 0, &tmp); in fault_atomic_t_attr_store()
343 atomic_set(val, tmp); in fault_atomic_t_attr_store()
398 unsigned long tmp; in fault_stacktrace_depth_store() local
400 result = kstrtoul(page, 0, &tmp); in fault_stacktrace_depth_store()
405 min_t(unsigned long, tmp, MAX_STACK_TRACE_DEPTH); in fault_stacktrace_depth_store()