Searched defs:tx (Results 151 - 155 of 155) sorted by last modified time

1234567

/external/chromium_org/content/browser/renderer_host/
H A Dcompositing_iosurface_mac.h119 void set(float x, float y, float tx, float ty) { argument
122 tx_ = tx;
129 void set_texcoord(float tx, float ty) { argument
130 tx_ = tx;
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_media_task.c198 * Ideally the (SRC) max tx buffer capacity should equal the sinks
205 /* The typical runlevel of the tx queue size is ~1 buffer
291 long long tx; member in struct:__anon1084
1132 /* ensure tx frames are immediately suspended */
1173 /* ensure tx frames are immediately flushed */
1187 /* when true media task discards any tx frames */
1281 log_tstamps_us("media task tx timer");
2419 /* audio engine stopped, reset tx suspended flag */
2811 APPL_TRACE_DEBUG("### tx suspended, discarded frame ###");
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_api.c1049 ** Description Sets the tx/rx data rate for a channel.
1054 BOOLEAN L2CA_SetChnlDataRate (UINT16 cid, tL2CAP_CHNL_DATA_RATE tx, tL2CAP_CHNL_DATA_RATE rx) argument
1058 L2CAP_TRACE_API ("L2CA_SetChnlDataRate() CID: 0x%04x, tx:%d, rx:%d", cid, tx, rx);
1067 p_ccb->tx_data_rate = tx;
/external/bluetooth/bluedroid/stack/rfcomm/
H A Dport_int.h173 tPORT_DATA tx; /* Control block for data from app to peer */ member in struct:t_port_info
198 UINT16 credit_tx; /* Flow control credits for tx path */
/external/aac/libFDK/src/
H A DFDK_bitbuffer.cpp169 UINT tx = (hBitBuf->Buffer [ byteOffset & byteMask] << 24) | local
176 tx <<= bitOffset;
177 tx |= hBitBuf->Buffer [(byteOffset+4) & byteMask] >> (8-bitOffset);
180 return (tx >> (32 - numberOfBits)) ;
225 UINT tx = hBitBuf->Buffer [(byteOffset-3) & byteMask] << 24 | local
231 tx >>= (8 - bitOffset) ;
235 tx |= hBitBuf->Buffer [(byteOffset-4) & byteMask] << (24 + bitOffset) ;
243 txa |= (tx & bitMaskR) << (31 - (i<<1));
244 txa |= (tx & bitMaskL) >> (31 - (i<<1));

Completed in 202 milliseconds

1234567