Searched refs:lhs (Results 1 – 5 of 5) sorted by relevance
| /lib/ |
| A D | ubsan.h | 147 void ubsan_linkage __ubsan_handle_add_overflow(void *data, void *lhs, void *rhs); 148 void ubsan_linkage __ubsan_handle_sub_overflow(void *data, void *lhs, void *rhs); 149 void ubsan_linkage __ubsan_handle_mul_overflow(void *data, void *lhs, void *rhs); 151 void ubsan_linkage __ubsan_handle_divrem_overflow(void *_data, void *lhs, void *rhs); 152 void ubsan_linkage __ubsan_handle_implicit_conversion(void *_data, void *lhs, void *rhs); 156 void ubsan_linkage __ubsan_handle_shift_out_of_bounds(void *_data, void *lhs, void *rhs);
|
| A D | ubsan.c | 241 static void handle_overflow(struct overflow_data *data, void *lhs, in handle_overflow() argument 256 val_to_string(lhs_val_str, sizeof(lhs_val_str), type, lhs); in handle_overflow() 268 void *lhs, void *rhs) in __ubsan_handle_add_overflow() argument 271 handle_overflow(data, lhs, rhs, '+'); in __ubsan_handle_add_overflow() 276 void *lhs, void *rhs) in __ubsan_handle_sub_overflow() argument 278 handle_overflow(data, lhs, rhs, '-'); in __ubsan_handle_sub_overflow() 283 void *lhs, void *rhs) in __ubsan_handle_mul_overflow() argument 285 handle_overflow(data, lhs, rhs, '*'); in __ubsan_handle_mul_overflow() 333 void __ubsan_handle_divrem_overflow(void *_data, void *lhs, void *rhs) in __ubsan_handle_divrem_overflow() argument 474 val_to_string(lhs_str, sizeof(lhs_str), lhs_type, lhs); in __ubsan_handle_shift_out_of_bounds() [all …]
|
| A D | test_min_heap.c | 16 static __init bool less_than(const void *lhs, const void *rhs, void __always_unused *args) in less_than() argument 18 return *(int *)lhs < *(int *)rhs; in less_than() 21 static __init bool greater_than(const void *lhs, const void *rhs, void __always_unused *args) in greater_than() argument 23 return *(int *)lhs > *(int *)rhs; in greater_than()
|
| /lib/zstd/common/ |
| A D | compiler.h | 234 ptrdiff_t ZSTD_wrappedPtrDiff(unsigned char const* lhs, unsigned char const* rhs) in ZSTD_wrappedPtrDiff() argument 236 return lhs - rhs; in ZSTD_wrappedPtrDiff()
|
| /lib/tests/ |
| A D | checksum_kunit.c | 453 #define CHECK_EQ(lhs, rhs) KUNIT_ASSERT_EQ(test, (__force u64)lhs, (__force u64)rhs) argument
|
Completed in 15 milliseconds