HomeSort by relevance Sort by last modified time
    Searched refs:PrefixLength (Results 1 - 25 of 57) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Route.h 34 UINT8 PrefixLength;
181 Allocate a route entry then initialize it with the Destination/PrefixLength
186 @param[in] PrefixLength The destination network's prefix length.
196 IN UINT8 PrefixLength,
242 @param[in] PrefixLength The PrefixLength of the destination.
254 IN UINT8 PrefixLength,
264 @param[in] PrefixLength The PrefixLength of the Destination.
276 IN UINT8 PrefixLength,
    [all...]
Ip6Route.c 44 Allocate a route entry then initialize it with the Destination/PrefixLength
49 @param[in] PrefixLength The destination network's prefix length.
59 IN UINT8 PrefixLength,
73 RtEntry->PrefixLength = PrefixLength;
143 if (NetIp6IsNetEqual (Destination, &RtEntry->Destination, RtEntry->PrefixLength)) {
148 if (NetIp6IsNetEqual (NextHop, &RtEntry->NextHop, RtEntry->PrefixLength)) {
311 RtEntry->PrefixLength
315 EfiTable[Count].PrefixLength = RtEntry->PrefixLength;
    [all...]
Ip6Common.c 72 EfiAddrInfo->PrefixLength = IP6_LINK_LOCAL_PREFIX_LENGTH;
81 EfiAddrInfo->PrefixLength = AddrInfo->PrefixLength;
402 with PrefixLength in the address list will be removed.
408 @param[in] PrefixLength The length of Prefix.
411 @retval EFI_NOT_FOUND The address matching the Prefix with PrefixLength
422 IN UINT8 PrefixLength
431 if (IsListEmpty (AddressList) || *AddressCount < 1 || PrefixLength > IP6_PREFIX_NUM) {
441 (PrefixLength == 128 && EFI_IP6_EQUAL (Prefix, &AddrInfo->Address)) ||
442 (PrefixLength == AddrInfo->PrefixLength && NetIp6IsNetEqual (Prefix, &AddrInfo->Address, PrefixLength))
    [all...]
Ip6If.c 66 @param[in] PrefixLength The prefix length of the Ip6Addr.
85 IN UINT8 PrefixLength,
126 AddressInfo->PrefixLength = PrefixLength;
130 if (AddressInfo->PrefixLength == 0) {
132 // Find an appropriate prefix from on-link prefixes and update the prefixlength.
138 if (NetIp6IsNetEqual (&PrefixEntry->Prefix, &AddressInfo->Address, PrefixEntry->PrefixLength)) {
139 AddressInfo->PrefixLength = PrefixEntry->PrefixLength;
145 if (AddressInfo->PrefixLength == 0) {
    [all...]
Ip6Common.h 223 Copy the PrefixLength bits from Src to Dest.
227 @param[in] PrefixLength The number of bits to copy.
234 IN UINT8 PrefixLength
259 with PrefixLength in the address list will be removed.
265 @param[in] PrefixLength the length of Prefix
268 @retval EFI_NOT_FOUND The address matching the Prefix with PrefixLength
279 IN UINT8 PrefixLength
Ip6Icmp.c 455 Retrieve the Prefix address according to the PrefixLength by clear the useless
458 @param[in] PrefixLength The prefix length of the prefix.
466 IN UINT8 PrefixLength,
475 ASSERT ((Prefix != NULL) && (PrefixLength < IP6_PREFIX_NUM));
477 if (PrefixLength == 0) {
482 if (PrefixLength == IP6_PREFIX_NUM - 1) {
486 Byte = (UINT8) (PrefixLength / 8);
487 Bit = (UINT8) (PrefixLength % 8);
533 Ip6GetPrefix (PrefixEntry->PrefixLength, &Prefix);
Ip6Nd.h 81 UINT8 PrefixLength;
150 UINT8 PrefixLength;
321 @param[in] PrefixLength The prefix length of the Prefix.
334 IN UINT8 PrefixLength,
364 @param[in] PrefixLength The prefix length of the Prefix
375 IN UINT8 PrefixLength,
670 @param[in] PrefixLength The prefix length of the Ip6Addr.
689 IN UINT8 PrefixLength,
Ip6Nd.c 156 EfiPrefix->PrefixLength = PrefixList->PrefixLength;
178 @param[in] PrefixLength The prefix length of the Prefix.
191 IN UINT8 PrefixLength,
201 if (Prefix == NULL || PreferredLifetime > ValidLifetime || PrefixLength >= IP6_PREFIX_NUM) {
210 PrefixLength,
226 PrefixEntry->PrefixLength = PrefixLength;
235 RtEntry = Ip6CreateRouteEntry (Prefix, PrefixLength, NULL);
242 InsertHeadList (&IpSb->RouteTable->RouteArea[PrefixLength], &RtEntry->Link);
    [all...]
Ip6If.h 86 UINT8 PrefixLength;
Ip6ConfigNv.c 456 UINT8 PrefixLength;
509 PrefixLength = ((EFI_IP6_ADDRESS_INFO *) AddressInfo)->PrefixLength;
511 PrefixLength = ((EFI_IP6_ROUTE_TABLE *) AddressInfo)->PrefixLength;
519 Number = UnicodeSPrint (TempStr, 6, L"%d", PrefixLength);
630 Status = NetLibStrToIp6andPrefix (TempStr, &AddressInfo.Address, &AddressInfo.PrefixLength);
635 if (AddressInfo.PrefixLength == 0xFF) {
636 AddressInfo.PrefixLength = 0;
850 ManualAddress->PrefixLength = Node->AddrInfo.PrefixLength;
    [all...]
Ip6Impl.c 417 IpInstance->PrefixLength = AddressInfo->PrefixLength;
419 IpInstance->PrefixLength = IP6_LINK_LOCAL_PREFIX_LENGTH;
792 Routes are determined by comparing the leftmost PrefixLength bits of Destination with
804 PrefixLength and Gateway are used as the key to each
808 @param[in] PrefixLength The prefix length of Destination. Ignored if Destination
836 IN UINT8 PrefixLength,
845 if ((This == NULL) || (PrefixLength >= IP6_PREFIX_NUM)) {
874 !NetIp6IsNetEqual (GatewayAddress, &IpInstance->ConfigData.StationAddress, PrefixLength)
886 Status = Ip6DelRoute (IpSb->RouteTable, Destination, PrefixLength, GatewayAddress);
    [all...]
Ip6Impl.h 144 UINT8 PrefixLength; // PrefixLength of the configured station address.
473 Routes are determined by comparing the leftmost PrefixLength bits of Destination with
485 PrefixLength and Gateway are used as the key to each
489 @param[in] PrefixLength The prefix length of Destination. Ignored if Destination
517 IN UINT8 PrefixLength,
    [all...]
Ip6ConfigImpl.c 937 (NewAddress->PrefixLength > 128)
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/
Match.c 141 (Indexer->PadId.Id.IpAddress.PrefixLength == PadId->Id.IpAddress.PrefixLength) &&
Helper.c 187 Addr->PrefixLength = 0;
189 Addr->PrefixLength = 32;
194 Status = NetLibStrToIp6andPrefix (Ptr, &Addr->Address.v6, &Addr->PrefixLength);
195 if (!EFI_ERROR (Status) && (Addr->PrefixLength == 0xFF)) {
196 Addr->PrefixLength = 128;
Dump.c 33 if((AddressInfo->PrefixLength <= 32) && (AddressInfo->Address.Addr[1] == 0) &&
117 if (AddressInfo->PrefixLength != 32) {
118 Print (L"/%d", (UINTN) AddressInfo->PrefixLength);
134 if (AddressInfo->PrefixLength != 128) {
135 Print (L"/%d", AddressInfo->PrefixLength);
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Ip6.h 61 UINT8 PrefixLength;
229 UINT8 PrefixLength; ///< The length of the prefix associated with the Address.
250 UINT8 PrefixLength;
678 Routes are determined by comparing the leftmost PrefixLength bits of Destination with
690 PrefixLength and Gateway are used as the key to each
693 @param[in] PrefixLength The prefix length of Destination. Ignored if Destination
720 IN UINT8 PrefixLength,
    [all...]
Ip6Config.h 195 UINT8 PrefixLength; ///< The length, in bits, of the prefix associated with this Address.
  /external/clang/lib/Format/
BreakableToken.cpp 190 size_t PrefixLength = KnownPrefix.size();
191 while (PrefixLength < Comment.size() && Comment[PrefixLength] == ' ')
192 ++PrefixLength;
193 if (PrefixLength > LongestPrefix.size())
194 LongestPrefix = Comment.substr(0, PrefixLength);
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiMisc.h 50 UINT8 PrefixLength;
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IpSecImpl.c 33 @param[in] PrefixLength The PrefixeLength of this address.
43 IN UINT8 PrefixLength
53 if (PrefixLength == 0) {
59 if (AddrLen <= PrefixLength) {
63 Div = (UINT8) (PrefixLength / 8);
64 Mod = (UINT8) (PrefixLength % 8);
100 @param[in] PrefixLength The prefix length.
107 IN UINT8 PrefixLength,
116 if (PrefixLength == 0) {
120 Div = (UINT8) (PrefixLength / 8);
    [all...]
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.cpp 155 unsigned PrefixLength, ErrorCallbackType ErrorCallback) {
157 C.advance(PrefixLength);
163 unescapeQuotedString(String.drop_front(PrefixLength)));
172 .setStringValue(Range.upto(C).drop_front(PrefixLength));
251 unsigned PrefixLength = IsReference ? 4 : 3;
252 C.advance(PrefixLength); // Skip '%bb.' or 'bb.'
262 unsigned StringOffset = PrefixLength + Number.size(); // Drop '%bb.<id>'
388 return lexName(C, Token, MIToken::NamedGlobalValue, /*PrefixLength=*/1,
404 return lexName(C, Token, MIToken::ExternalSymbol, /*PrefixLength=*/1,
  /external/syslinux/efi32/include/efi/
efiip.h 226 UINT8 PrefixLength;
232 UINT8 PrefixLength;
349 IN UINT8 PrefixLength,
  /external/syslinux/efi64/include/efi/
efiip.h 226 UINT8 PrefixLength;
232 UINT8 PrefixLength;
349 IN UINT8 PrefixLength,
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efiip.h 226 UINT8 PrefixLength;
232 UINT8 PrefixLength;
349 IN UINT8 PrefixLength,

Completed in 506 milliseconds

1 2 3