Lines Matching refs:this
600 struct resource *this = root->child; in __find_resource() local
608 if (this && this->start == root->start) { in __find_resource()
609 tmp.start = (this == old) ? old->start : this->end + 1; in __find_resource()
610 this = this->sibling; in __find_resource()
613 if (this) in __find_resource()
614 tmp.end = (this == old) ? this->end : this->start - 1; in __find_resource()
641 next: if (!this || this->end == root->end) in __find_resource()
644 if (this != old) in __find_resource()
645 tmp.start = this->end + 1; in __find_resource()
646 this = this->sibling; in __find_resource()
1492 struct region_devres *this = res; in devm_region_release() local
1494 __release_region(this->parent, this->start, this->n); in devm_region_release()
1499 struct region_devres *this = res, *match = match_data; in devm_region_match() local
1501 return this->parent == match->parent && in devm_region_match()
1502 this->start == match->start && this->n == match->n; in devm_region_match()