Home
last modified time | relevance | path

Searched defs:cond (Results 1 – 25 of 107) sorted by relevance

12345

/openbmc/u-boot/include/linux/
H A Diopoll.h27 #define readx_poll_timeout(op, addr, val, cond, timeout_us) \ argument
43 #define readb_poll_timeout(addr, val, cond, timeout_us) \ argument
46 #define readw_poll_timeout(addr, val, cond, timeout_us) \ argument
49 #define readl_poll_timeout(addr, val, cond, timeout_us) \ argument
52 #define readq_poll_timeout(addr, val, cond, timeout_us) \ argument
55 #define readb_relaxed_poll_timeout(addr, val, cond, timeout_us) \ argument
58 #define readw_relaxed_poll_timeout(addr, val, cond, timeout_us) \ argument
61 #define readl_relaxed_poll_timeout(addr, val, cond, timeout_us) \ argument
64 #define readq_relaxed_poll_timeout(addr, val, cond, timeout_us) \ argument
H A Dbuild_bug.h12 #define BUILD_BUG_ON_MSG(cond, msg) (0) argument
46 #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) argument
/openbmc/qemu/include/block/
H A Daio-wait.h78 #define AIO_WAIT_WHILE_INTERNAL(ctx, cond) ({ \ argument
102 #define AIO_WAIT_WHILE(ctx, cond) \ argument
106 #define AIO_WAIT_WHILE_UNLOCKED(ctx, cond) \ argument
H A Dblock-io.h353 #define BDRV_POLL_WHILE(bs, cond) ({ \ argument
/openbmc/u-boot/include/test/
H A Dut.h43 #define ut_assert(cond) \ argument
50 #define ut_assertf(cond, fmt, args...) \ argument
149 #define ut_assertok(cond) ut_asserteq(0, cond) argument
/openbmc/u-boot/test/
H A Dut.c15 const char *func, const char *cond) in ut_fail()
23 const char *func, const char *cond, const char *fmt, ...) in ut_failf()
/openbmc/u-boot/arch/arm/lib/
H A Dmemcpy.S28 .macro ldr1b ptr reg cond=al abort
40 .macro str1b ptr reg cond=al abort
/openbmc/qemu/util/
H A Dqemu-thread-posix.c162 void qemu_cond_init(QemuCond *cond) in qemu_cond_init()
188 void qemu_cond_destroy(QemuCond *cond) in qemu_cond_destroy()
199 void qemu_cond_signal(QemuCond *cond) in qemu_cond_signal()
209 void qemu_cond_broadcast(QemuCond *cond) in qemu_cond_broadcast()
219 void qemu_cond_wait_impl(QemuCond *cond, QemuMutex *mutex, const char *file, const int line) in qemu_cond_wait_impl()
232 qemu_cond_timedwait_ts(QemuCond *cond, QemuMutex *mutex, struct timespec *ts, in qemu_cond_timedwait_ts()
247 bool qemu_cond_timedwait_impl(QemuCond *cond, QemuMutex *mutex, int ms, in qemu_cond_timedwait_impl()
H A Dqemu-thread-win32.c140 void qemu_cond_init(QemuCond *cond) in qemu_cond_init()
147 void qemu_cond_destroy(QemuCond *cond) in qemu_cond_destroy()
154 void qemu_cond_signal(QemuCond *cond) in qemu_cond_signal()
160 void qemu_cond_broadcast(QemuCond *cond) in qemu_cond_broadcast()
166 void qemu_cond_wait_impl(QemuCond *cond, QemuMutex *mutex, const char *file, const int line) in qemu_cond_wait_impl()
174 bool qemu_cond_timedwait_impl(QemuCond *cond, QemuMutex *mutex, int ms, in qemu_cond_timedwait_impl()
/openbmc/qemu/include/qemu/
H A Dthread-posix.h25 pthread_cond_t cond; member
31 QemuCond cond; member
/openbmc/qemu/target/hexagon/
H A Dgenptr.c466 TCGCond cond, TCGv pred) in gen_write_new_pc_addr()
490 TCGCond cond, TCGv pred) in gen_write_new_pc_pcrel()
530 static void gen_compare(TCGCond cond, TCGv res, TCGv arg1, TCGv arg2) in gen_compare()
581 static inline void gen_comparei(TCGCond cond, TCGv res, TCGv arg1, int arg2) in gen_comparei()
588 TCGCond cond, TCGv pred) in gen_cond_jumpr()
593 static void gen_cond_jumpr31(DisasContext *ctx, TCGCond cond, TCGv pred) in gen_cond_jumpr31()
600 static void gen_cond_jump(DisasContext *ctx, TCGCond cond, TCGv pred, in gen_cond_jump()
622 int pnum, TCGCond cond, TCGv arg1, TCGv arg2, in gen_cmpnd_cmp_jmp_t()
629 int pnum, TCGCond cond, TCGv arg1, TCGv arg2, in gen_cmpnd_cmp_jmp_f()
636 int pnum, TCGCond cond, TCGv arg1, int arg2, in gen_cmpnd_cmpi_jmp_t()
[all …]
/openbmc/qemu/target/arm/
H A Dsyndrome.h172 static inline uint32_t syn_cp14_rt_trap(int cv, int cond, int opc1, int opc2, in syn_cp14_rt_trap()
182 static inline uint32_t syn_cp15_rt_trap(int cv, int cond, int opc1, int opc2, in syn_cp15_rt_trap()
192 static inline uint32_t syn_cp14_rrt_trap(int cv, int cond, int opc1, int crm, in syn_cp14_rrt_trap()
202 static inline uint32_t syn_cp15_rrt_trap(int cv, int cond, int opc1, int crm, in syn_cp15_rrt_trap()
212 static inline uint32_t syn_fp_access_trap(int cv, int cond, bool is_16bit, in syn_fp_access_trap()
221 static inline uint32_t syn_simd_access_trap(int cv, int cond, bool is_16bit) in syn_simd_access_trap()
265 static inline uint32_t syn_bxjtrap(int cv, int cond, int rm) in syn_bxjtrap()
337 static inline uint32_t syn_wfx(int cv, int cond, int ti, bool is_16bit) in syn_wfx()
/openbmc/qemu/chardev/
H A Dchar-fd.c48 static gboolean fd_chr_read(QIOChannel *chan, GIOCondition cond, void *opaque) in fd_chr_read()
90 GIOCondition cond; member
149 static GSource *fd_chr_add_watch(Chardev *chr, GIOCondition cond) in fd_chr_add_watch()
H A Dchar-pty.c134 static GSource *pty_chr_add_watch(Chardev *chr, GIOCondition cond) in pty_chr_add_watch()
152 static gboolean pty_chr_read(QIOChannel *chan, GIOCondition cond, void *opaque) in pty_chr_read()
/openbmc/phosphor-dbus-monitor/src/
H A Dcallback.hpp174 Conditional& cond) : graph(graphEntry), condition(cond) in ConditionalCallback()
220 DeferrableCallback(const std::vector<size_t>& graphEntry, Conditional& cond, in DeferrableCallback()
/openbmc/qemu/tests/guest-debug/
H A Dtest_gdbstub.py24 def report(cond, msg): argument
/openbmc/u-boot/include/
H A Dregmap.h265 #define regmap_read_poll_timeout_test(map, addr, val, cond, sleep_us, \ argument
288 #define regmap_read_poll_timeout(map, addr, val, cond, sleep_us, timeout_ms) \ argument
/openbmc/u-boot/lib/zlib/
H A Dzutil.h102 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} argument
109 # define Assert(cond,msg) argument
/openbmc/qemu/hw/char/
H A Dsifive_uart.c58 int cond = 0; in sifive_uart_update_irq() local
69 static gboolean sifive_uart_xmit(void *do_not_use, GIOCondition cond, in sifive_uart_xmit()
/openbmc/qemu/scripts/
H A Dminikconf.py157 def __init__(self, dest, value, cond=None): argument
191 def __init__(self, dest, cond): argument
282 def do_default(self, var, val, cond=None): argument
289 def do_select(self, var, symbol, cond=None): argument
293 def do_imply(self, var, symbol, cond=None): argument
/openbmc/u-boot/post/lib_powerpc/
H A Db.c132 int cond; in cpu_post_test_b() local
/openbmc/qemu/accel/tcg/
H A Dplugin-gen.c153 static TCGCond plugin_cond_to_tcgcond(enum qemu_plugin_cond cond) in plugin_cond_to_tcgcond()
181 TCGCond cond = tcg_invert_cond(plugin_cond_to_tcgcond(cb->cond)); in gen_udata_cond_cb() local
/openbmc/qemu/hw/misc/macio/
H A Dmac_dbdma.c126 int cond; in conditional_interrupt() local
170 int cond; in conditional_wait() local
232 int cond; in conditional_branch() local
/openbmc/qemu/tcg/
H A Dtci.c39 # define tci_assert(cond) assert(cond) argument
41 # define tci_assert(cond) ((void)(cond)) argument
852 static const char cond[16][8] = { in str_c() local
/openbmc/qemu/disas/
H A Dsparc.c1285 #define cond(bop, top, mask, flags) \ macro
1404 #define movicc(opcode, cond, flags) /* v9 */ \ argument
1420 #define movcc(opcode, cond, fcond, flags) /* v9 */ \ argument
1461 #define fmoviccx(opcode, fpsize, args, cond, flags) /* v9 */ \ argument
1472 #define fmovccx(opcode, fpsize, args, cond, fcond, flags) /* v9 */ \ argument
1480 #define fmovicc(suffix, cond, flags) /* v9 */ \ argument
1490 #define fmovcc(suffix, cond, fcond, flags) /* v9 */ \ argument

12345