/linux/arch/powerpc/kernel/ |
H A D | static_call.c | 12 bool is_short = is_offset_in_branch_range((long)target - (long)tramp); in arch_static_call_transform() local 19 if (func && !is_short) { in arch_static_call_transform() 27 else if (is_short) in arch_static_call_transform()
|
/linux/drivers/usb/usbip/ |
H A D | vudc_transfer.c | 193 int is_short, to_host; in transfer() local 210 is_short = 1; in transfer() 214 is_short = 0; in transfer() 219 is_short = 1; in transfer() 243 if (is_short) { in transfer()
|
/linux/drivers/usb/gadget/udc/ |
H A D | pxa27x_udc.c | 870 int count, is_short, completed = 0; in read_fifo() local 876 is_short = (count < ep->fifo_size); in read_fifo() 878 udc_ep_readl(ep, UDCCSR), count, is_short ? "/S" : "", in read_fifo() 882 if (is_short || req->req.actual == req->req.length) { in read_fifo() 906 int count, is_short, is_last = 0, completed = 0, totcount = 0; in write_fifo() local 930 is_short = 1; in write_fifo() 938 is_short = unlikely(max < ep->fifo_size); in write_fifo() 941 if (is_short) in write_fifo() 952 totcount, is_last ? "/L" : "", is_short ? "/S" : "", in write_fifo() 971 int count, is_short, completed = 0; in read_ep0_fifo() local [all …]
|
H A D | pxa25x_udc.c | 599 int is_last, is_short; in write_fifo() local 605 is_last = is_short = 1; in write_fifo() 613 is_short = unlikely (max < ep->fifo_size); in write_fifo() 618 is_last ? "/L" : "", is_short ? "/S" : "", in write_fifo() 626 if (is_short) in write_fifo() 663 int is_short; in write_ep0_fifo() local 669 is_short = (count != EP0_FIFO_SIZE); in write_ep0_fifo() 674 if (unlikely (is_short)) { in write_ep0_fifo() 707 return is_short; in write_ep0_fifo() 725 unsigned bufferspace, count, is_short; in read_fifo() local [all …]
|
H A D | udc-xilinx.c | 589 u32 is_short, count, bufferspace; in xudc_read_fifo() local 614 is_short = count < ep->ep_usb.maxpacket; in xudc_read_fifo() 635 ep->ep_usb.name, count, is_short ? "/S" : "", req, in xudc_read_fifo() 639 if ((req->usb_req.actual == req->usb_req.length) || is_short) { in xudc_read_fifo() 683 int is_last, is_short = 0; in xudc_write_fifo() local 697 is_last = is_short = 1; in xudc_write_fifo() 707 is_short ? "/S" : "", in xudc_write_fifo()
|
H A D | net2272.c | 497 unsigned is_short; in net2272_read_packet() local 506 is_short = (avail < ep->ep.maxpacket); in net2272_read_packet() 511 return is_short; in net2272_read_packet() 531 return is_short; in net2272_read_packet() 538 unsigned is_short; in net2272_read_fifo() local 570 is_short = net2272_read_packet(ep, buf, req, count); in net2272_read_fifo() 573 if (unlikely(cleanup || is_short || in net2272_read_fifo()
|
H A D | goku_udc.c | 413 unsigned bufferspace, is_short, dbuff; in read_fifo() local 450 is_short = (size < ep->ep.maxpacket); in read_fifo() 453 ep->ep.name, size, is_short ? "/S" : "", in read_fifo() 475 if (unlikely(is_short || req->req.actual == req->req.length)) { in read_fifo()
|
H A D | dummy_hcd.c | 1417 int is_short, to_host; in transfer() local 1440 is_short = 1; in transfer() 1451 is_short = 0; in transfer() 1456 is_short = 1; in transfer() 1479 if (is_short) { in transfer()
|
H A D | renesas_usbf.c | 1064 static void usbf_epn_dma_out_send_dma(struct usbf_ep *epn, dma_addr_t addr, u32 npkt, bool is_short) in usbf_epn_dma_out_send_dma() argument 1069 if (is_short) { in usbf_epn_dma_out_send_dma() 1135 static size_t usbf_epn_dma_out_complete_dma(struct usbf_ep *epn, bool is_short) in usbf_epn_dma_out_complete_dma() argument 1146 if (is_short) { in usbf_epn_dma_out_complete_dma()
|
H A D | net2280.c | 712 unsigned count, tmp, is_short; in read_fifo() local 762 is_short = (count == 0) || ((count % ep->ep.maxpacket) != 0); in read_fifo() 765 ep->ep.name, count, is_short ? " (short)" : "", in read_fifo() 791 return is_short || req->req.actual == req->req.length; in read_fifo()
|
/linux/arch/arc/include/asm/ |
H A D | kprobes.h | 22 int is_short; member
|
/linux/arch/arc/kernel/ |
H A D | kprobes.c | 31 p->ainsn.is_short = is_short_instr((unsigned long)p->addr); in arch_prepare_kprobe() 153 if (!p->ainsn.is_short) { in setup_singlestep()
|
/linux/drivers/usb/renesas_usbhs/ |
H A D | fifo.c | 513 int is_short; in usbhsf_pio_try_push() local 539 is_short = total_len < maxp; in usbhsf_pio_try_push() 568 else if (is_short) in usbhsf_pio_try_push() 576 if (is_short) in usbhsf_pio_try_push() 946 int is_short = pkt->trans % usbhs_pipe_get_maxpacket(pipe); in usbhsf_dma_push_done() local 952 else if (is_short) in usbhsf_dma_push_done()
|