Home
last modified time | relevance | path

Searched refs:blocking (Results 1 – 2 of 2) sorted by relevance

/hal_rpi_pico-latest/tools/pioasm/
Dpio_types.h430 bool if_full, blocking; member
432 … instr_push(const yy::location &l, bool if_full, bool blocking) : instruction(l), if_full(if_full), in instr_push()
433 blocking(blocking) {} in instr_push()
438 uint arg1 = (blocking ? 1u : 0u) | (if_full ? 0x2u : 0); in raw_encode()
444 bool if_empty, blocking; member
446 …instr_pull(const yy::location &l, bool if_empty, bool blocking) : instruction(l), if_empty(if_empt… in instr_pull()
447 blocking(blocking) {} in instr_pull()
450 uint arg1 = (blocking ? 1u : 0u) | (if_empty ? 0x2u : 0) | 0x4u; in raw_encode()
Dparser.yy266 …| PUSH if_full blocking { $$ = std::shared_ptr<instruction>(new inst…
267 …| PULL if_empty blocking { $$ = std::shared_ptr<instruction>(new inst…
404 %type <bool> blocking;
405 blocking: