Home
last modified time | relevance | path

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

/optee_os-3.20.0/core/lib/libtomcrypt/src/headers/
A Dtomcrypt_argchk.h13 #define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0) macro
19 #define LTC_ARGCHK(x) assert((x)) macro
24 #define LTC_ARGCHK(x) if (!(x)) { fprintf(stderr, "\nwarning: ARGCHK failed at %s:%d\n", __FILE__, … macro
29 #define LTC_ARGCHK(x) LTC_UNUSED_PARAM(x) macro
34 #define LTC_ARGCHK(x) if (!(x)) return CRYPT_INVALID_ARG; macro

Completed in 2 milliseconds