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

  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
EhciSched.c 21 Create helper QTD/QH for the EHCI device.
25 @retval EFI_OUT_OF_RESOURCES Failed to allocate resource for helper QTD/QH.
26 @retval EFI_SUCCESS Helper QH/QTD are created.
35 PEI_EHC_QH *Qh;
52 // Create a QH to act as the EHC reclamation header.
66 Qh = EhcCreateQh (Ehc, &Ep);
68 if (Qh == NULL) {
72 QhHw = &Qh->QhHw;
76 Ehc->ReclaimHead = Qh;
79 // Create a dummy QH to act as the terminator for periodical schedule
    [all...]
EhciUrb.c 176 PEI_EHC_QH *Qh;
179 Qh = UsbHcAllocateMem (Ehci, Ehci->MemPool, sizeof (PEI_EHC_QH));
181 if (Qh == NULL) {
185 Qh->Signature = EHC_QH_SIG;
186 Qh->NextQh = NULL;
187 Qh->Interval = Ep->PollRate;
189 InitializeListHead (&Qh->Qtds);
191 QhHw = &Qh->QhHw;
243 return Qh;
321 if (Urb->Qh != NULL) {
    [all...]
EhciUrb.h 86 // little endian architecture. The QTD and QH structures
180 // Software QH structure. All three different transaction types
185 // 2^N tree. Each interrupt QH is linked to the list starting at
186 // frame 0. There is a dummy interrupt QH linked to each frame as
188 // transfer is linked after this dummy QH.
191 // transfer is supported. A dummy QH is linked to EHCI AsyncListAddr
192 // as the reclamation header. New transfer is inserted after this QH.
227 PEI_EHC_QH *Qh;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
UhciQueue.c 153 Link the TD To QH.
156 @param Qh The queue head for the TD to link to.
163 IN UHCI_QH_SW *Qh,
171 ASSERT ((Qh != NULL) && (Td != NULL));
173 Qh->QhHw.VerticalLink = QH_VLINK (PhyAddr, FALSE);
174 Qh->TDs = (VOID *) Td;
179 Unlink TD from the QH.
181 @param Qh The queue head to unlink from.
187 IN UHCI_QH_SW *Qh,
191 ASSERT ((Qh != NULL) && (Td != NULL));
    [all...]
Uhci.c 957 UHCI_QH_SW *Qh;
966 Qh = NULL;
1029 Qh = UhciCreateQh (Uhc, PollingInterval);
1031 if (Qh == NULL) {
1054 UhciLinkTdToQh (Uhc, Qh, IntTds);
1057 // Save QH-TD structures to async Interrupt transfer list,
1062 Qh,
1078 UhciLinkQhToFrameList (Uhc, Qh);
1084 UsbHcFreeMem (Uhc->MemPool, Qh, sizeof (UHCI_QH_SW));
    [all...]
UhciSched.c 89 // Allocate the QH used by sync interrupt/control/bulk transfer.
108 // Each frame entry is linked to this sequence of QH. These QH
245 @param Qh The queue head to link into.
251 UHCI_QH_SW *Qh
260 ASSERT ((Uhc->FrameBase != NULL) && (Qh != NULL));
262 QhPciAddr = UsbHcGetPciAddressForHostMem (Uhc->MemPool, Qh, sizeof (UHCI_QH_HW));
264 for (Index = 0; Index < UHCI_FRAME_NUM; Index += Qh->Interval) {
266 // First QH can't be NULL because we always keep static queue
274 // Now, insert the queue head (Qh) into this frame:
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
EhciUrb.c 182 EHC_QH *Qh;
185 Qh = UsbHcAllocateMem (Ehci->MemPool, sizeof (EHC_QH));
187 if (Qh == NULL) {
191 Qh->Signature = EHC_QH_SIG;
192 Qh->NextQh = NULL;
193 Qh->Interval = Ep->PollRate;
195 InitializeListHead (&Qh->Qtds);
197 QhHw = &Qh->QhHw;
249 return Qh;
342 if (Urb->Qh != NULL) {
    [all...]
EhciSched.c 20 Create helper QTD/QH for the EHCI device.
24 @retval EFI_OUT_OF_RESOURCES Failed to allocate resource for helper QTD/QH.
25 @retval EFI_SUCCESS Helper QH/QTD are created.
34 EHC_QH *Qh;
52 // Create a QH to act as the EHC reclamation header.
66 Qh = EhcCreateQh (Ehc, &Ep);
68 if (Qh == NULL) {
72 PciAddr = UsbHcGetPciAddressForHostMem (Ehc->MemPool, Qh, sizeof (EHC_QH));
73 QhHw = &Qh->QhHw;
77 Qh->NextQh = Qh;
    [all...]
EhciUrb.h 90 // little endian architecture. The QTD and QH structures
182 // Software QH structure. All three different transaction types
187 // 2^N tree. Each interrupt QH is linked to the list starting at
188 // frame 0. There is a dummy interrupt QH linked to each frame as
190 // transfer is linked after this dummy QH.
193 // transfer is supported. A dummy QH is linked to EHCI AsyncListAddr
194 // as the reclamation header. New transfer is inserted after this QH.
229 EHC_QH *Qh;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECFieldElement.java 333 BigInteger Qh = ECConstants.ONE;
337 Ql = modMult(Ql, Qh);
341 Qh = modMult(Ql, Q);
344 Vh = modReduce(Vh.multiply(Vh).subtract(Qh.shiftLeft(1)));
348 Qh = Ql;
355 Ql = modMult(Ql, Qh);
356 Qh = modMult(Ql, Q);
359 Ql = modMult(Ql, Qh);
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 255 milliseconds