Home
last modified time | relevance | path

Searched refs:start_tx (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/tokio/tests/
Drt_threaded.rs69 let (start_tx, mut chain_rx) = tokio::sync::mpsc::channel(10); in many_multishot_futures()
86 let cycle_tx = start_tx.clone(); in many_multishot_futures()
103 start_txs.push(start_tx); in many_multishot_futures()
109 for start_tx in start_txs { in many_multishot_futures()
110 start_tx.send("ping").await.unwrap(); in many_multishot_futures()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_rdopt.c950 int start_tx, end_tx; in choose_tx_size_from_rd() local
971 start_tx = max_tx_size; in choose_tx_size_from_rd()
972 end_tx = VPXMAX(start_tx - cpi->sf.tx_size_search_depth, 0); in choose_tx_size_from_rd()
973 if (bs > BLOCK_32X32) end_tx = VPXMIN(end_tx + 1, start_tx); in choose_tx_size_from_rd()
977 start_tx = chosen_tx_size; in choose_tx_size_from_rd()
981 for (n = start_tx; n >= end_tx; n--) { in choose_tx_size_from_rd()
/external/libaom/libaom/av1/encoder/
Dtx_search.c2748 int start_tx; in choose_tx_size_type_from_rd() local
2754 start_tx = max_rect_tx_size; in choose_tx_size_type_from_rd()
2761 start_tx = chosen_tx_size; in choose_tx_size_type_from_rd()
2773 for (int tx_size = start_tx, depth = init_depth; depth <= MAX_TX_DEPTH; in choose_tx_size_type_from_rd()