Searched refs:Prefix (Results 1 - 14 of 14) sorted by relevance

/vbox/include/VBox/vmm/
H A Dstam.h675 * @param Prefix Identifier prefix used to internal variables.
680 # define STAM_REL_PROFILE_START(pProfile, Prefix) \
681 uint64_t Prefix##_tsStart; \
682 STAM_GET_TS(Prefix##_tsStart)
684 # define STAM_REL_PROFILE_START(pProfile, Prefix) do { } while (0)
690 * @param Prefix Identifier prefix used to internal variables.
695 # define STAM_PROFILE_START(pProfile, Prefix) STAM_REL_PROFILE_START(pProfile, Prefix)
697 # define STAM_PROFILE_START(pProfile, Prefix) do { } while (0)
704 * @param Prefix Identifie
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Icmp.c455 Retrieve the Prefix address according to the PrefixLength by clear the useless
459 @param[in, out] Prefix On input, points to the original prefix address
467 IN OUT EFI_IPv6_ADDRESS *Prefix
475 ASSERT ((Prefix != NULL) && (PrefixLength < IP6_PREFIX_NUM));
478 ZeroMem (Prefix, sizeof (EFI_IPv6_ADDRESS));
488 Value = Prefix->Addr[Byte];
491 ZeroMem (Prefix->Addr + Byte, 16 - Byte);
496 Prefix->Addr[Byte] = (UINT8) (Value & Mask);
518 EFI_IPv6_ADDRESS Prefix; local
521 ZeroMem (&Prefix, sizeo
[all...]
H A DIp6Nd.h86 EFI_IPv6_ADDRESS Prefix; member in struct:_IP6_PREFIX_INFO_OPTION
151 EFI_IPv6_ADDRESS Prefix; member in struct:_IP6_PREFIX_LIST_ENTRY
321 @param[in] PrefixLength The prefix length of the Prefix.
322 @param[in] Prefix The prefix address.
335 IN EFI_IPv6_ADDRESS *Prefix
364 @param[in] PrefixLength The prefix length of the Prefix
365 @param[in] Prefix The prefix address.
376 IN EFI_IPv6_ADDRESS *Prefix
H A DIp6Output.c171 IP6_PREFIX_LIST_ENTRY *Prefix; local
234 Prefix = NET_LIST_USER_STRUCT (Entry, IP6_PREFIX_LIST_ENTRY, Link);
235 if (Prefix->PreferredLifetime == 0) {
236 Ip6RemoveAddr (NULL, &SourceList, &SourceCount, &Prefix->Prefix, Prefix->PrefixLength);
355 Prefix an IP6 basic head and unfragmentable extension headers and a fragment header
689 // For unicast packets, use a combination of the Destination Cache, the Prefix List
H A DIp6Common.c383 a Multicast Listener Done. If Prefix is NULL, all address in the address list
384 will be removed. If Prefix is not NULL, the address that matching the Prefix
390 @param[in] Prefix NULL or an IPv6 address prefix.
391 @param[in] PrefixLength The length of Prefix.
394 @retval EFI_NOT_FOUND The address matching the Prefix with PrefixLength
404 IN EFI_IPv6_ADDRESS *Prefix OPTIONAL,
423 if (Prefix == NULL ||
424 (PrefixLength == 128 && EFI_IP6_EQUAL (Prefix, &AddrInfo->Address)) ||
425 (PrefixLength == AddrInfo->PrefixLength && NetIp6IsNetEqual (Prefix,
[all...]
H A DIp6Common.h252 a Multicast Listener Done. If Prefix is NULL, all address in the address list
253 will be removed. If Prefix is not NULL, the address that matching the Prefix
259 @param[in] Prefix NULL or an IPv6 address prefix
260 @param[in] PrefixLength the length of Prefix
263 @retval EFI_NOT_FOUND The address matching the Prefix with PrefixLength
273 IN EFI_IPv6_ADDRESS *Prefix OPTIONAL,
H A DIp6Nd.c155 IP6_COPY_ADDRESS (&EfiPrefix->Address, &PrefixList->Prefix);
178 @param[in] PrefixLength The prefix length of the Prefix.
179 @param[in] Prefix The prefix address.
192 IN EFI_IPv6_ADDRESS *Prefix
201 if (Prefix == NULL || PreferredLifetime > ValidLifetime || PrefixLength >= IP6_PREFIX_NUM) {
211 Prefix
227 IP6_COPY_ADDRESS (&PrefixEntry->Prefix, Prefix);
235 RtEntry = Ip6CreateRouteEntry (Prefix, PrefixLength, NULL);
298 &PrefixEntry->Prefix,
[all...]
H A DIp6If.c138 if (NetIp6IsNetEqual (&PrefixEntry->Prefix, &AddressInfo->Address, PrefixEntry->PrefixLength)) {
153 if (NetIp6IsNetEqual (&PrefixEntry->Prefix, &AddressInfo->Address, PrefixEntry->PrefixLength)) {
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePrintLib/
H A DPrintLibInternal.c328 CHAR8 Prefix; local
415 Prefix = 0;
553 Prefix = ' ';
556 Prefix = '+';
569 Prefix = '-';
603 if (Prefix != 0) {
852 if (Prefix != 0) {
855 Buffer = BasePrintLibFillBuffer (Buffer, EndBuffer, 1, Prefix, BytesPerOutputCharacter);
867 if (Prefix != 0) {
870 Buffer = BasePrintLibFillBuffer (Buffer, EndBuffer, 1, Prefix, BytesPerOutputCharacte
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxePrintLibPrint2Protocol/
H A DPrintLib.c1171 CHAR8 Prefix; local
1245 Prefix = 0;
1383 Prefix = ' ';
1386 Prefix = '+';
1399 Prefix = '-';
1433 if (Prefix != 0) {
1679 if (Prefix != 0) {
1685 if (Prefix != 0) {
1691 // Output the Prefix character if it is present
1694 if (Prefix !
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IfConfig6/
H A DIfConfig6.c283 @param[in] PrefixLen The pointer of PrefixLen that describes the size Prefix.
365 UINT8 Prefix; local
379 Status = NetLibStrToIp6andPrefix (VarArg->Arg, &Address, &Prefix);
408 Status = NetLibStrToIp6andPrefix (VarArg->Arg, &Address, &Prefix);
418 if (Prefix == 0xFF) {
419 Prefix = 0;
422 AddrBuf[AddrCnt].PrefixLength = Prefix;
467 UINT8 Prefix; local
481 Status = NetLibStrToIp6andPrefix (VarArg->Arg, &Address, &Prefix);
510 Status = NetLibStrToIp6andPrefix (VarArg->Arg, &Address, &Prefix);
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Dlibxml2.spec11 Prefix: %{_prefix}
/vbox/src/VBox/HostDrivers/VBoxNetFlt/win/cfg/
H A DVBoxNetCfg.cpp1934 ULONG Prefix; member in struct:_IPPROBE_CONTEXT
1940 (_pContext)->Prefix = _addr)
1949 if ((ip & mask) == (pProbe->Prefix & mask))
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxb-xjc.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...

Completed in 94 milliseconds