Home
last modified time | relevance | path

Searched defs:entity (Results 1 – 3 of 3) sorted by relevance

/trusty/user/base/interface/smc/include/interface/smc/
Dsmc_def.h24 #define SMC_NR(entity, fn, fastcall, smc64) \ argument
28 #define SMC_FASTCALL_NR(entity, fn) SMC_NR((entity), (fn), 1, 0) argument
29 #define SMC_STDCALL_NR(entity, fn) SMC_NR((entity), (fn), 0, 0) argument
30 #define SMC_FASTCALL64_NR(entity, fn) SMC_NR((entity), (fn), 1, 1) argument
31 #define SMC_STDCALL64_NR(entity, fn) SMC_NR((entity), (fn), 0, 1) argument
/trusty/user/base/lib/smc/include/lib/smc/
Dsmc_test.h23 #define SMC_NR(entity, fn, fastcall, smc64) \ argument
27 #define SMC_FASTCALL_NR(entity, fn) SMC_NR((entity), (fn), 1U, 0U) argument
28 #define SMC_FASTCALL64_NR(entity, fn) SMC_NR((entity), (fn), 1U, 1U) argument
/trusty/kernel/lib/sm/
Dsmcall.c187 status_t sm_register_entity(uint entity_nr, struct smc32_entity* entity) { in sm_register_entity()