Home
last modified time | relevance | path

Searched refs:Left (Results 1 – 25 of 28) sorted by relevance

12

/device/linaro/bootloader/edk2/MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/
DBaseOrderedCollectionRedBlackTreeLib.c53 RED_BLACK_TREE_NODE *Left; member
218 Node = (Result < 0) ? Node->Left : Node->Right; in OrderedCollectionFind()
249 while (Node->Left != NULL) { in OrderedCollectionMin()
250 Node = Node->Left; in OrderedCollectionMin()
321 while (Walk->Left != NULL) { in OrderedCollectionNext()
322 Walk = Walk->Left; in OrderedCollectionNext()
372 Walk = Node->Left; in OrderedCollectionPrev()
386 while (Walk != NULL && Child == Walk->Left) { in OrderedCollectionPrev()
437 LeftChild = Pivot->Left; in RedBlackTreeRotateRight()
440 Pivot->Left = LeftRightChild; in RedBlackTreeRotateRight()
[all …]
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/QemuFwCfgLib/
DQemuFwCfgLib.c212 UINTN Left; in MmioReadBytes() local
217 Left = Size & 7; in MmioReadBytes()
219 Left = Size & 3; in MmioReadBytes()
222 Size -= Left; in MmioReadBytes()
231 if (Left & 4) { in MmioReadBytes()
242 if (Left & 2) { in MmioReadBytes()
246 if (Left & 1) { in MmioReadBytes()
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/PlatformBootManagerLib/
DQemuKernel.c397 UINT64 Left; in StubFileRead() local
435 Left = Blob->Size - StubFile->Position; in StubFileRead()
436 if (*BufferSize > Left) { in StubFileRead()
437 *BufferSize = (UINTN)Left; in StubFileRead()
859 UINT32 Left; in FetchBlob() local
884 Left = Blob->Size; in FetchBlob()
888 Chunk = (Left < SIZE_1MB) ? Left : SIZE_1MB; in FetchBlob()
889 QemuFwCfgReadBytes (Chunk, Blob->Data + (Blob->Size - Left)); in FetchBlob()
890 Left -= Chunk; in FetchBlob()
892 __FUNCTION__, (INT64)Left, Blob->Name)); in FetchBlob()
[all …]
/device/linaro/bootloader/edk2/EmbeddedPkg/Application/AndroidFastboot/
DAndroidFastbootApp.c184 UINTN Chunk, Offset = 0, Left, Count, FillBufSize; in FlashSparseImage() local
234 Left = (UINTN)ChunkHeader->ChunkSize * SparseHeader->BlockSize; in FlashSparseImage()
235 while (Left > 0) { in FlashSparseImage()
236 if (Left > FILL_BUF_SIZE) { in FlashSparseImage()
239 Count = Left; in FlashSparseImage()
252 Left = Left - Count; in FlashSparseImage()
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeNetLib/
DNetBuffer.c1244 UINT32 Left; in NetbufCopy() local
1289 Left = BlockOp[Index].Size - Skip; in NetbufCopy()
1291 if (Len <= Left) { in NetbufCopy()
1296 CopyMem (Dest, BlockOp[Index].Head + Skip, Left); in NetbufCopy()
1298 Dest += Left; in NetbufCopy()
1299 Len -= Left; in NetbufCopy()
1300 Copied = Left; in NetbufCopy()
1483 UINT32 Left; in NetbufQueCopy() local
1520 Left = Nbuf->TotalSize - Skip; in NetbufQueCopy()
1522 if (Len < Left) { in NetbufQueCopy()
[all …]
/device/generic/opengl-transport/host/libs/virglrenderer/
D.clang-format14 PointerAlignment: Left
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/ConPlatformDxe/
DConPlatform.c787 IN EFI_DEVICE_PATH_PROTOCOL *Left, in IsGopSibling() argument
794 for (NodeLeft = Left; !IsDevicePathEndType (NodeLeft); NodeLeft = NextDevicePathNode (NodeLeft)) { in IsGopSibling()
818 if (((UINTN) NodeLeft - (UINTN) Left) != ((UINTN) NodeRight - (UINTN) Right)) { in IsGopSibling()
822 return (BOOLEAN) (CompareMem (Left, Right, (UINTN) NodeLeft - (UINTN) Left) == 0); in IsGopSibling()
/device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/
DPchEhci.asl105 0xE1, 0x1C, 0x00, 0x00, // Front Panel, Vertical Upper, Horz. Left, Shape Unknown
127 0xE1, 0x1D, 0x00, 0x00, // Front Panel, Vertical Center, Horz. Left, Shape Unknown
149 0xE1, 0x1D, 0x00, 0x00, // Front Panel, Vertical Center, Horz. Left, Shape Unknown
172 0xE1, 0x1E, 0x00, 0x00, // Front Panel, Vertical Lower, Horz. Left, Shape Unknown
DPchXhci.asl196 … visiable/docking/no lid bit[69:67]=b'001 bottom panel bit[71:70]=b'01 Center bit[73:72]=b'00 Left
/device/google/cuttlefish_common/host/frontend/vnc_server/
Dkeysyms.h28 PageDown = 0xff56, Left = 0xff51, Up = 0xff52, variable
Dvirtual_inputs.cpp205 (*key_mapping)[cvd::xk::Left] = KEY_LEFT; in AddKeyMappings()
Dvnc_client_connection.cpp543 case cvd::xk::Left: in RotateIfIsRotationCommand()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
DDhcp4Option.c125 INTN Left; in DhcpFindOptionFormat() local
129 Left = 0; in DhcpFindOptionFormat()
132 while (Right >= Left) { in DhcpFindOptionFormat()
133 Middle = (Left + Right) / 2; in DhcpFindOptionFormat()
142 Left = Middle + 1; in DhcpFindOptionFormat()
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
DTcpOutput.c184 UINT32 Left; in TcpDataToSend() local
215 Left = GET_SND_DATASIZE (Sk) + TCP_SUB_SEQ (TcpGetMaxSndNxt (Tcb), Tcb->SndNxt); in TcpDataToSend()
217 Len = MIN (Win, Left); in TcpDataToSend()
223 if ((Force != 0)|| (Len == 0 && Left == 0)) { in TcpDataToSend()
227 if (Len == 0 && Left != 0) { in TcpDataToSend()
244 if ((Len == Left) && in TcpDataToSend()
DTcpInput.c288 IN TCP_SEQNO Left, in TcpTrimSegment() argument
302 if (TCP_SEQ_LEQ (Seg->End, Left) || TCP_SEQ_LEQ (Right, Seg->Seq)) { in TcpTrimSegment()
315 if (TCP_SEQ_LT (Seg->Seq, Left)) { in TcpTrimSegment()
317 Drop = TCP_SUB_SEQ (Left, Seg->Seq); in TcpTrimSegment()
319 Seg->Seq = Left; in TcpTrimSegment()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
DTcp4Output.c189 UINT32 Left; in TcpDataToSend() local
220 Left = GET_SND_DATASIZE (Sk) + in TcpDataToSend()
223 Len = MIN (Win, Left); in TcpDataToSend()
229 if ((Force != 0)|| (Len == 0 && Left == 0)) { in TcpDataToSend()
233 if (Len == 0 && Left != 0) { in TcpDataToSend()
250 if ((Len == Left) && in TcpDataToSend()
DTcp4Input.c264 IN TCP_SEQNO Left, in TcpTrimSegment() argument
278 if (TCP_SEQ_LEQ (Seg->End, Left) || TCP_SEQ_LEQ (Right, Seg->Seq)) { in TcpTrimSegment()
291 if (TCP_SEQ_LT (Seg->Seq, Left)) { in TcpTrimSegment()
293 Drop = TCP_SUB_SEQ (Left, Seg->Seq); in TcpTrimSegment()
295 Seg->Seq = Left; in TcpTrimSegment()
/device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
DBmBoot.c1072 IN EFI_DEVICE_PATH_PROTOCOL *Left, in BmMatchHttpBootDevicePath() argument
1076 for (; !IsDevicePathEnd (Left) && !IsDevicePathEnd (Right) in BmMatchHttpBootDevicePath()
1077 ; Left = NextDevicePathNode (Left), Right = NextDevicePathNode (Right) in BmMatchHttpBootDevicePath()
1079 if (CompareMem (Left, Right, DevicePathNodeLength (Left)) != 0) { in BmMatchHttpBootDevicePath()
1080 …if ((DevicePathType (Left) != MESSAGING_DEVICE_PATH) || (DevicePathType (Right) != MESSAGING_DEVIC… in BmMatchHttpBootDevicePath()
1084 … if (((DevicePathSubType (Left) != MSG_IPv4_DP) || (DevicePathSubType (Right) != MSG_IPv4_DP)) && in BmMatchHttpBootDevicePath()
1085 … ((DevicePathSubType (Left) != MSG_IPv6_DP) || (DevicePathSubType (Right) != MSG_IPv6_DP)) && in BmMatchHttpBootDevicePath()
1086 ((DevicePathSubType (Left) != MSG_URI_DP) || (DevicePathSubType (Right) != MSG_URI_DP)) in BmMatchHttpBootDevicePath()
1092 return (BOOLEAN) (IsDevicePathEnd (Left) && IsDevicePathEnd (Right)); in BmMatchHttpBootDevicePath()
/device/linaro/bootloader/edk2/Nt32Pkg/Library/PlatformBootManagerLib/
DPlatformBootManager.c156 CONST EFI_BOOT_MANAGER_LOAD_OPTION *Left, in CompareBootOption() argument
160 return BootOptionPriority (Left) - BootOptionPriority (Right); in CompareBootOption()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SmbiosMeasurementDxe/
DSmbiosMeasurementDxe.c152 UINTN Left; in InternalDumpHex() local
157 Left = Size % COLUME_SIZE; in InternalDumpHex()
164 if (Left != 0) { in InternalDumpHex()
166 InternalDumpData (Data + Index * COLUME_SIZE, Left); in InternalDumpHex()
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
DBufferImage.c2184 UINTN Left; in HBufferImageBufferToList() local
2189 Left = 0; in HBufferImageBufferToList()
2197 Left = 0x10; in HBufferImageBufferToList()
2199 Left = Bytes - TempI; in HBufferImageBufferToList()
2210 Line->Size = Left; in HBufferImageBufferToList()
2212 for (TempJ = 0; TempJ < Left; TempJ++) { in HBufferImageBufferToList()
2222 if (Left == 0x10 || Bytes == 0) { in HBufferImageBufferToList()
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEEDxe/
DTrEEDxe.c237 UINTN Left; in InternalDumpHex() local
242 Left = Size % COLUME_SIZE; in InternalDumpHex()
249 if (Left != 0) { in InternalDumpHex()
251 InternalDumpData (Data + Index * COLUME_SIZE, Left); in InternalDumpHex()
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Dxe/
DTcg2Dxe.c185 UINTN Left; in InternalDumpHex() local
190 Left = Size % COLUME_SIZE; in InternalDumpHex()
197 if (Left != 0) { in InternalDumpHex()
199 InternalDumpData (Data + Index * COLUME_SIZE, Left); in InternalDumpHex()
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
DFileBuffer.c2663 BOOLEAN Left; in FileBufferMovePosition() local
2710 Left = LeftCurrentScreen (NewFilePosCol); in FileBufferMovePosition()
2722 if (Left) { in FileBufferMovePosition()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
DVfrSyntax.g208 #token Left("left") "left"
2046 Left << BObj.SetAlign (0); >>

12