Searched refs:middle (Results 1 - 25 of 44) sorted by path

12

/linux-master/drivers/input/mouse/
H A Dsynaptics.h158 unsigned int middle:1; member in struct:synaptics_hw_state
H A Dalps.c222 int left, int right, int middle)
238 input_report_key(dev, BTN_MIDDLE, middle);
254 int x, y, z, ges, fin, left, right, middle; local
260 middle = 0;
267 middle = packet[3] & 4;
281 if ((middle = forward && back))
292 alps_report_buttons(dev2, dev, left, right, middle);
302 middle |= packet[0] & 4;
305 alps_report_buttons(dev, dev2, left, right, middle);
477 * jumping around when the first touch is in the middle
221 alps_report_buttons(struct input_dev *dev1, struct input_dev *dev2, int left, int right, int middle) argument
560 int x, y, z, left, right, middle; local
[all...]
H A Dalps.h227 * @middle: Middle touchpad button is active.
246 unsigned int middle:1; member in struct:alps_fields
H A Dcypress_ps2.c506 psmouse_dbg(psmouse, "middle = %d\n", report_data->middle);
553 input_report_key(input, BTN_MIDDLE, report_data.middle);
H A Dcypress_ps2.h148 unsigned int middle:1; member in struct:cytp_report_data
H A Dsynaptics.c805 * ForcePads, like Clickpads, use middle button
841 * Clickpad's button is transmitted as middle button,
848 hw->middle = ((buf[0] ^ buf[3]) & 0x01) ? 1 : 0;
978 input_report_key(dev, BTN_MIDDLE, hw->middle);
H A Dvsxxxaa.c197 int left, middle, right; local
228 middle = buf[0] & 0x02;
235 left ? "L" : "l", middle ? "M" : "m", right ? "R" : "r");
241 input_report_key(dev, BTN_MIDDLE, middle);
253 int left, middle, right, touch; local
278 middle = buf[0] & 0x04;
286 left ? "L" : "l", middle ? "M" : "m",
293 input_report_key(dev, BTN_MIDDLE, middle);
305 int left, middle, right; local
337 middle
[all...]
/linux-master/arch/arm/lib/
H A Dmemset.S146 b 7b @ jump into the middle of memset
/linux-master/arch/x86/crypto/
H A Daesni-intel_asm.S1046 # accumulate the results in TMP4:XMM5, TMP6 holds the middle part
1076 # accumulate the results in TMP4:XMM5, TMP6 holds the middle part
1254 # accumulate the results in TMP4:XMM5, TMP6 holds the middle part
1284 # accumulate the results in TMP4:XMM5, TMP6 holds the middle part
1450 # middle section of the temp results combined as in karatsuba algorithm
/linux-master/drivers/gpu/drm/tests/
H A Ddrm_buddy_test.c172 * allocated nodes in the middle of the address space.
234 LIST_HEAD(middle);
242 * allocations between three different lists; one for left, middle and
257 list = &middle;
272 drm_buddy_free_list(&mm, &middle);
289 * however they are never buddies (since we freed middle and right) so
/linux-master/drivers/hwmon/
H A Dapplesmc.c409 int middle = begin + (end - begin) / 2; local
410 entry = applesmc_get_entry_by_index(middle);
416 begin = middle + 1;
418 end = middle;
431 int middle = begin + (end - begin) / 2; local
432 entry = applesmc_get_entry_by_index(middle);
438 end = middle;
440 begin = middle + 1;
H A Dmr75203.c392 u16 sys_freq, key, middle, low = 4, high = 8; local
404 middle = (low + high + 1) / 2;
405 key = DIV_ROUND_CLOSEST(sys_freq, middle);
407 low = middle + 1;
410 high = middle - 1;
/linux-master/drivers/infiniband/hw/hfi1/
H A Drc.c76 int middle = 0; local
237 middle = HFI1_CAP_IS_KSET(SDMA_AHG);
276 * s_ack_state because we are still in the middle of a request
356 hfi1_make_ruc_header(qp, ohdr, bth0, bth1, bth2, middle, ps);
404 int middle = 0; local
917 middle = HFI1_CAP_IS_KSET(SDMA_AHG);
962 middle = HFI1_CAP_IS_KSET(SDMA_AHG);
1156 middle,
1511 * Set the state to restart in the middle of a request.
2209 * Note that we might get a NAK in the middle o
[all...]
H A Druc.c158 * copy of the first middle.
170 /* first middle that needs copy */
181 /* subsequent middle after valid */
223 * @middle: non zero implies indicates ahg "could" be used
234 int middle,
267 middle = 0;
273 middle = 0;
279 middle = 0;
281 if (middle)
312 * @middle
231 hfi1_make_ruc_header_16B(struct rvt_qp *qp, struct ib_other_headers *ohdr, u32 bth0, u32 bth1, u32 bth2, int middle, struct hfi1_pkt_state *ps) argument
320 hfi1_make_ruc_header_9B(struct rvt_qp *qp, struct ib_other_headers *ohdr, u32 bth0, u32 bth1, u32 bth2, int middle, struct hfi1_pkt_state *ps) argument
386 hfi1_make_ruc_header(struct rvt_qp *qp, struct ib_other_headers *ohdr, u32 bth0, u32 bth1, u32 bth2, int middle, struct hfi1_pkt_state *ps) argument
[all...]
H A Dtid_rdma.c4632 * in the middle of a request.
4640 * segments. Also, PSN's start from 0 in the middle of a
5013 u32 bth1 = 0, bth2 = 0, hwords = 5, len, middle = 0; variable
5168 middle, ps);
5196 int middle = 0; local
5316 hfi1_make_ruc_header(qp, ohdr, (TID_OP(ACK) << 24), bth1, bth2, middle,
5523 * If a start/middle packet is delivered here due to
H A Duc.c31 int middle = 0; local
183 middle = HFI1_CAP_IS_KSET(SDMA_AHG);
208 middle = HFI1_CAP_IS_KSET(SDMA_AHG);
234 middle, ps);
H A Dverbs.h400 u32 bth0, u32 bth1, u32 bth2, int middle,
/linux-master/drivers/input/tablet/
H A Daiptek.c282 int mouseButtonMiddle; /* mouse middle btn delivers... */
419 int retval, macro, x, y, z, left, right, middle, p, dv, tip, bs, pck; local
473 middle = (data[1] & aiptek->curSetting.mouseButtonMiddle >> 2) != 0 ? 1 : 0;
476 input_report_key(inputdev, BTN_MIDDLE, middle);
604 middle = (data[5] & aiptek->curSetting.mouseButtonMiddle) != 0 ? 1 : 0;
626 input_report_key(inputdev, BTN_MIDDLE, middle);
701 middle = (data[1] & aiptek->curSetting.mouseButtonMiddle) != 0 ? 1 : 0;
1429 { "middle", AIPTEK_MOUSE_MIDDLE_BUTTON },
/linux-master/drivers/md/dm-vdo/indexer/
H A Ddelta-index.c178 * to process each half. Note that after this computation, first <= middle, and
179 * middle < last.
181 u32 middle = (first + last) / 2; local
183 delta_list = &delta_zone->delta_lists[middle];
184 new_start = delta_zone->new_offsets[middle];
187 * The direction that our middle list is moving determines which half of the
191 rebalance_delta_zone(delta_zone, middle + 1, last);
192 rebalance_delta_zone(delta_zone, first, middle);
194 rebalance_delta_zone(delta_zone, first, middle);
195 rebalance_delta_zone(delta_zone, middle
[all...]
/linux-master/drivers/md/persistent-data/
H A Ddm-btree.c742 struct dm_block *left, *middle, *right, *parent; local
763 r = new_block(s->info, &middle);
768 mn = dm_block_data(middle);
780 location = cpu_to_le64(dm_block_location(middle));
788 unlock_block(s->info, middle);
799 unlock_block(s->info, middle);
805 s->nodes[1] = middle;
808 unlock_block(s->info, middle);
/linux-master/drivers/net/ethernet/intel/e1000/
H A De1000_hw.h550 } middle; member in struct:e1000_rx_desc_packet_split::__anon1154
/linux-master/drivers/net/ethernet/intel/e1000e/
H A Dhw.h298 } middle; member in struct:e1000_rx_desc_packet_split::__anon115
H A Dnetdev.c365 le32_to_cpu(rx_desc_ps->wb.middle.status_error);
1329 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1374 length = le16_to_cpu(rx_desc->wb.middle.length0);
1458 rx_desc->wb.middle.vlan);
1461 rx_desc->wb.middle.status_error &= cpu_to_le32(~0xFF);
1475 staterr = le32_to_cpu(rx_desc->wb.middle.status_error);
1567 /* this descriptor is only the beginning (or middle) */
1574 /* this is the middle of a chain */
/linux-master/drivers/net/wireless/ath/carl9170/
H A Dwlan.h396 struct ar9170_rx_frame_middle middle; member in union:ar9170_rx_frame::__anon2007
/linux-master/fs/btrfs/
H A Dextent-tree.c2172 * order, we start to process the tree in the middle instead of the beginning
2179 u64 middle; local
2198 middle = entry->bytenr;
2207 return middle;

Completed in 445 milliseconds

12