Searched refs:CastType (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4Dxe/
H A DIp4Common.h66 #define IP4_IS_BROADCAST(CastType) ((CastType) >= IP4_LOCAL_BROADCAST)
H A DIp4Input.h31 /// The CastType is the IP layer cast type, such as IP multicast or unicast.
40 INTN CastType; member in struct:__anon11224
H A DIp4Input.c754 Info->CastType = Ip4GetHostCast (IpSb, Head->Dst, Head->Src);
761 // The packet is destinated to us if the CastType is non-zero.
763 if ((Info->CastType == 0) || (Info->End > IP4_MAX_PACKET_SIZE)) {
1027 if (IP4_IS_BROADCAST (Info->CastType)) {
1034 if (Info->CastType == IP4_MULTICAST) {
1359 if ((Info->CastType == IP4_MULTICAST) || (Info->CastType == IP4_LOCAL_BROADCAST)) {
1361 // If the CastType is multicast, don't need to filter against
1365 LocalType = Info->CastType;
1396 SavedType = Info->CastType;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Input.h46 // The CastType is the IP layer cast type, such as IP multicast or unicast.
55 INT32 CastType; member in struct:__anon12498
H A DIp6Input.c810 Info->CastType = 0;
813 Info->CastType = Ip6Promiscuous;
817 Info->CastType = Ip6Unicast;
820 Info->CastType = Ip6Multicast;
827 if (Info->CastType == 0) {
1384 if (Info->CastType == Ip6Multicast) {
1594 LocalType = Info->CastType;
1603 SavedType = Info->CastType;
1604 Info->CastType = (UINT32) LocalType;
1617 Info->CastType
[all...]
/vbox/include/iprt/
H A Dcdefs.h1501 * @param CastType The type to cast the result to.
1503 #define RT_ALIGN_PT(u, uAlignment, CastType) ( (CastType)RT_ALIGN_T(u, uAlignment, uintptr_t) )
1509 * @param CastType The type to cast the result to.
1511 #define RT_ALIGN_R3PT(u, uAlignment, CastType) ( (CastType)RT_ALIGN_T(u, uAlignment, RTR3UINTPTR) )
1517 * @param CastType The type to cast the result to.
1519 #define RT_ALIGN_R0PT(u, uAlignment, CastType) ( (CastType)RT_ALIGN_T(u, uAlignment, RTR0UINTPTR) )
1525 * @param CastType Th
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrSyntax.g3155 << UINT8 CastType = 0xFF; >>
3159 Boolean << CastType = 0; >>
3160 | Uint64 << CastType = 1; >>
3161 | Uint32 << CastType = 1; >>
3162 | Uint16 << CastType = 1; >>
3163 | Uint8 << CastType = 1; >>
3169 switch (CastType) {

Completed in 66 milliseconds