Lines Matching defs:tmp
1587 struct vm_area_struct *tmp;
1606 tmp = mas_next(&mas, ULONG_MAX);
1607 if (tmp && (tmp->vm_flags & VM_STARTGAP_FLAGS)) { /* Avoid prev check if possible */
1608 if (vm_start_gap(tmp) < gap + length - 1) {
1609 low_limit = tmp->vm_end;
1614 tmp = mas_prev(&mas, 0);
1615 if (tmp && vm_end_gap(tmp) > gap) {
1616 low_limit = vm_end_gap(tmp);
1639 struct vm_area_struct *tmp;
1658 tmp = mas_next(&mas, ULONG_MAX);
1659 if (tmp && (tmp->vm_flags & VM_STARTGAP_FLAGS)) { /* Avoid prev check if possible */
1660 if (vm_start_gap(tmp) <= gap_end) {
1661 high_limit = vm_start_gap(tmp);
1666 tmp = mas_prev(&mas, 0);
1667 if (tmp && vm_end_gap(tmp) > gap) {
1668 high_limit = tmp->vm_start;
2490 * places tmp vma above, and higher split_vma places tmp vma below.
3893 unsigned long tmp, free_kbytes;
3898 tmp = sysctl_user_reserve_kbytes;
3899 if (0 < tmp && tmp < (1UL << 17))
3903 tmp = sysctl_admin_reserve_kbytes;
3904 if (0 < tmp && tmp < (1UL << 13))