Searched refs:Left (Results 1 - 22 of 22) sorted by relevance

/device/linaro/bootloader/edk2/MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/
H A DBaseOrderedCollectionRedBlackTreeLib.c53 RED_BLACK_TREE_NODE *Left; member in struct:ORDERED_COLLECTION_ENTRY
218 Node = (Result < 0) ? Node->Left : Node->Right;
249 while (Node->Left != NULL) {
250 Node = Node->Left;
321 while (Walk->Left != NULL) {
322 Walk = Walk->Left;
372 Walk = Node->Left;
386 while (Walk != NULL && Child == Walk->Left) {
415 Pivot->Left is not NULL.
437 LeftChild = Pivot->Left;
[all...]
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/QemuFwCfgLib/
H A DQemuFwCfgLib.c212 UINTN Left; local
217 Left = Size & 7;
219 Left = Size & 3;
222 Size -= Left;
231 if (Left & 4) {
242 if (Left & 2) {
246 if (Left & 1) {
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/PlatformBootManagerLib/
H A DQemuKernel.c397 UINT64 Left; local
435 Left = Blob->Size - StubFile->Position;
436 if (*BufferSize > Left) {
437 *BufferSize = (UINTN)Left;
859 UINT32 Left; local
884 Left = Blob->Size;
888 Chunk = (Left < SIZE_1MB) ? Left : SIZE_1MB;
889 QemuFwCfgReadBytes (Chunk, Blob->Data + (Blob->Size - Left));
890 Left
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/ConPlatformDxe/
H A DConPlatform.c778 @param Left A pointer to a device path data structure.
781 @retval TRUE Left and Right share the same parent.
782 @retval FALSE Left and Right don't share the same parent or either of them is not
787 IN EFI_DEVICE_PATH_PROTOCOL *Left,
794 for (NodeLeft = Left; !IsDevicePathEndType (NodeLeft); NodeLeft = NextDevicePathNode (NodeLeft)) {
818 if (((UINTN) NodeLeft - (UINTN) Left) != ((UINTN) NodeRight - (UINTN) Right)) {
822 return (BOOLEAN) (CompareMem (Left, Right, (UINTN) NodeLeft - (UINTN) Left) == 0);
786 IsGopSibling( IN EFI_DEVICE_PATH_PROTOCOL *Left, IN EFI_DEVICE_PATH_PROTOCOL *Right ) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeNetLib/
H A DNetBuffer.c1244 UINT32 Left; local
1289 Left = BlockOp[Index].Size - Skip;
1291 if (Len <= Left) {
1296 CopyMem (Dest, BlockOp[Index].Head + Skip, Left);
1298 Dest += Left;
1299 Len -= Left;
1300 Copied = Left;
1483 UINT32 Left; local
1520 Left = Nbuf->TotalSize - Skip;
1522 if (Len < Left) {
[all...]
/device/google/cuttlefish_common/host/frontend/vnc_server/
H A Dkeysyms.h28 PageDown = 0xff56, Left = 0xff51, Up = 0xff52, member in namespace:cvd::xk
H A Dvnc_client_connection.cpp582 case cvd::xk::Left:
/device/linaro/bootloader/edk2/Nt32Pkg/Library/PlatformBootManagerLib/
H A DPlatformBootManager.c156 CONST EFI_BOOT_MANAGER_LOAD_OPTION *Left,
160 return BootOptionPriority (Left) - BootOptionPriority (Right);
155 CompareBootOption( CONST EFI_BOOT_MANAGER_LOAD_OPTION *Left, CONST EFI_BOOT_MANAGER_LOAD_OPTION *Right ) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
H A DDhcp4Option.c125 INTN Left; local
129 Left = 0;
132 while (Right >= Left) {
133 Middle = (Left + Right) / 2;
142 Left = Middle + 1;
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SmbiosMeasurementDxe/
H A DSmbiosMeasurementDxe.c152 UINTN Left; local
157 Left = Size % COLUME_SIZE;
164 if (Left != 0) {
166 InternalDumpData (Data + Index * COLUME_SIZE, Left);
/device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
H A DBmBoot.c1064 Check whether Left and Right are the same without matching the specific
1067 @retval TRUE Left and Right are the same.
1068 @retval FALSE Left and Right are the different.
1072 IN EFI_DEVICE_PATH_PROTOCOL *Left,
1076 for (; !IsDevicePathEnd (Left) && !IsDevicePathEnd (Right)
1077 ; Left = NextDevicePathNode (Left), Right = NextDevicePathNode (Right)
1079 if (CompareMem (Left, Right, DevicePathNodeLength (Left)) != 0) {
1080 if ((DevicePathType (Left) !
1071 BmMatchHttpBootDevicePath( IN EFI_DEVICE_PATH_PROTOCOL *Left, IN EFI_DEVICE_PATH_PROTOCOL *Right ) argument
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Output.c189 UINT32 Left; local
220 Left = GET_SND_DATASIZE (Sk) +
223 Len = MIN (Win, Left);
229 if ((Force != 0)|| (Len == 0 && Left == 0)) {
233 if (Len == 0 && Left != 0) {
250 if ((Len == Left) &&
H A DTcp4Input.c254 Trim the data, SYN and FIN to fit into the window defined by Left and Right.
257 @param Left The sequence number of the window's left edge.
264 IN TCP_SEQNO Left,
278 if (TCP_SEQ_LEQ (Seg->End, Left) || TCP_SEQ_LEQ (Right, Seg->Seq)) {
291 if (TCP_SEQ_LT (Seg->Seq, Left)) {
293 Drop = TCP_SUB_SEQ (Left, Seg->Seq);
295 Seg->Seq = Left;
262 TcpTrimSegment( IN NET_BUF *Nbuf, IN TCP_SEQNO Left, IN TCP_SEQNO Right ) argument
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
H A DTcpOutput.c184 UINT32 Left; local
215 Left = GET_SND_DATASIZE (Sk) + TCP_SUB_SEQ (TcpGetMaxSndNxt (Tcb), Tcb->SndNxt);
217 Len = MIN (Win, Left);
223 if ((Force != 0)|| (Len == 0 && Left == 0)) {
227 if (Len == 0 && Left != 0) {
244 if ((Len == Left) &&
H A DTcpInput.c278 Trim the data; SYN and FIN to fit into the window defined by Left and Right.
281 @param[in] Left The sequence number of the window's left edge.
288 IN TCP_SEQNO Left,
302 if (TCP_SEQ_LEQ (Seg->End, Left) || TCP_SEQ_LEQ (Right, Seg->Seq)) {
315 if (TCP_SEQ_LT (Seg->Seq, Left)) {
317 Drop = TCP_SUB_SEQ (Left, Seg->Seq);
319 Seg->Seq = Left;
286 TcpTrimSegment( IN NET_BUF *Nbuf, IN TCP_SEQNO Left, IN TCP_SEQNO Right ) argument
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
H A DBufferImage.c2184 UINTN Left; local
2189 Left = 0;
2197 Left = 0x10;
2199 Left = Bytes - TempI;
2210 Line->Size = Left;
2212 for (TempJ = 0; TempJ < Left; TempJ++) {
2222 if (Left == 0x10 || Bytes == 0) {
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEEDxe/
H A DTrEEDxe.c237 UINTN Left; local
242 Left = Size % COLUME_SIZE;
249 if (Left != 0) {
251 InternalDumpData (Data + Index * COLUME_SIZE, Left);
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Dxe/
H A DTcg2Dxe.c185 UINTN Left; local
190 Left = Size % COLUME_SIZE;
197 if (Left != 0) {
199 InternalDumpData (Data + Index * COLUME_SIZE, Left);
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
H A DFileBuffer.c2663 BOOLEAN Left; local
2710 Left = LeftCurrentScreen (NewFilePosCol);
2722 if (Left) {
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VfrCompile/
H A DVfrCompile.g810 #token Left("left") "left"
1719 ( Left << WriteByte (EFI_IFR_BANNER_ALIGN_LEFT, 0); >>
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
H A DVfrSyntax.g208 #token Left("left") "left"
2046 Left << BObj.SetAlign (0); >>
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
H A DVfrSyntax.g210 #token Left("left") "left"
3571 Left << BObj.SetAlign (0); >>

Completed in 260 milliseconds