Searched refs:Count (Results 1 - 25 of 492) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/
H A DARShiftU64.c21 This function shifts the 64-bit value Operand to the right by Count bits. The
22 high Count bits are set to bit 63 of Operand. The shifted value is returned.
24 If Count is greater than 63, then ASSERT().
27 @param Count The number of bits to shift right.
29 @return Operand >> Count
36 IN UINTN Count
39 ASSERT (Count < 64);
40 return InternalMathARShiftU64 (Operand, Count);
H A DLRotU64.c21 This function rotates the 64-bit value Operand to the left by Count bits. The
22 low Count bits are fill with the high Count bits of Operand. The rotated
25 If Count is greater than 63, then ASSERT().
28 @param Count The number of bits to rotate left.
30 @return Operand << Count
37 IN UINTN Count
40 ASSERT (Count < 64);
41 return InternalMathLRotU64 (Operand, Count);
H A DLShiftU64.c21 This function shifts the 64-bit value Operand to the left by Count bits. The
22 low Count bits are set to zero. The shifted value is returned.
24 If Count is greater than 63, then ASSERT().
27 @param Count The number of bits to shift left.
29 @return Operand << Count.
36 IN UINTN Count
39 ASSERT (Count < 64);
40 return InternalMathLShiftU64 (Operand, Count);
H A DRRotU64.c21 This function rotates the 64-bit value Operand to the right by Count bits.
22 The high Count bits are fill with the low Count bits of Operand. The rotated
25 If Count is greater than 63, then ASSERT().
28 @param Count The number of bits to rotate right.
30 @return Operand >> Count.
37 IN UINTN Count
40 ASSERT (Count < 64);
41 return InternalMathRRotU64 (Operand, Count);
H A DRShiftU64.c21 This function shifts the 64-bit value Operand to the right by Count bits. The
22 high Count bits are set to zero. The shifted value is returned.
24 If Count is greater than 63, then ASSERT().
27 @param Count The number of bits to shift right.
29 @return Operand >> Count.
36 IN UINTN Count
39 ASSERT (Count < 64);
40 return InternalMathRShiftU64 (Operand, Count);
H A DLRotU32.c21 This function rotates the 32-bit value Operand to the left by Count bits. The
22 low Count bits are fill with the high Count bits of Operand. The rotated
25 If Count is greater than 31, then ASSERT().
28 @param Count The number of bits to rotate left.
30 @return Operand << Count
37 IN UINTN Count
40 ASSERT (Count < 32);
41 return (Operand << Count) | (Operand >> (32 - Count));
[all...]
H A DRRotU32.c21 This function rotates the 32-bit value Operand to the right by Count bits.
22 The high Count bits are fill with the low Count bits of Operand. The rotated
25 If Count is greater than 31, then ASSERT().
28 @param Count The number of bits to rotate right.
30 @return Operand >> Count.
37 IN UINTN Count
40 ASSERT (Count < 32);
41 return (Operand >> Count) | (Operand << (32 - Count));
[all...]
H A DMath64.c22 This function shifts the 64-bit value Operand to the left by Count bits. The
23 low Count bits are set to zero. The shifted value is returned.
26 @param Count The number of bits to shift left.
28 @return Operand << Count.
35 IN UINTN Count
38 return Operand << Count;
45 This function shifts the 64-bit value Operand to the right by Count bits. The
46 high Count bits are set to zero. The shifted value is returned.
49 @param Count The number of bits to shift right.
51 @return Operand >> Count
[all...]
H A DCheckSum.c44 UINTN Count; local
49 for (Sum = 0, Count = 0; Count < Length; Count++) {
50 Sum = (UINT8) (Sum + *(Buffer + Count));
119 UINTN Count; local
128 for (Sum = 0, Count = 0; Count < Total; Count++) {
129 Sum = (UINT16) (Sum + *(Buffer + Count));
201 UINTN Count; local
283 UINTN Count; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DStringFuncs.c207 NewList->Count = 0;
236 NewList = AllocateStringListStruct (OldList->Count + 1);
250 sizeof (OldList->Strings[0]) * OldList->Count
252 NewList->Count = OldList->Count + 1;
253 NewList->Strings[OldList->Count] = NewString;
283 if (StringList->Count == 0) {
287 free (StringList->Strings[StringList->Count - 1]);
288 StringList->Count--;
336 while (StringList->Count >
365 UINTN Count; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
H A DMisc.h23 @param[in] Count The line number to advance/retreat.
32 IN INTN Count
38 @param[in] Count The line number to advance/retreat.
47 IN INTN Count
H A DMisc.c38 Advance to the next Count lines.
40 @param[in] Count The line number to advance.
47 IN UINTN Count
58 for (Index = 0; Index < Count; Index++) {
73 Retreat to the previous Count lines.
75 @param[in] Count The line number to retreat.
82 IN UINTN Count
93 for (Index = 0; Index < Count; Index++) {
110 @param[in] Count The line number to advance/retreat.
119 IN INTN Count
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/CRT/
H A DGcc.c22 // Shift Datum left by Count bits.
24 int __ashlsi3(int Datum, int Count) argument
27 return (int) LShiftU64 ((UINT64)Datum, (UINTN)Count);
30 long __ashldi3(long Datum, int Count) argument
33 return (long) LShiftU64 ((UINT64)Datum, (UINTN)Count);
36 long long __ashlti3(long long Datum, int Count) argument
39 return (long long) LShiftU64 ((UINT64)Datum, (UINTN)Count);
42 // Arithmetically shift Datum right by Count bits.
44 int __ashrsi3(int Datum, int Count) argument
47 return (int) ARShiftU64 ((UINT64) Datum, (UINTN)Count);
50 __ashrdi3(long Datum, int Count) argument
56 __ashrti3(long long Datum, int Count) argument
88 __lshrsi3(int Datum, int Count) argument
94 __lshrdi3(int Datum, int Count) argument
100 __lshrti3(int Datum, int Count) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Ia32/
H A DLRotU64.c22 This function rotates the 64-bit value Operand to the left by Count bits. The
23 low Count bits are fill with the high Count bits of Operand. The rotated
27 @param Count The number of bits to rotate left.
29 @return Operand <<< Count
36 IN UINTN Count
40 mov cl, byte ptr [Count]
47 test cl, 32 ; Count >= 32?
H A DARShiftU64.c22 This function shifts the 64-bit value Operand to the right by Count bits. The
23 high Count bits are set to bit 63 of Operand. The shifted value is returned.
26 @param Count The number of bits to shift right.
28 @return Operand arithmetically shifted right by Count.
35 IN UINTN Count
39 mov cl, byte ptr [Count]
H A DLShiftU64.c22 This function shifts the 64-bit value Operand to the left by Count bits. The
23 low Count bits are set to zero. The shifted value is returned.
26 @param Count The number of bits to shift left.
28 @return Operand << Count
35 IN UINTN Count
39 mov cl, byte ptr [Count]
42 test cl, 32 // Count >= 32?
H A DRShiftU64.c22 This function shifts the 64-bit value Operand to the right by Count bits. The
23 high Count bits are set to zero. The shifted value is returned.
26 @param Count The number of bits to shift right.
28 @return Operand >> Count
35 IN UINTN Count
39 mov cl, byte ptr [Count]
H A DRRotU64.c22 This function rotates the 64-bit value Operand to the right by Count bits.
23 The high Count bits are fill with the low Count bits of Operand. The rotated
27 @param Count The number of bits to rotate right.
29 @return Operand >>> Count
36 IN UINTN Count
40 mov cl, byte ptr [Count]
47 test cl, 32 // Count >= 32?
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/CpuIoDxe/
H A DCpuIo.c84 @param[in] Count The number of I/O operations to perform. The number of
85 bytes moved is Width size * Count, starting at Address.
94 and Count is not valid for this PI system.
102 IN UINTN Count,
125 // so treat Count as 1
128 Count = 1;
149 // Address + Size * Count. If the following condition is met, then the transfer
152 // Address + Size * Count > (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS) + 1
154 // Since MAX_ADDRESS can be the maximum integer value supported by the CPU and Count
162 if (Count
98 CpuIoCheckParameter( IN BOOLEAN MmioOperation, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
228 CpuMemoryServiceRead( IN EFI_CPU_IO_PROTOCOL *This, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument
308 CpuMemoryServiceWrite( IN EFI_CPU_IO_PROTOCOL *This, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
388 CpuIoServiceRead( IN EFI_CPU_IO_PROTOCOL *This, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument
467 CpuIoServiceWrite( IN EFI_CPU_IO_PROTOCOL *This, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
[all...]
H A DCpuIo.h41 each of the Count operations that is performed.
45 incremented for each of the Count operations that is performed. The read or
46 write operation is performed Count times on the same Address.
50 incremented for each of the Count operations that is performed. The read or
51 write operation is performed Count times from the first element of Buffer.
56 @param[in] Count The number of I/O operations to perform. The number of
57 bytes moved is Width size * Count, starting at Address.
66 and Count is not valid for this PI system.
75 IN UINTN Count,
90 each of the Count operation
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuIo2Dxe/
H A DCpuIo2Dxe.c84 @param[in] Count The number of I/O operations to perform. The number of
85 bytes moved is Width size * Count, starting at Address.
94 and Count is not valid for this PI system.
102 IN UINTN Count,
125 // so treat Count as 1
128 Count = 1;
149 // Address + Size * Count. If the following condition is met, then the transfer
152 // Address + Size * Count > (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS) + 1
154 // Since MAX_ADDRESS can be the maximum integer value supported by the CPU and Count
162 if (Count
98 CpuIoCheckParameter( IN BOOLEAN MmioOperation, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
228 CpuMemoryServiceRead( IN EFI_CPU_IO2_PROTOCOL *This, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument
308 CpuMemoryServiceWrite( IN EFI_CPU_IO2_PROTOCOL *This, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
388 CpuIoServiceRead( IN EFI_CPU_IO2_PROTOCOL *This, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument
467 CpuIoServiceWrite( IN EFI_CPU_IO2_PROTOCOL *This, IN EFI_CPU_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/CpuIo2Smm/
H A DCpuIo2Smm.c53 @param[in] Count The number of I/O operations to perform.
60 @retval EFI_INVALID_PARAMETER Width or Count, or both, were invalid.
68 IN UINTN Count,
99 // Address + Size * Count. If the following condition is met, then the transfer
102 // Address + Size * Count > (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS) + 1
104 // Since MAX_ADDRESS can be the maximum integer value supported by the CPU and Count
112 if (Count == 0) {
118 if (MaxCount < (Count - 1)) {
121 if (Address > LShiftU64 (MaxCount - Count + 1, Width)) {
147 @param[in] Count Th
64 CpuIoCheckParameter( IN BOOLEAN MmioOperation, IN EFI_SMM_IO_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
161 CpuMemoryServiceRead( IN CONST EFI_SMM_CPU_IO2_PROTOCOL *This, IN EFI_SMM_IO_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument
221 CpuMemoryServiceWrite( IN CONST EFI_SMM_CPU_IO2_PROTOCOL *This, IN EFI_SMM_IO_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
281 CpuIoServiceRead( IN CONST EFI_SMM_CPU_IO2_PROTOCOL *This, IN EFI_SMM_IO_WIDTH Width, IN UINT64 Address, IN UINTN Count, OUT VOID *Buffer ) argument
340 CpuIoServiceWrite( IN CONST EFI_SMM_CPU_IO2_PROTOCOL *This, IN EFI_SMM_IO_WIDTH Width, IN UINT64 Address, IN UINTN Count, IN VOID *Buffer ) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/main/
H A Dfeedback.h39 if (CTX->Feedback.Count < CTX->Feedback.BufferSize) { \
40 CTX->Feedback.Buffer[CTX->Feedback.Count] = (GLfloat) (T); \
42 CTX->Feedback.Count++;
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/
H A DIsaIo.c89 @param[in] Count The number of memory operations to perform.
101 IN UINTN Count,
122 Count = 1;
132 if (Offset >= Item->StartRange && (Offset + Count * (UINT32)(1 << Width)) - 1 <= Item->EndRange) {
292 UINTN Count; local
301 Count = 0;
309 if ((Count > 0) && (LastIndex + 1 == Index)) {
311 IsaResource[Count - 1].EndRange ++;
315 IsaResource[Count].Type = EfiIsaAcpiResourceDma;
316 IsaResource[Count]
97 IsaIoVerifyAccess( IN ISA_IO_DEVICE *IsaIoDevice, IN ISA_ACCESS_TYPE Type, IN EFI_ISA_IO_PROTOCOL_WIDTH Width, IN UINTN Count, IN UINT32 Offset ) argument
525 IsaIoIoRead( IN EFI_ISA_IO_PROTOCOL *This, IN EFI_ISA_IO_PROTOCOL_WIDTH Width, IN UINT32 Offset, IN UINTN Count, OUT VOID *Buffer ) argument
587 IsaIoIoWrite( IN EFI_ISA_IO_PROTOCOL *This, IN EFI_ISA_IO_PROTOCOL_WIDTH Width, IN UINT32 Offset, IN UINTN Count, IN VOID *Buffer ) argument
837 IsaIoMemRead( IN EFI_ISA_IO_PROTOCOL *This, IN EFI_ISA_IO_PROTOCOL_WIDTH Width, IN UINT32 Offset, IN UINTN Count, OUT VOID *Buffer ) argument
906 IsaIoMemWrite( IN EFI_ISA_IO_PROTOCOL *This, IN EFI_ISA_IO_PROTOCOL_WIDTH Width, IN UINT32 Offset, IN UINTN Count, IN VOID *Buffer ) argument
1083 UINT16 Count; local
1321 UINT16 Count; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/BaseSortLib/
H A DBaseSortLib.c34 if Count is < 2 then perform no action.
39 @param[in] Count the number of elements in the buffer to sort
49 IN CONST UINTN Count,
63 if ( Count < 2
74 Pivot = ((UINT8*)BufferToSort+((Count-1)*ElementSize));
81 ; LoopCount < Count -1
121 if ((Count - NextSwapLocation - 1) >= 2) {
124 Count - NextSwapLocation - 1,
139 if Count is < 2 then perform no action.
144 @param[in] Count th
47 QuickSortWorker( IN OUT VOID *BufferToSort, IN CONST UINTN Count, IN CONST UINTN ElementSize, IN SORT_COMPARE CompareFunction, IN VOID *Buffer ) argument
151 PerformQuickSort( IN OUT VOID *BufferToSort, IN CONST UINTN Count, IN CONST UINTN ElementSize, IN SORT_COMPARE CompareFunction ) argument
[all...]

Completed in 1709 milliseconds

1234567891011>>