Home
last modified time | relevance | path

Searched refs:cond (Results 1 – 12 of 12) sorted by relevance

/rk3399_ARM-atf/include/lib/
H A Dmmio_poll.h27 #define mmio_read_poll_timeout(op, val, cond, timeout_us, args...)\ argument
34 if (cond) { \
42 #define mmio_read_32_poll_timeout(addr, val, cond, timeout_us) \ argument
43 mmio_read_poll_timeout(&mmio_read_32, val, cond, timeout_us, addr)
H A Dcassert.h20 #define CASSERT(cond, msg) \ argument
21 typedef char msg[(cond) ? 1 : -1] __unused
/rk3399_ARM-atf/plat/mediatek/drivers/spm/mt8189/constraints/
H A Dmt_spm_rc_api.c21 uint32_t rc_id, cond_id, cond = 0; in spm_rc_condition_modifier() local
34 cond = *((uint32_t *)val); in spm_rc_condition_modifier()
39 cond = !!cond; in spm_rc_condition_modifier()
41 tlb->table_pll |= (cond << pll_idx); in spm_rc_condition_modifier()
43 tlb->table_pll &= ~(cond << pll_idx); in spm_rc_condition_modifier()
/rk3399_ARM-atf/plat/mediatek/drivers/spm/mt8188/constraints/
H A Dmt_spm_rc_api.c17 unsigned int rc_id, cond_id, cond; in spm_rc_condition_modifier() local
30 cond = *((unsigned int *)val); in spm_rc_condition_modifier()
34 SPM_RC_BITS_SET(tlb->table_cg[cond_id], cond); in spm_rc_condition_modifier()
36 SPM_RC_BITS_CLR(tlb->table_cg[cond_id], cond); in spm_rc_condition_modifier()
43 cond = !!cond; in spm_rc_condition_modifier()
45 SPM_RC_BITS_SET(tlb->table_pll, (cond << pll_idx)); in spm_rc_condition_modifier()
47 SPM_RC_BITS_CLR(tlb->table_pll, (cond << pll_idx)); in spm_rc_condition_modifier()
/rk3399_ARM-atf/lib/compiler-rt/builtins/
H A Dassembly.h154 #define IT(cond) it cond argument
155 #define ITT(cond) itt cond argument
156 #define ITE(cond) ite cond argument
159 #define IT(cond) argument
160 #define ITT(cond) argument
161 #define ITE(cond) argument
166 #define IT(cond) argument
167 #define ITT(cond) argument
168 #define ITE(cond) argument
/rk3399_ARM-atf/plat/intel/soc/common/include/
H A Dsocfpga_private.h75 #define SOCFPGA_POLL(cond, max_count, delay, delay_fn, status) \ argument
79 while ((!(cond)) && (__count-- > 0)) { \
83 if ((cond)) { \
/rk3399_ARM-atf/plat/mediatek/drivers/spmi/
H A Dspmi_sw.h43 #define wait_us(cond, timeout) \ argument
49 if (cond) { \
/rk3399_ARM-atf/plat/mediatek/drivers/spm/mt8189/
H A Dmt_spm_cond.c141 int register_plat_cond_info(struct plat_cond_info_t *cond) in register_plat_cond_info() argument
143 if (!cond) in register_plat_cond_info()
146 cond_info = cond; in register_plat_cond_info()
H A Dmt_spm_cond.h113 int register_plat_cond_info(struct plat_cond_info_t *cond);
/rk3399_ARM-atf/lib/zlib/
H A Dzutil.h227 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} argument
234 # define Assert(cond,msg) argument
/rk3399_ARM-atf/include/drivers/nxp/crypto/caam/
H A Dsec_hw_specific.h330 uint32_t cond:8; member
/rk3399_ARM-atf/drivers/nxp/crypto/caam/src/
H A Dsec_hw_specific.c99 ERROR(" Condition %x\n", error_code.error_desc.jmp_halt_cond_src.cond); in hw_handle_jmp_halt_cond_err()