HomeSort by relevance Sort by last modified time
    Searched defs:Ia (Results 1 - 7 of 7) sorted by null

  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Impl.c 94 ASSERT (Instance->IaCb.Ia != NULL);
99 if (Instance->IaCb.Ia->State != Dhcp6Init) {
194 ASSERT (Instance->IaCb.Ia != NULL);
199 if (Instance->IaCb.Ia->State == Dhcp6Init ||
200 Instance->IaCb.Ia->State == Dhcp6Selecting ||
201 Instance->IaCb.Ia->State == Dhcp6Requesting
207 // Release the current ready Ia.
212 Status = Dhcp6SendReleaseMsg (Instance, Instance->IaCb.Ia);
231 // Clean up the session data for the released Ia.
265 EFI_DHCP6_IA *Ia;
    [all...]
Dhcp6Utility.c 304 if (ModeData->Ia != NULL) {
306 if (ModeData->Ia->ReplyPacket != NULL) {
307 FreePool (ModeData->Ia->ReplyPacket);
309 FreePool (ModeData->Ia);
382 @param[in] IaCb The pointer to the Ia control block.
394 ASSERT (IaCb->Ia->IaAddressCount > 0);
403 for (Index = 0; Index < IaCb->Ia->IaAddressCount; Index++) {
404 MinLt = MIN (MinLt, IaCb->Ia->IaAddress[Index].ValidLifetime);
405 MaxLt = MAX (MinLt, IaCb->Ia->IaAddress[Index].ValidLifetime);
420 Check whether the addresses are all included by the configured Ia.
    [all...]
Dhcp6Impl.h 72 // Control block for each IA.
75 EFI_DHCP6_IA *Ia;
241 of the configured IA will be transferred into Dhcp6Init.
243 configuration data will be cleaned up and no IA will be associated with
272 Ia addresses of the client.
327 of the configured IA and update other configuration parameters by sending
331 lifetimes for the IPv6 addresses of the configured IA and update other
333 - When RebindRequest is FALSE and the state of the configured IA is Dhcp6Bound,
335 state of the configured IA to Dhcp6Renewing. If valid Reply packet received,
338 - When RebindRequest is TRUE and the state of the configured IA is Dhcp6Bound,
    [all...]
Dhcp6Io.c 408 EFI_DHCP6_IA *Ia;
411 ASSERT(Instance->IaCb.Ia);
426 if (Instance->IaCb.Ia->ReplyPacket != NULL) {
427 FreePool (Instance->IaCb.Ia->ReplyPacket);
431 // Reinitialize the Ia fields of the instance.
447 Ia = Instance->IaCb.Ia;
448 Ia->State = Dhcp6Init;
449 Ia->ReplyPacket = NULL;
455 for (Index = 0; Index < Ia->IaAddressCount; Index++) {
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Dhcp6.h 52 /// configured IA are in use by another node, and the EFI DHCPv6.
58 /// configured IA, and the EFI DHCPv6 Protocol instance is waiting for Reply packet.
63 /// the configured IA, and the EFI DHCPv6 Protocol instance is waiting for Reply packet.
67 /// The DHCPv6 S.A.R.R process is completed for the configured IA.
72 /// the configured IA, and the EFI DHCPv6 Protocol instance is waiting for Reply packet.
77 /// the configured IA, and the EFI DHCPv6 Protocol instance is waiting for Reply packet.
138 /// An IA which carries assigned not temporary address.
142 /// An IA which carries assigned temporary address.
262 UINT16 Type; ///< Type for an IA.
263 UINT32 IaId; ///< The identifier for an IA.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6ConfigImpl.c     [all...]
  /external/opencv/cv/src/
cvinpaint.cpp 305 float Ia=0,Jx=0,Jy=0,s=1.0e-20f,w,dst,lev,dir,sat;
376 Ia += (float)w * (float)(CV_MAT_3COLOR_ELEM(*out,uchar,km,lm,color));
384 sat = (float)((Ia/s+(Jx+Jy)/(sqrt(Jx*Jx+Jy*Jy)+1.0e-20f)+0.5f));
418 float Ia=0,Jx=0,Jy=0,s=1.0e-20f,w,dst,lev,dir,sat;
489 Ia += (float)w * (float)(CV_MAT_ELEM(*out,uchar,km,lm));
497 sat = (float)((Ia/s+(Jx+Jy)/(sqrt(Jx*Jx+Jy*Jy)+1.0e-20f)+0.5f));
539 float Ia=0,s=1.0e-20f,w,dst,dir;
591 Ia += (float)w * (float)(CV_MAT_3COLOR_ELEM(*out,uchar,km,lm,color));
598 int out_val = cvRound((double)Ia/s);
630 float Ia=0,s=1.0e-20f,w,dst,dir
    [all...]

Completed in 290 milliseconds