Searched defs:Point (Results 1 - 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
H A DIp4Option.c40 UINT32 Point; local
58 Point = Option[Cur + 2];
61 // SRR/RR options are formatted as |Type|Len|Point|Ip1|Ip2|...
67 if ((Point > Len + 1) || (Point % 4 != 0)) {
72 // The Point must point pass the last entry if the packet is received
77 ((Rcvd && (Point != Len + 1)) || (!Rcvd && (Point != 4)))) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dcollections.py296 >>> Point = namedtuple('Point', ['x', 'y'])
297 >>> Point.__doc__ # docstring for the new class
298 'Point(x, y)'
299 >>> p = Point(11, y=22) # instantiate with positional args or keywords
310 >>> Point(**d) # convert from a dictionary
311 Point(x=11, y=22)
313 Point(x=100, y=22)
700 Point = namedtuple('Point', ' variable in class:Counter
705 class Point(namedtuple('Point', 'x y')): class in class:Counter
716 class Point(namedtuple('Point', 'x y')): class in class:Counter
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dcollections.py240 >>> Point = namedtuple('Point', 'x y')
241 >>> Point.__doc__ # docstring for the new class
242 'Point(x, y)'
243 >>> p = Point(11, y=22) # instantiate with positional args or keywords
254 >>> Point(**d) # convert from a dictionary
255 Point(x=11, y=22)
257 Point(x=100, y=22)
637 Point = namedtuple('Point', ' variable in class:Counter
642 class Point(namedtuple('Point', 'x y')): class in class:Counter
653 class Point(namedtuple('Point', 'x y')): class in class:Counter
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
H A DUsbDesc.c672 UINT16 *Point; local
693 Point = Desc->String;
695 UsbDev->LangId[Index] = *Point;
696 Point++;
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/Pei/
H A DVariable.c467 VOID *Point; local
487 Point = (VOID *) GetVariableNamePtr (Variable, StoreInfo->AuthFlag);
488 if (CompareVariableName (StoreInfo, VariableName, Point, NameSizeOfVariable (VariableHeader, StoreInfo->AuthFlag))) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
H A Dmacsupport.py86 Point = OpaqueByValueType("Point", "PyMac_BuildPoint", "PyMac_GetPoint") variable
87 Point_ptr = OpaqueType("Point", "PyMac_BuildPoint", "PyMac_GetPoint")
/device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
H A DVariable.c2557 EFI_PHYSICAL_ADDRESS Point; local
2637 Point = VariableGlobal->NonVolatileVariableBase;;
2641 NextVariable = GetStartPointer (Point);
2645 Global->NonVolatileLastVariableOffset = NextVariable - Point;
2835 // Point to the starting address of the variables.
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/
H A DVariable.c131 @param Attributes Point to memory location to return the attributes of variable. If the point
134 @param Data Point to the content of the variable.
282 @param Volatile Point out the Variable is Volatile or Non-Volatile.
1287 VOID *Point; local
1313 Point = (VOID *) GetVariableNamePtr (PtrTrack->CurrPtr);
1316 if (CompareMem (VariableName, Point, NameSizeOfVariable (PtrTrack->CurrPtr)) == 0) {
3134 EFI_PHYSICAL_ADDRESS Point; local
3265 Point = mVariableModuleGlobal->VariableGlobal.NonVolatileVariableBase;
3269 NextVariable = GetStartPointer ((VARIABLE_STORE_HEADER *) (UINTN) Point);
3270 while (IsValidVariableHeader (NextVariable, GetEndPointer ((VARIABLE_STORE_HEADER *) (UINTN) Point))) {
[all...]

Completed in 97 milliseconds