Searched refs:inx (Results 1 – 10 of 10) sorted by relevance
/external/bluetooth/bluedroid/stack/rfcomm/ |
D | port_rfc.c | 70 p_mcb->port_inx[p_port->dlci] = p_port->inx; in port_open_continue() 170 p_port->p_callback (events, p_port->inx); in port_start_close() 178 p_port->p_mgmt_callback (PORT_CLOSED, p_port->inx); in port_start_close() 232 (p_port->p_callback)(PORT_EV_CONNECT_ERR, p_port->inx); in PORT_StartCnf() 235 p_port->p_mgmt_callback (PORT_START_FAILED, p_port->inx); in PORT_StartCnf() 315 p_mcb->port_inx[dlci] = p_port->inx; in PORT_ParNegInd() 463 p_mcb->port_inx[dlci] = p_port->inx; in PORT_DlcEstablishInd() 478 (p_port->p_callback)(PORT_EV_CONNECTED, p_port->inx); in PORT_DlcEstablishInd() 481 p_port->p_mgmt_callback (PORT_SUCCESS, p_port->inx); in PORT_DlcEstablishInd() 521 (p_port->p_callback)(PORT_EV_CONNECTED, p_port->inx); in PORT_DlcEstablishCnf() [all …]
|
D | port_utils.c | 79 p_port->inx = yy + 1; in port_allocate_port() 244 RFCOMM_TRACE_DEBUG1 ("port_release_port:Initialize handle:%d", p_port->inx); in port_release_port() 267 RFCOMM_TRACE_DEBUG1 ("port_release_port:Clean-up handle:%d", p_port->inx); in port_release_port() 319 UINT8 inx; in port_find_mcb_dlci_port() local 327 inx = p_mcb->port_inx[dlci]; in port_find_mcb_dlci_port() 328 if (inx == 0) in port_find_mcb_dlci_port() 334 return (&rfc_cb.port.port[inx - 1]); in port_find_mcb_dlci_port()
|
D | port_api.c | 150 *p_handle = p_port->inx; in RFCOMM_CreateConnection() 843 p_port->p_callback (events, p_port->inx); in PORT_FlowControl() 1088 (p_port->p_callback)(events, p_port->inx); in PORT_Purge() 1300 p_port->p_callback (PORT_EV_ERR, p_port->inx); in port_write() 1385 (p_port->p_callback)(event, p_port->inx); in PORT_Write() 1536 (p_port->p_callback)(event, p_port->inx); in PORT_WriteDataCO() 1662 (p_port->p_callback)(event, p_port->inx); in PORT_WriteData()
|
D | port_int.h | 147 UINT8 inx; /* Index of this control block in the port_info array */ member
|
D | rfc_l2cap_if.c | 358 p_mcb->port_inx[rfc_cb.rfc.rx_frame.dlci] = p_port->inx; in RFCOMM_BufDataInd()
|
/external/skia/legacy/src/effects/ |
D | SkBlurMask.cpp | 304 int inx = SkClampMax(next_x - 1, sw); in kernel_interp_clamped() local 308 uint32_t inner_sum = sum[ipx+ipy] + sum[inx+iny] in kernel_interp_clamped() 309 - sum[inx+ipy] - sum[ipx+iny]; in kernel_interp_clamped() 401 int inx = next_x - 1; in apply_kernel_interp() local 405 uint32_t inner_sum = sum[ipx+ipy] + sum[inx+iny] in apply_kernel_interp() 406 - sum[inx+ipy] - sum[ipx+iny]; in apply_kernel_interp() 471 int inx = sw; in apply_kernel_interp() local 475 uint32_t inner_sum = sum[ipx+ipy] + sum[inx+iny] in apply_kernel_interp() 476 - sum[inx+ipy] - sum[ipx+iny]; in apply_kernel_interp()
|
/external/llvm/lib/CodeGen/ |
D | ShrinkWrapping.cpp | 396 for (unsigned inx = 0, e = CSI.size(); inx != e; ++inx) { in calculateSets() local 397 UsedCSRegs.set(inx); in calculateSets() 411 for (unsigned inx = 0, e = CSI.size(); inx != e; ++inx) { in calculateSets() local 412 unsigned Reg = CSI[inx].getReg(); in calculateSets() 428 CSRUsed[MBB].set(inx); in calculateSets()
|
/external/skia/src/effects/ |
D | SkBlurMask.cpp | 612 int inx = SkClampMax(next_x - 1, sw); in kernel_interp_clamped() local 616 uint32_t inner_sum = sum[ipx+ipy] + sum[inx+iny] in kernel_interp_clamped() 617 - sum[inx+ipy] - sum[ipx+iny]; in kernel_interp_clamped() 709 int inx = next_x - 1; in apply_kernel_interp() local 713 uint32_t inner_sum = sum[ipx+ipy] + sum[inx+iny] in apply_kernel_interp() 714 - sum[inx+ipy] - sum[ipx+iny]; in apply_kernel_interp() 779 int inx = sw; in apply_kernel_interp() local 783 uint32_t inner_sum = sum[ipx+ipy] + sum[inx+iny] in apply_kernel_interp() 784 - sum[inx+ipy] - sum[ipx+iny]; in apply_kernel_interp()
|
/external/bluetooth/bluedroid/stack/btm/ |
D | btm_inq.c | 1097 UINT16 inx; in BTM_InqNextResult() local 1103 inx = (UINT16)((p_ent - btm_cb.btm_inq_vars.inq_db) + 1); in BTM_InqNextResult() 1105 for (p_ent = &btm_cb.btm_inq_vars.inq_db[inx]; inx < BTM_INQ_DB_SIZE; inx++, p_ent++) in BTM_InqNextResult() 1191 UINT16 inx; in BTM_InqDbNext() local 1196 inx = (UINT16)((p_ent - btm_cb.btm_inq_vars.inq_db) + 1); in BTM_InqDbNext() 1198 for (p_ent = &btm_cb.btm_inq_vars.inq_db[inx]; inx < BTM_INQ_DB_SIZE; inx++, p_ent++) in BTM_InqDbNext()
|
/external/bluetooth/bluedroid/bta/av/ |
D | bta_av_act.c | 1550 UINT8 inx = (UINT8)p_tle->param; in bta_av_acp_sig_timer_cback() local 1552 tBTA_AV_SCB *p_scb = p_cb->p_scb[inx]; in bta_av_acp_sig_timer_cback() 1570 p_cb->acp_sig_tmr.param = (UINT32)inx; in bta_av_acp_sig_timer_cback()
|