Searched refs:Datum (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Main/
H A DHtoNtoH.c26 @param[in] Datum The 32-bit value to be converted.
27 @return Datum, converted to network byte order.
31 IN uint32_t Datum
35 return SwapBytes32(Datum);
37 return Datum;
43 @param[in] Datum The 16-bit value to be converted.
44 @return Datum, converted to network byte order.
48 IN uint16_t Datum
52 return SwapBytes16(Datum);
54 return Datum;
[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, (UINT
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...]

Completed in 846 milliseconds