HomeSort by relevance Sort by last modified time
    Searched defs:is_short (Results 1 - 6 of 6) sorted by null

  /external/u-boot/drivers/usb/gadget/
dwc2_udc_otg_xfer_dma.c 196 u32 ep_tsr = 0, xfer_size = 0, is_short = 0; local
235 is_short = !!(xfer_size % ep->ep.maxpacket);
239 "is_short = %d, DOEPTSIZ = 0x%x, remained bytes = %d\n",
241 is_short, ep_tsr, req->req.length - req->req.actual);
243 if (is_short || req->req.actual == req->req.length) {
269 u32 ep_tsr = 0, xfer_size = 0, is_short = 0; local
291 is_short = (xfer_size < ep->ep.maxpacket);
296 "is_short = %d, DIEPTSIZ = 0x%x, remained bytes = %d\n",
298 is_short, ep_tsr, req->req.length - req->req.actual);
    [all...]
pxa27x_udc.c 60 unsigned int i, n, w, b, is_short; local
79 is_short = n != endpoint->tx_packetSize;
82 usbdbg("n %d%s w %d b %d", n, is_short ? "-s" : "", w, b);
96 if (is_short)
126 if (is_short)
pxa25x_udc.c 479 int is_last, is_short; local
485 is_last = is_short = 1;
493 is_short = unlikely(max < ep->fifo_size);
498 is_last ? "/L" : "", is_short ? "/S" : "",
507 if (is_short)
547 int is_short; local
553 is_short = (count != EP0_FIFO_SIZE);
558 if (unlikely(is_short)) {
592 return is_short;
609 unsigned bufferspace, count, is_short; local
    [all...]
  /external/v8/src/
intl.cc 268 bool is_short = length < static_cast<int>(sizeof(uintptr_t)); local
269 if (is_short) {
  /external/v8/src/objects/
string-inl.h 539 bool ExternalString::is_short() const { function in class:v8::internal::ExternalString
565 if (is_short()) return;
576 if (is_short()) return;
612 if (is_short()) return;
  /external/python/cpython3/Python/
marshal.c 449 int is_short = PyUnicode_GET_LENGTH(v) < 256; local
450 if (is_short) {
    [all...]

Completed in 235 milliseconds