Searched defs:tx (Results 1 - 10 of 10) sorted by path

/system/bt/stack/l2cap/
H A Dl2c_api.cc1335 * Description Sets the tx/rx data rate for a channel.
1340 bool L2CA_SetChnlDataRate(uint16_t cid, tL2CAP_CHNL_DATA_RATE tx, argument
1344 L2CAP_TRACE_API("L2CA_SetChnlDataRate() CID: 0x%04x, tx:%d, rx:%d", cid, tx,
1355 p_ccb->tx_data_rate = tx;
/system/bt/stack/rfcomm/
H A Dport_int.h168 tPORT_DATA tx; /* Control block for data from app to peer */ member in struct:__anon1234
196 uint16_t credit_tx; /* Flow control credits for tx path */
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.cpp377 int tx = scratches.obtain(); local
379 AND(AL, 0, tx, Rx, imm(GGL_DITHER_MASK));
381 ADD(AL, 0, tx, tx, reg_imm(ty, LSL, GGL_DITHER_ORDER_SHIFT));
382 ORR(AL, 0, parts.count.reg, tx, reg_imm(parts.count.reg, LSL, 16));
/system/core/libpixelflinger/
H A Dpicker.cpp135 const texture_t& tx = c->state.texture[i]; local
136 if (tx.enable) {
138 t |= GGL_BUILD_NEEDS(tx.surface.format, T_FORMAT);
139 t |= GGL_BUILD_NEEDS(ggl_env_to_needs(tx.env), T_ENV);
141 if (tx.s_coord==GGL_ONE_TO_ONE && tx.t_coord==GGL_ONE_TO_ONE) {
146 t |= GGL_BUILD_NEEDS(ggl_wrap_to_needs(tx.s_wrap), T_S_WRAP);
147 t |= GGL_BUILD_NEEDS(ggl_wrap_to_needs(tx.t_wrap), T_T_WRAP);
149 if (tx.mag_filter == GGL_LINEAR) {
152 if (tx
[all...]
H A Dscanline.cpp192 "565 fb, 8888 tx, blend SRC_OVER", scanline_t32cb16blend, init_y_noop },
195 "565 fb, 8888 tx, SRC", scanline_t32cb16, init_y_noop },
199 "565 fb, 8888 tx, blend SRC_OVER dither", scanline_t32cb16blend_dither, init_y_noop },
203 "565 fb, 8888 tx, SRC dither", scanline_t32cb16_dither, init_y_noop },
207 "565 fb, 8888 tx, blend dst:ONE_MINUS_SRCA src:SRCA", scanline_t32cb16blend_srca, init_y_noop },
211 "565 fb, 8888 tx, SRC_OVER clamp", scanline_t32cb16blend_clamp, init_y },
214 "565 fb, 8888 tx, SRC_OVER clamp dither", scanline_t32cb16blend_clamp_dither, init_y },
218 "565 fb, 8888 tx, SRC_OVER clamp modulate", scanline_t32cb16blend_clamp_mod, init_y },
222 "565 fb, x888 tx, SRC_OVER clamp modulate", scanline_x32cb16blend_clamp_mod, init_y },
225 "565 fb, 8888 tx, SRC_OVE
717 texture_t& tx = c->state.texture[i]; local
966 texture_t& tx = c->state.texture[0]; local
983 texture_t& tx = c->state.texture[0]; local
1002 texture_t& tx = c->state.texture[0]; local
1092 const texture_t& tx = c->state.texture[0]; local
[all...]
/system/core/trusty/storage/lib/
H A Dstorage.c148 struct iovec tx[3] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}, {(void *)name, strlen(name)}}; local
152 ssize_t rc = send_reqv(session, tx, 3, rx, 2);
170 struct iovec tx[2] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}}; local
173 ssize_t rc = send_reqv(_to_session(fh), tx, 2, rx, 1);
184 struct iovec tx[3] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}, {(void *)name, strlen(name)}}; local
187 ssize_t rc = send_reqv(session, tx, 3, rx, 1);
195 struct iovec tx[2] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}}; local
198 ssize_t rc = send_reqv(_to_session(fh), tx, 2, rx, 2);
230 struct iovec tx[3] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}, {(void *)buf, size}}; local
233 ssize_t rc = send_reqv(_to_session(fh), tx,
272 struct iovec tx[2] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}}; local
283 struct iovec tx[2] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}}; local
[all...]
/system/libfmq/include/fmq/
H A DMessageQueue.h719 MemTransaction tx; local
720 return beginWrite(nMessages, &tx) &&
721 tx.copyTo(data, 0 /* startIdx */, nMessages) &&
1044 MemTransaction tx; local
1045 return beginRead(nMessages, &tx) &&
1046 tx.copyFrom(data, 0 /* startIdx */, nMessages) &&
/system/libfmq/tests/
H A Dmq_test.cpp343 MessageQueueSync::MemTransaction tx; local
344 ASSERT_TRUE(mQueue->beginWrite(dataLen, &tx));
346 ASSERT_TRUE(tx.copyTo(data, 0 /* startIdx */, dataLen));
352 ASSERT_TRUE(mQueue->beginRead(dataLen, &tx));
354 ASSERT_TRUE(tx.copyFrom(readData, 0 /* startIdx */, dataLen));
371 MessageQueueSync::MemTransaction tx; local
372 ASSERT_TRUE(mQueue->beginWrite(dataLen, &tx));
374 auto first = tx.getFirstRegion();
375 auto second = tx.getSecondRegion();
379 uint8_t* ptr = tx
424 MessageQueueSync::MemTransaction tx; local
464 MessageQueueSync::MemTransaction tx; local
532 MessageQueueSync::MemTransaction tx; local
617 MessageQueueSync::MemTransaction tx; local
695 MessageQueueUnsync::MemTransaction tx; local
[all...]
H A Dmsgq_test_client.cpp417 MessageQueueSync::MemTransaction tx; local
418 ASSERT_TRUE(mQueue->beginRead(dataLen, &tx));
420 auto first = tx.getFirstRegion();
421 auto second = tx.getSecondRegion();
463 MessageQueueSync::MemTransaction tx; local
464 ASSERT_TRUE(mQueue->beginWrite(dataLen, &tx));
466 auto first = tx.getFirstRegion();
467 auto second = tx.getSecondRegion();
647 MessageQueueSync::MemTransaction tx; local
648 ASSERT_TRUE(mQueue->beginWrite(mNumMessagesMax, &tx));
[all...]
/system/tpm/trunks/ftdi/
H A Dmpsse.h171 uint8_t tx; member in struct:mpsse_context

Completed in 188 milliseconds