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

  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
EhciSched.h 52 the AsyncListAddr, the only active QH is appended to it.
55 @param Qh The queue head to link.
61 IN PEI_EHC_QH *Qh
70 @param Qh The queue head to unlink.
76 IN PEI_EHC_QH *Qh
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...]
EhcPeim.c 632 EhcLinkQhToAsync (Ehc, Urb->Qh);
634 EhcUnlinkQhFromAsync (Ehc, Urb->Qh);
1121 EhcLinkQhToAsync (Ehc, Urb->Qh);
1123 EhcUnlinkQhFromAsync (Ehc, Urb->Qh);
    [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/EhciDxe/
EhciSched.h 52 the AsyncListAddr, the only active QH is appended to it.
55 @param Qh The queue head to link.
61 IN EHC_QH *Qh
70 @param Qh The queue head to unlink.
76 IN EHC_QH *Qh
86 @param Qh The queue head to link.
92 IN EHC_QH *Qh
101 @param Qh The queue head to unlink.
107 IN EHC_QH *Qh
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...]
EhciDebug.h 37 @param Qh The queue head to dump.
44 IN EHC_QH *Qh,
EhciDebug.c 20 Dump the status byte in QTD/QH to a more friendly format.
22 @param State The state in the QTD/QH.
121 @param Qh The queue head to dump.
128 IN EHC_QH *Qh,
142 DEBUG ((EFI_D_VERBOSE, "Queue head @ 0x%p, interval %ld, next qh %p\n",
143 Qh, (UINT64)Qh->Interval, Qh->NextQh));
145 QhHw = &Qh->QhHw;
194 EFI_LIST_FOR_EACH (Entry, &Qh->Qtds) {
    [all...]
Ehci.c 788 EhcLinkQhToAsync (Ehc, Urb->Qh);
790 EhcUnlinkQhFromAsync (Ehc, Urb->Qh);
931 EhcLinkQhToAsync (Ehc, Urb->Qh);
933 EhcUnlinkQhFromAsync (Ehc, Urb->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;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
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...]
UhciSched.h 34 // Structure to return the result of UHCI QH execution.
35 // Result is the final result of the QH's QTD. NextToggle
132 @param Qh The queue head to link into.
138 UHCI_QH_SW *Qh
143 Unlink QH from the frame list is easier: find all
148 @param Qh The queue head to unlink.
154 UHCI_QH_SW *Qh
162 @param Qh The queue head of the transfer.
175 IN UHCI_QH_SW *Qh,
187 @param Qh The queue head of the transfer.
    [all...]
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...]
UhciQueue.h 21 // In this UHCI driver, QH's horizontal link always pointers to other QH,
23 // pointers to other sibling TD. Frame link always pointers to QH because
45 // Both links in QH has this internal structure:
98 Link the TD To QH.
101 @param Qh The queue head for the TD to link to.
108 IN UHCI_QH_SW *Qh,
114 Unlink TD from the QH.
116 @param Qh The queue head to unlink from.
124 IN UHCI_QH_SW *Qh,
    [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...]
  /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);
  /external/webrtc/data/voice_engine/stereo_rtp_files/
stereo_pcmu.rtp     [all...]
hrtf_g722_1C_48_jitterT2.rtp 445 3cB?"Q????d???j?&??[???L??<???????sg??Dq? 4??\?qH?F??bG?9?y?<??$?? ??K?d(??4??? j?2????4?? ????<?-Fl7Pc????z???????????????X?}V???I??X??????@?49???qI?p0,O}S??h???Y??n@:?GY
514 ¡??%?x`5???|???k?lEB? :J?????pQ??VU??]????8)0?E?`?@h"????xMG*?yF?~??X?T?2?s?i?xP?)A7??PPr?? ?X ????????}d??I??X??k??N?`H+:?Z?9?h@v??a-?[L b?J?HJx?/'\-?r???U:E?r??ZB????1??Ep?@?yab?? ???, X????L?DK????????OIT P??????) ?0???o?qH ?
    [all...]
toggling_stereo_g729_pt18_pt125.rtp     [all...]
  /external/webrtc/talk/media/testdata/
h264-svc-99-640x360.rtpdump     [all...]
  /prebuilts/tools/linux-x86_64/kythe/web/ui/js/
main.js     [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 361 milliseconds