HomeSort by relevance Sort by last modified time
    Searched defs:Head (Results 101 - 125 of 253) sorted by null

1 2 3 45 6 7 8 91011

  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
Registry.h 57 static node *Head, *Tail;
132 /// This provides template definitions of add_node, begin, and the Head and Tail
140 template<typename T> typename Registry<T>::node *Registry<T>::Head = nullptr;\
147 Head = N; \
151 return iterator(Head); \
153 template REGISTRY_CLASS::node *Registry<REGISTRY_CLASS::type>::Head; \
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
Registry.h 57 static node *Head, *Tail;
132 /// This provides template definitions of add_node, begin, and the Head and Tail
140 template<typename T> typename Registry<T>::node *Registry<T>::Head = nullptr;\
147 Head = N; \
151 return iterator(Head); \
153 template REGISTRY_CLASS::node *Registry<REGISTRY_CLASS::type>::Head; \
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
Registry.h 57 static node *Head, *Tail;
132 /// This provides template definitions of add_node, begin, and the Head and Tail
140 template<typename T> typename Registry<T>::node *Registry<T>::Head = nullptr;\
147 Head = N; \
151 return iterator(Head); \
153 template REGISTRY_CLASS::node *Registry<REGISTRY_CLASS::type>::Head; \
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
BreadthFirstIterator.h 80 Optional<QueueElement> Head = VisitQueue.front();
81 QueueElement H = Head.getValue();
98 Head = VisitQueue.front();
99 if (Head != None)
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Registry.h 57 static node *Head, *Tail;
132 /// This provides template definitions of add_node, begin, and the Head and Tail
140 template<typename T> typename Registry<T>::node *Registry<T>::Head = nullptr;\
147 Head = N; \
151 return iterator(Head); \
153 template REGISTRY_CLASS::node *Registry<REGISTRY_CLASS::type>::Head; \
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
Registry.h 57 static node *Head, *Tail;
132 /// This provides template definitions of add_node, begin, and the Head and Tail
140 template<typename T> typename Registry<T>::node *Registry<T>::Head = nullptr;\
147 Head = N; \
151 return iterator(Head); \
153 template REGISTRY_CLASS::node *Registry<REGISTRY_CLASS::type>::Head; \
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
Registry.h 57 static node *Head, *Tail;
132 /// This provides template definitions of add_node, begin, and the Head and Tail
140 template<typename T> typename Registry<T>::node *Registry<T>::Head = nullptr;\
147 Head = N; \
151 return iterator(Head); \
153 template REGISTRY_CLASS::node *Registry<REGISTRY_CLASS::type>::Head; \
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
Registry.h 57 static node *Head, *Tail;
132 /// This provides template definitions of add_node, begin, and the Head and Tail
140 template<typename T> typename Registry<T>::node *Registry<T>::Head = nullptr;\
147 Head = N; \
151 return iterator(Head); \
153 template REGISTRY_CLASS::node *Registry<REGISTRY_CLASS::type>::Head; \
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
Registry.h 57 static node *Head, *Tail;
132 /// This provides template definitions of add_node, begin, and the Head and Tail
140 template<typename T> typename Registry<T>::node *Registry<T>::Head = nullptr;\
147 Head = N; \
151 return iterator(Head); \
153 template REGISTRY_CLASS::node *Registry<REGISTRY_CLASS::type>::Head; \
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
Registry.h 57 static node *Head, *Tail;
132 /// This provides template definitions of add_node, begin, and the Head and Tail
140 template<typename T> typename Registry<T>::node *Registry<T>::Head = nullptr;\
147 Head = N; \
151 return iterator(Head); \
153 template REGISTRY_CLASS::node *Registry<REGISTRY_CLASS::type>::Head; \
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
Registry.h 57 static node *Head, *Tail;
132 /// This provides template definitions of add_node, begin, and the Head and Tail
140 template<typename T> typename Registry<T>::node *Registry<T>::Head = nullptr;\
147 Head = N; \
151 return iterator(Head); \
153 template REGISTRY_CLASS::node *Registry<REGISTRY_CLASS::type>::Head; \
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/
IsaFloppyCtrl.c 424 Set the head of floppy drive to track 0.
498 Set the head of floppy drive to the new cylinder.
515 UINT8 Head;
544 // Calculate the head : 0 or 1
546 Head = (UINT8) ((UINTN) Lba / EndOfTrack % 2);
562 Command.DiskHeadSel = (UINT8) (Command.DiskHeadSel | (Head << 2));
656 UINT8 Head;
677 Head = (UINT8) ((UINTN) Lba / EndOfTrack % 2);
678 Command.DiskHeadSel = (UINT8) (Command.DiskHeadSel | (Head << 2));
994 Command->Head = (UINT8) ((UINTN) Lba / EndOfTrack % 2);
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyPei/
FloppyPeim.c 829 UINT8 Head;
867 // Calculate the head : 0 or 1
869 Head = (UINT8) ((UINTN) Lba / EndOfTrack % 2);
882 Command.DiskHeadSel = (UINT8) (Command.DiskHeadSel | (Head << 2));
1204 Command->Head = (UINT8) ((UINTN) Lba / EndOfTrack % 2);
1206 Command->DiskHeadSel = (UINT8) (Command->DiskHeadSel | (Command->Head << 2));
1321 UINT8 Head;
1330 Head = (UINT8) ((UINTN) Lba / EndOfTrack % 2);
1332 SectorsInTrack = (UINT8) (EndOfTrack * (2 - Head) - (UINT8) ((UINTN) Lba % EndOfTrack));
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LegacyBootMaintUiLib/
LegacyBootMaintUi.h 145 LIST_ENTRY Head;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/
IdeMode.h 107 UINT16 Head;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
EhciSched.c 310 Link the queue head to the asynchronous schedule list.
317 @param Qh The queue head to link.
326 EHC_QH *Head;
330 // Append the queue head after the reclaim header, then
334 Head = Ehc->ReclaimHead;
336 Qh->NextQh = Head->NextQh;
337 Head->NextQh = Qh;
341 PciAddr = UsbHcGetPciAddressForHostMem (Ehc->MemPool, Head->NextQh, sizeof (EHC_QH));
342 Head->QhHw.HorizonLink = QH_LINK (PciAddr, EHC_TYPE_QH, FALSE);
347 Unlink a queue head from the asynchronous schedule list.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/IdeBusPei/
AtapiPeim.h 83 UINT16 Head;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
UhciSched.c 90 // FS ctrl/bulk queue head is set to loopback so additional BW
241 Link a queue head (for asynchronous interrupt transfer) to
245 @param Qh The queue head to link into.
274 // Now, insert the queue head (Qh) into this frame:
275 // 1. Find a queue head with the same poll interval, just insert
276 // Qh after this queue head, then we are done.
278 // 2. Find the position to insert the queue head into:
279 // Previous head's interval is bigger than Qh's
280 // Next head's interval is less than Qh's
354 @param Qh The queue head to unlink.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciDxe/
UsbHcMem.c 232 USBHC_MEM_BLOCK *Head;
238 Head = Pool->Head;
245 for (Block = Head; Block != NULL; Block = Block->Next) {
281 USBHC_MEM_BLOCK *Head;
287 Head = Pool->Head;
294 for (Block = Head; Block != NULL; Block = Block->Next) {
316 @param Head The head of the memory pool's block list.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
UsbDesc.c 150 USB_DESC_HEAD *Head;
187 Head = (USB_DESC_HEAD*)DescBuf;
189 while ((Offset < Len) && (Head->Type != Type)) {
190 Offset += Head->Len;
195 Head = (USB_DESC_HEAD*)(DescBuf + Offset);
196 if (Head->Len == 0) {
197 DEBUG (( EFI_D_ERROR, "UsbCreateDesc: met mal-format descriptor, Head->Len = 0!\n"));
202 if ((Len <= Offset) || (Len < Offset + Head->Len) ||
203 (Head->Type != Type) || (Head->Len < DescLen)) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/
Pool.c 136 Look up pool head for specified memory type.
138 @param MemoryType Memory type of which pool head is looked for
140 @return Pointer of Corresponding pool head.
310 POOL_HEAD *Head;
349 Head = NULL;
358 Head = CoreAllocatePoolPages (PoolType, NoPages, Granularity);
392 // Serve the allocation request from the head of the allocated block
395 Head = (POOL_HEAD *) NewPage;
425 Head = (POOL_HEAD *) Free;
430 if (Head != NULL) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
TerminalConIn.c 94 TerminalDevice->RawFiFo->Head = TerminalDevice->RawFiFo->Tail;
95 TerminalDevice->UnicodeFiFo->Head = TerminalDevice->UnicodeFiFo->Tail;
96 TerminalDevice->EfiKeyFiFo->Head = TerminalDevice->EfiKeyFiFo->Tail;
97 TerminalDevice->EfiKeyFiFoForNotify->Head = TerminalDevice->EfiKeyFiFoForNotify->Tail;
752 UINT8 Head;
754 Head = TerminalDevice->RawFiFo->Head;
764 *Output = TerminalDevice->RawFiFo->Data[Head];
766 TerminalDevice->RawFiFo->Head = (UINT8) ((Head + 1) % (RAW_FIFO_MAX_NUMBER + 1));
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/
FtwMisc.c 894 UINT8 *Head;
897 Head = (UINT8 *) FtwHeader;
900 Head += sizeof (EFI_FAULT_TOLERANT_WRITE_HEADER);
901 return (BOOLEAN) (Head == Ptr);
922 UINT8 *Head;
925 Head = (UINT8 *) FtwHeader;
928 Head += FTW_WRITE_TOTAL_SIZE (FtwHeader->NumberOfWrites - 1, FtwHeader->PrivateDataSize);
929 return (BOOLEAN) (Head == Ptr);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/ArpDxe/
ArpImpl.c 80 ARP_HEAD *Head;
128 Head = (ARP_HEAD *) RxData->PacketData;
129 Head->HwType = NTOHS (Head->HwType);
130 Head->ProtoType = NTOHS (Head->ProtoType);
131 Head->OpCode = NTOHS (Head->OpCode);
133 if (RxData->DataLength < (sizeof (ARP_HEAD) + 2 * Head->HwAddrLen + 2 * Head->ProtoAddrLen)) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Impl.c     [all...]

Completed in 1977 milliseconds

1 2 3 45 6 7 8 91011