/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/ |
Atapi.c | 52 // Select device via Device/Head Register.
55 IDEWritePortB (IdeDev->PciIo, IdeDev->IoPort->Head, DeviceSelect);
125 // Select device via Device/Head Register.
128 IDEWritePortB (IdeDev->PciIo, IdeDev->IoPort->Head, DeviceSelect);
369 // Select device via Device/Head Register.
373 IdeDev->IoPort->Head,
470 // Select device via Device/Head Register.
474 IdeDev->IoPort->Head,
[all...] |
Ide.c | 393 IdeDev->IoPort->Head = (UINT16) (CommandBlockBaseAddr + 0x06);
418 by set the device number in the Head/Device Register.
446 IdeDev->IoPort->Head,
461 IdeDev->IoPort->Head,
485 IdeDev->IoPort->Head,
533 IdeDev->IoPort->Head,
[all...] |
/device/linaro/bootloader/edk2/NetworkPkg/Udp6Dxe/ |
Udp6Impl.c | 39 @param[in] InstanceList Pointer to the head of the list linking the udp
522 @param[in] InstanceList Pointer to the head of the list linking the udp
578 @param[in] InstanceList Pointer to the head of the list linking the udp
[all...] |
/hardware/interfaces/confirmationui/support/include/android/hardware/confirmationui/support/ |
msg_formatting.h | 393 template <typename Head, typename... Tail> 394 WriteStream write(Message<Head, Tail...>, WriteStream out, const Head& head, const Tail&... tail) { 395 out = write(out, head); 405 template <Command cmd, typename HEAD, typename... Tail> 406 std::tuple<ReadStream, bool, HEAD, Tail...> read(Message<Cmd<cmd>, HEAD, Tail...>, ReadStream in) { 409 if (!command_matches) return {in, false, HEAD(), Tail()...}; 412 [&]() -> HEAD { [all...] |
/libcore/ojluni/src/main/java/java/util/stream/ |
IntPipeline.java | 59 * Constructor for the head of a stream pipeline. 72 * Constructor for the head of a stream pipeline. 516 public static class Head<E_IN> extends IntPipeline<E_IN> { 526 public Head(Supplier<? extends Spliterator<Integer>> source, 539 public Head(Spliterator<Integer> source, 554 // Optimized sequential terminal operations for the head of the pipeline
|
ReferencePipeline.java | 63 * Constructor for the head of a stream pipeline. 76 * Constructor for the head of a stream pipeline. 542 public static class Head<E_IN, E_OUT> extends ReferencePipeline<E_IN, E_OUT> { 551 public Head(Supplier<? extends Spliterator<?>> source, 563 public Head(Spliterator<?> source, 578 // Optimized sequential terminal operations for the head of the pipeline
|
/device/linaro/bootloader/edk2/DuetPkg/BootSector/ |
bootsect.asm | 66 CurrentHead db 0 ; Current Head - 8 bits
239 ; dx = ax % (MaxHead + 1) = Head
242 mov dh,dl ; dh = Head
|
bs16.asm | 53 CurrentHead db 0 ; Current Head - 8 bits
226 ; dx = ax % (MaxHead + 1) = Head
229 mov dh,dl ; dh = Head
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerUiLib/ |
BootMaintenance.c | [all...] |
ConsoleOption.c | 429 InitializeListHead (&TerminalMenu.Head);
528 InsertTailList (&TerminalMenu.Head, &NewMenuEntry->Link);
790 InitializeListHead (&ConsoleMenu->Head);
841 InsertTailList (&ConsoleMenu->Head, &NewMenuEntry->Link);
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/ |
IdeMode.c | 250 StatusBlock.AtaDeviceHead = IdeReadPortB (PciIo, IdeRegisters->Head);
982 IdeRegisters[EfiIdePrimary].Head = (UINT16) (CommandBlockBaseAddr + 0x06);
1012 IdeRegisters[EfiIdeSecondary].Head = (UINT16) (CommandBlockBaseAddr + 0x06);
[all...] |
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
MachineInstr.cpp | 63 // Otherwise, add this operand to the head of the registers use/def list. 64 MachineOperand **Head = &RegInfo->getRegUseDefListHead(getReg()); 67 // we do this by skipping over the definition if it is at the head of the 69 if (*Head && (*Head)->isDef()) 70 Head = &(*Head)->Contents.Reg.Next; 72 Contents.Reg.Next = *Head; 79 Contents.Reg.Prev = Head; 80 *Head = this [all...] |
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/ |
__init__.py | 310 from tensorflow.contrib.learn.python.learn.estimators.head import binary_svm_head 311 from tensorflow.contrib.learn.python.learn.estimators.head import Head 312 from tensorflow.contrib.learn.python.learn.estimators.head import loss_only_head 313 from tensorflow.contrib.learn.python.learn.estimators.head import multi_class_head 314 from tensorflow.contrib.learn.python.learn.estimators.head import multi_head 315 from tensorflow.contrib.learn.python.learn.estimators.head import multi_label_head 316 from tensorflow.contrib.learn.python.learn.estimators.head import no_op_train_fn 317 from tensorflow.contrib.learn.python.learn.estimators.head import poisson_regression_head 318 from tensorflow.contrib.learn.python.learn.estimators.head import regression_hea [all...] |
/prebuilts/go/darwin-x86/doc/codewalk/ |
urlpoll.go | 66 // Poll executes an HTTP HEAD request for url 69 resp, err := http.Head(r.url)
|
/prebuilts/go/linux-x86/doc/codewalk/ |
urlpoll.go | 66 // Poll executes an HTTP HEAD request for url 69 resp, err := http.Head(r.url)
|
/art/runtime/gc/allocator/ |
rosalloc.h | 139 // traverse the list from the head to the tail when merging free lists. 146 Slot* Head() const { 156 // Removes from the head of the free list. 241 *headp = list->Head(); 248 DCHECK(list->Head() != nullptr); 249 *headp = list->Head(); 270 Slot* head = reinterpret_cast<Slot*>(head_); local 273 CHECK(head == nullptr); 278 CHECK(head != nullptr); 283 for (Slot* slot = head; slot != nullptr; slot = slot->Next()) [all...] |
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/PciHostBridgeDxe/ |
PciHostBridge.h | 86 LIST_ENTRY Head;
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/ |
ConsoleOption.c | 432 InitializeListHead (&TerminalMenu.Head);
534 InsertTailList (&TerminalMenu.Head, &NewMenuEntry->Link);
839 InitializeListHead (&ConsoleMenu->Head);
882 InsertTailList (&ConsoleMenu->Head, &NewMenuEntry->Link);
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/IdeBusPei/ |
AtapiPeim.h | 83 UINT16 Head;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/ |
EfiKey.h | 65 UINTN Head;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/ |
IpIoLib.h | 78 #define NET_PROTO_HDR(Buf, Type) ((Type *) ((Buf)->BlockOp[0].Head))
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Udp4Dxe/ |
Udp4Impl.c | 39 @param[in] InstanceList Pointer to the head of the list linking the udp
511 @param[in] InstanceList Pointer to the head of the list linking the udp
566 @param[in] InstanceList Pointer to the head of the list linking the udp
[all...] |
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/ |
TcpFunc.h | 190 Translate the information from the head of the received TCP
196 @return Pointer to the TCP_SEG that contains the translated TCP head information.
425 @param[in] Head TCP header of the segment that triggers the reset.
439 IN TCP_HEAD *Head,
|
/device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/ |
SecureBootConfigImpl.h | 108 LIST_ENTRY Head;
|
/external/googletest/googletest/include/gtest/internal/ |
gtest-internal.h | 634 typedef typename Types::Head Type; 691 typedef typename Tests::Head Head; 694 TypeParameterizedTest<Fixture, Head, Types>::Register( [all...] |