Home
last modified time | relevance | path

Searched refs:lhs (Results 1 – 5 of 5) sorted by relevance

/trusty/kernel/lib/ubsan/
Dubsan.c191 value_handle_t lhs, in handle_overflow() argument
205 render_val(rendered_lhs, sizeof(rendered_lhs), type, lhs); in handle_overflow()
220 value_handle_t lhs, in UBSAN_HANDLER() argument
222 handle_overflow(data, lhs, rhs, "+"); in UBSAN_HANDLER()
227 value_handle_t lhs, in UBSAN_HANDLER() argument
229 handle_overflow(data, lhs, rhs, "-"); in UBSAN_HANDLER()
234 value_handle_t lhs, in UBSAN_HANDLER() argument
236 handle_overflow(data, lhs, rhs, "*"); in UBSAN_HANDLER()
241 value_handle_t lhs, in UBSAN_HANDLER() argument
243 handle_overflow(data, lhs, rhs, "/%"); in UBSAN_HANDLER()
[all …]
Dubsan.h183 value_handle_t lhs,
187 value_handle_t lhs,
191 value_handle_t lhs,
196 value_handle_t lhs,
201 value_handle_t lhs,
/trusty/user/app/keymint/
Dsecure_storage_manager.rs525 fn compare_attestation_ids(lhs: &AttestationIdInfo, rhs: &AttestationIdInfo) { in compare_attestation_ids()
526 expect_eq!(lhs.brand, rhs.brand, "brand doesn't match"); in compare_attestation_ids()
527 expect_eq!(lhs.device, rhs.device, "device doesn't match"); in compare_attestation_ids()
528 expect_eq!(lhs.product, rhs.product, "product doesn't match"); in compare_attestation_ids()
529 expect_eq!(lhs.serial, rhs.serial, "serial doesn't match"); in compare_attestation_ids()
530 expect_eq!(lhs.imei, rhs.imei, "imei doesn't match"); in compare_attestation_ids()
531 expect_eq!(lhs.meid, rhs.meid, "meid doesn't match"); in compare_attestation_ids()
532 expect_eq!(lhs.manufacturer, rhs.manufacturer, "manufacturer doesn't match"); in compare_attestation_ids()
533 expect_eq!(lhs.model, rhs.model, "model doesn't match"); in compare_attestation_ids()
534 expect_eq!(lhs.imei2, rhs.imei2, "imei2 doesn't match"); in compare_attestation_ids()
/trusty/user/base/lib/apploader_package/include/apploader/
Dcbor.h172 const std::span<const uint8_t>& lhs, in mergeMaps() argument
180 if (!populateMap(map, lhs)) { in mergeMaps()
/trusty/user/base/lib/libc-trusty/test/
Dlibc_test.c71 #define EXPECT_STREQ_COND(lhs, rhs_true, rhs_false, condition) \ argument
72 EXPECT_STREQ((lhs), (condition) ? (rhs_true) : (rhs_false))