Searched refs:r2 (Results 1 – 10 of 10) sorted by relevance
| /include/media/ |
| A D | v4l2-rect.h | 82 return r1->width == r2->width && r1->height == r2->height; in v4l2_rect_same_size() 95 return r1->top == r2->top && r1->left == r2->left; in v4l2_rect_same_position() 108 return v4l2_rect_same_size(r1, r2) && v4l2_rect_same_position(r1, r2); in v4l2_rect_equal() 125 bottom = min(r1->top + r1->height, r2->top + r2->height); in v4l2_rect_intersect() 126 right = min(r1->left + r1->width, r2->left + r2->width); in v4l2_rect_intersect() 173 if (r1->left >= r2->left + r2->width || in v4l2_rect_overlap() 181 if (r1->top >= r2->top + r2->height || in v4l2_rect_overlap() 195 struct v4l2_rect *r2) in v4l2_rect_enclosed() argument 197 if (r1->left < r2->left || r1->top < r2->top) in v4l2_rect_enclosed() 199 if (r1->left + r1->width > r2->left + r2->width) in v4l2_rect_enclosed() [all …]
|
| /include/linux/ |
| A D | range.h | 18 const struct range *r2) in range_contains() argument 20 return r1->start <= r2->start && r1->end >= r2->end; in range_contains() 25 const struct range *r2) in range_overlaps() argument 27 return r1->start <= r2->end && r1->end >= r2->start; in range_overlaps()
|
| A D | ioport.h | 304 if (resource_type(r1) != resource_type(r2)) in resource_contains() 306 if (r1->flags & IORESOURCE_UNSET || r2->flags & IORESOURCE_UNSET) in resource_contains() 308 return r1->start <= r2->start && r1->end >= r2->end; in resource_contains() 314 return r1->start <= r2->end && r1->end >= r2->start; in resource_overlaps() 320 if (!resource_overlaps(r1, r2)) in resource_intersection() 322 r->start = max(r1->start, r2->start); in resource_intersection() 323 r->end = min(r1->end, r2->end); in resource_intersection() 327 static inline bool resource_union(const struct resource *r1, const struct resource *r2, in resource_union() argument 330 if (!resource_overlaps(r1, r2)) in resource_union() 332 r->start = min(r1->start, r2->start); in resource_union() [all …]
|
| A D | arm-smccc.h | 364 static inline uuid_t smccc_res_to_uuid(u32 r0, u32 r1, u32 r2, u32 r3) in smccc_res_to_uuid() argument 378 [8] = (r2 >> 0) & 0xff, in smccc_res_to_uuid() 379 [9] = (r2 >> 8) & 0xff, in smccc_res_to_uuid() 380 [10] = (r2 >> 16) & 0xff, in smccc_res_to_uuid() 381 [11] = (r2 >> 24) & 0xff, in smccc_res_to_uuid() 619 register unsigned long r2 asm("r2"); \ 624 "=r" (r0), "=r" (r1), "=r" (r2), "=r" (r3) \ 629 *___res = (typeof(*___res)){r0, r1, r2, r3}; \
|
| A D | bpf.h | 877 u64 (*func)(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5); 3498 u64 bpf_user_rnd_u32(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5); 3499 u64 bpf_get_raw_cpu_id(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
|
| A D | filter.h | 1132 u64 __bpf_call_base(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
|
| /include/drm/ |
| A D | drm_rect.h | 222 const struct drm_rect *r2) in drm_rect_equals() argument 224 return r1->x1 == r2->x1 && r1->x2 == r2->x2 && in drm_rect_equals() 225 r1->y1 == r2->y1 && r1->y2 == r2->y2; in drm_rect_equals()
|
| /include/net/ |
| A D | geneve.h | 32 u8 r2:1; member 36 u8 r2:1; member
|
| /include/sound/ |
| A D | rawmidi.h | 196 struct snd_rawmidi *r2) in snd_rawmidi_tie_devices() argument 199 r1->tied_device = r2->device + 1; in snd_rawmidi_tie_devices() 200 r2->tied_device = r1->device + 1; in snd_rawmidi_tie_devices()
|
| /include/math-emu/ |
| A D | op-4.h | 516 #define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ argument 525 r2 = x2 + y2 + _c2; \ 539 r2 = x2 + y2; \ 540 _c3 = r2 < x2; \ 541 r2 += _c2; \ 542 _c3 |= r2 < _c2; \ 557 r2 = x2 - y2 - _c2; \ 571 r2 = x2 - y2; \ 572 _c3 = r2 > x2; \ 573 r2 -= _c2; \ [all …]
|
Completed in 34 milliseconds