/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/priv/ |
D | tcpip_priv.h | 72 #define API_EXPR_REF(expr) (&(expr)) argument 74 #define API_EXPR_REF_SEM(expr) (expr) argument 76 #define API_EXPR_REF_SEM(expr) API_EXPR_REF(expr) argument 78 #define API_EXPR_DEREF(expr) expr argument 88 #define API_EXPR_REF(expr) expr argument 89 #define API_EXPR_REF_SEM(expr) API_EXPR_REF(expr) argument 90 #define API_EXPR_DEREF(expr) (*(expr)) argument
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/adapt/ |
D | hi_debug_adapt.h | 54 #define MPI_ASSERT(expr) \ argument 56 if (!(expr)) { \ 60 " >Condition: %s\n", __FUNCTION__, __LINE__, #expr); \ 67 #define MPI_ASSERT(expr) argument 77 #define MPI_ASSERT(expr) \ argument 79 if (!(expr)) { \ 83 " >Condition: %s\n", __FUNCTION__, __LINE__, #expr); \ 90 #define MPI_ASSERT(expr) argument
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/include/adapt/ |
D | hi_debug_adapt.h | 57 #define MPI_ASSERT(expr) \ argument 59 if (!(expr)) { \ 63 " >Condition: %s\n", __FUNCTION__, __LINE__, #expr); \ 70 #define MPI_ASSERT(expr) argument 80 #define MPI_ASSERT(expr) \ argument 82 if (!(expr)) { \ 86 " >Condition: %s\n", __FUNCTION__, __LINE__, #expr); \ 93 #define MPI_ASSERT(expr) argument
|
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/adapt/ |
D | hi_debug_adapt.h | 54 #define MPI_ASSERT(expr) \ argument 56 if (!(expr)) { \ 60 " >Condition: %s\n", __FUNCTION__, __LINE__, #expr); \ 67 #define MPI_ASSERT(expr) argument 77 #define MPI_ASSERT(expr) \ argument 79 if (!(expr)) { \ 83 " >Condition: %s\n", __FUNCTION__, __LINE__, #expr); \ 90 #define MPI_ASSERT(expr) argument
|
/device/soc/telink/b91/b91_ble_sdk/common/ |
D | static_assert.h | 29 #define STATIC_ASSERT_POW2(expr) STATIC_ASSERT(!((expr) & ((expr)-1))) // assert expr is 2*… argument 30 #define STATIC_ASSERT_EVEN(expr) STATIC_ASSERT(!((expr)&1)) argument 31 #define STATIC_ASSERT_ODD(expr) STATIC_ASSERT(((expr)&1)) argument
|
/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/components/libraries/app_assert/ |
D | app_assert.c | 88 char expr[APP_ASSERT_EXPR_NAME_LEN]; member 120 s_assert_info.expr[APP_ASSERT_FILE_NAME_LEN - 1] = ' '; in app_assert_info_output() 123 ret = sprintf_s(assert_info, sizeof(assert_info), "[ERROR] %s", s_assert_info.expr); in app_assert_info_output() 203 __WEAK void app_assert_err_cb(const char *expr, const char *file, int line) in app_assert_err_cb() argument 211 …expre_len = (APP_ASSERT_EXPR_NAME_LEN < strlen(expr)) ? APP_ASSERT_EXPR_NAME_LEN : strlen(expr… in app_assert_err_cb() 215 memcpy_s(s_assert_info.expr, sizeof(s_assert_info.expr), expr, expre_len); in app_assert_err_cb() 233 void app_assert_handler(const char *expr, const char *file, int line) in app_assert_handler() argument 236 s_assert_cbs.assert_err_cb(expr, file, line); in app_assert_handler()
|
D | app_assert.h | 79 void app_assert_handler(const char *expr, const char *file, int line); 114 void app_assert_err_cb(const char *expr, const char *file, int line);
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/ |
D | mali_kbase_debug.h | 102 #define KBASE_DEBUG_ASSERT(expr) \ argument 103 KBASE_DEBUG_ASSERT_MSG(expr, #expr) 106 #define KBASE_DEBUG_ASSERT_MSG(expr, ...) CSTD_NOP() argument 117 #define KBASE_DEBUG_ASSERT_MSG(expr, ...) \ argument 119 if (!(expr)) { \
|
/device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/ |
D | mali_kbase_debug.h | 101 #define KBASE_DEBUG_ASSERT(expr) KBASE_DEBUG_ASSERT_MSG(expr, #expr) argument 104 #define KBASE_DEBUG_ASSERT_MSG(expr, ...) CSTD_NOP() argument 115 #define KBASE_DEBUG_ASSERT_MSG(expr, ...) … argument 117 …if (!(expr)) { …
|
/device/soc/rockchip/common/vendor/drivers/gpu/arm/midgard/ |
D | mali_kbase_debug.h | 94 #define KBASE_DEBUG_ASSERT(expr) KBASE_DEBUG_ASSERT_MSG(expr, #expr) argument 97 #define KBASE_DEBUG_ASSERT_MSG(expr, ...) CSTD_NOP() argument 108 #define KBASE_DEBUG_ASSERT_MSG(expr, ...) … argument 110 …if (!(expr)) { …
|
D | mali_malisw.h | 126 #define CSTD_COMPILE_TIME_ASSERT(expr) … argument 130 …case (expr):; …
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/ |
D | mali_kbase_debug.h | 99 #define KBASE_DEBUG_ASSERT(expr) \ argument 100 KBASE_DEBUG_ASSERT_MSG(expr, #expr) 103 #define KBASE_DEBUG_ASSERT_MSG(expr, ...) CSTD_NOP() argument 114 #define KBASE_DEBUG_ASSERT_MSG(expr, ...) \ argument 116 if (!(expr)) { \
|
/device/soc/rockchip/common/sdk_linux/scripts/kconfig/ |
D | parser.y | 47 struct expr *expr; member 104 %type <expr> expr 105 %type <expr> if_expr 201 config_option: default expr if_expr T_EOL 322 if_entry: T_IF expr T_EOL 427 depends: T_DEPENDS T_ON expr T_EOL 454 | T_IF expr { $$ = $2; } 457 expr: symbol { $$ = expr_alloc_symbol($1); } 464 | T_OPEN_PAREN expr T_CLOSE_PAREN { $$ = $2; } 465 | T_NOT expr { $$ = expr_alloc_one(E_NOT, $2); } [all …]
|
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/ |
D | hi_debug.h | 61 #define HI_ASSERT(expr) \ argument 63 if (!(expr)) { \ 67 " >Condition: %s\n", __FUNCTION__, __LINE__, #expr); \ 82 #define HI_ASSERT(expr) argument 96 #define HI_ASSERT(expr) \ argument 98 if (!(expr)) { \ 102 " >Condition: %s\n", __FUNCTION__, __LINE__, #expr); \ 111 #define HI_ASSERT(expr) argument
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/include/ |
D | hi_debug.h | 64 #define HI_ASSERT(expr) \ argument 66 if (!(expr)) { \ 70 " >Condition: %s\n", __FUNCTION__, __LINE__, #expr); \ 85 #define HI_ASSERT(expr) argument 99 #define HI_ASSERT(expr) \ argument 101 if (!(expr)) { \ 105 " >Condition: %s\n", __FUNCTION__, __LINE__, #expr); \ 114 #define HI_ASSERT(expr) argument
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/ |
D | hi_debug.h | 61 #define HI_ASSERT(expr) \ argument 63 if (!(expr)) { \ 67 " >Condition: %s\n", __FUNCTION__, __LINE__, #expr); \ 82 #define HI_ASSERT(expr) argument 96 #define HI_ASSERT(expr) \ argument 98 if (!(expr)) { \ 102 " >Condition: %s\n", __FUNCTION__, __LINE__, #expr); \ 111 #define HI_ASSERT(expr) argument
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/platform/svp/common/ |
D | sample_comm_ive.h | 102 #define SAMPLE_CHECK_EXPR_RET(expr, ret, fmt...) \ argument 104 if (expr) { \ 110 #define SAMPLE_CHECK_EXPR_RET_VOID(expr, fmt...) \ argument 112 if (expr) { \ 118 #define SAMPLE_CHECK_EXPR_GOTO(expr, label, fmt...) \ argument 120 if (expr) { \
|
/device/soc/st/stm32f4xx/sdk/Drivers/STM32F4xx_HAL_Driver/Inc/ |
D | stm32_assert_template.h | 43 #define assert_param(expr) ((expr) ? (void)0U : assert_failed((uint8_t *)__FILE__, __LINE__)) argument 47 #define assert_param(expr) ((void)0U)
|
/device/soc/st/stm32f407zg/uniproton/board/common/ |
D | stm32f4xx_conf.h | 116 #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__)) argument 120 #define assert_param(expr) ((void)0) argument
|
/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/drivers/inc/ |
D | gr55xx_hal_conf.h | 229 #define gr_assert_param(expr) ((expr) ? (void)0U : assert_failed((char *)__FILE__, __LINE__)) argument 233 #define gr_assert_param(expr) ((void)0U)
|
/device/soc/st/common/platform/stm32mp1xx_hal/STM32MP1xx_HAL_Driver/Inc/ |
D | stm32mp1xx_hal_conf.h | 379 #define assert_param(expr) ((expr) ? (void)0U : assert_failed((uint8_t *)__FILE__, __LINE__)) argument 383 #define assert_param(expr) ((void)0)
|
/device/soc/esp/esp32/components/bootloader_support/src/ |
D | bootloader_panic.c | 21 void __assert_func(const char *file, int line, const char *func, const char *expr) in __assert_func() argument 23 esp_rom_printf("Assert failed in %s, %s:%d (%s)\r\n", func, file, line, expr); in __assert_func()
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/platform/higv/include/ |
D | hi_gv_conf.h | 22 #define HIGV_UNUSED(expr) \ argument 24 (void)(expr); \
|
/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/components/libraries/app_error/ |
D | app_error.h | 70 .value.expr = #BOOL_VAL, \ 99 char const *expr; /**< Error expression. */ member
|
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/include/ |
D | hi_log.h | 159 #define HI_ASSERT(expr) … argument 161 …if (!(expr)) { … 163 …__FILE__, __FUNCTION__, __LINE__, #expr); … 167 #define HI_ASSERT_RET(expr) \ argument 169 if (!(expr)) { \ 170 HI_PRINT("\n<%s %d>: ASSERT Failure{" #expr "}\n", \ 273 #define HI_ASSERT(expr) argument 274 #define HI_ASSERT_RET(expr) argument
|