Home
last modified time | relevance | path

Searched refs:tt (Results 1 – 12 of 12) sorted by relevance

/rk3399_rockchip-uboot/arch/powerpc/lib/
H A Dkgdb.c48 unsigned int tt; /* Trap type code for powerpc */ member
68 computeSignal(unsigned int tt) in computeSignal() argument
72 for (ht = hard_trap_info; ht->tt && ht->signo; ht++) in computeSignal()
73 if (ht->tt == tt) in computeSignal()
/rk3399_rockchip-uboot/common/
H A Dusb_hub.c728 hub->tt.multi = true; in usb_hub_configure()
746 hub->tt.think_time = 666; in usb_hub_configure()
748 8, hub->tt.think_time); in usb_hub_configure()
752 hub->tt.think_time = 666 * 2; in usb_hub_configure()
754 16, hub->tt.think_time); in usb_hub_configure()
757 hub->tt.think_time = 666 * 3; in usb_hub_configure()
759 24, hub->tt.think_time); in usb_hub_configure()
762 hub->tt.think_time = 666 * 4; in usb_hub_configure()
764 32, hub->tt.think_time); in usb_hub_configure()
/rk3399_rockchip-uboot/lib/bzip2/
H A Dbzlib_decompress.c261 s->tt = BZALLOC( s->blockSize100k * 100000 * sizeof(Int32) ); in BZ2_decompress()
262 if (s->tt == NULL) RETURN(BZ_MEM_ERROR); in BZ2_decompress()
451 s->tt[nblock] = (UInt32)uc; in BZ2_decompress()
522 s->tt[nblock] = (UInt32)(s->seqToUnseq[uc]); in BZ2_decompress()
590 uc = (UChar)(s->tt[i] & 0xff); in BZ2_decompress()
591 s->tt[s->cftab[uc]] |= (i << 8); in BZ2_decompress()
595 s->tPos = s->tt[s->origPtr] >> 8; in BZ2_decompress()
H A Dbzlib_private.h409 UInt32 *tt; member
472 s->tPos = s->tt[s->tPos]; \
H A Dbzlib.c574 s->tt = NULL; in BZ_API()
642 UInt32* c_tt = s->tt; in unRLE_obuf_to_output_FAST()
715 s->tt = c_tt; in unRLE_obuf_to_output_FAST()
899 if (s->tt != NULL) BZFREE(s->tt); in BZ_API()
/rk3399_rockchip-uboot/drivers/usb/gadget/
H A Ddesignware_udc.c598 char *tt; in udc_setup_ep() local
604 tt = env_get("usbtty"); in udc_setup_ep()
605 if (!tt) in udc_setup_ep()
606 tt = "generic"; in udc_setup_ep()
670 if (!strcmp(tt, "cdc_acm")) { in udc_setup_ep()
699 if (!strcmp(tt, "cdc_acm")) { in udc_setup_ep()
/rk3399_rockchip-uboot/drivers/serial/
H A Dusbtty.c525 char * tt; in drv_usbtty_init() local
543 tt = env_get("usbtty"); in drv_usbtty_init()
544 if (!tt) in drv_usbtty_init()
545 tt = "generic"; in drv_usbtty_init()
546 usbtty_init_terminal_type(strcmp(tt,"cdc_acm")); in drv_usbtty_init()
/rk3399_rockchip-uboot/drivers/usb/musb-new/
H A Dmusb_host.c2061 if (urb->dev->tt) {
2063 if (urb->dev->tt->hub)
2065 (u8) urb->dev->tt->hub->devnum;
2066 if (urb->dev->tt->multi)
/rk3399_rockchip-uboot/include/
H A Dusb.h589 struct usb_tt tt; /* Transaction Translator */ member
/rk3399_rockchip-uboot/drivers/usb/host/
H A Dxhci.c1458 if (hub->tt.multi) in xhci_update_hub_device()
1472 think_time = hub->tt.think_time; in xhci_update_hub_device()
H A Dxhci-mem.c805 if (hub->tt.multi) in xhci_setup_addressable_virt_dev()
/rk3399_rockchip-uboot/tools/rockchip/
H A Dboot_merger.c599 time_t tt = time(NULL); in getTime() local
600 tm = localtime(&tt); in getTime()