/device/linaro/hikey/l-loader/ |
D | generate_ptable.sh | 53 …fakeroot ${SGDISK} -n 1:0:+1M -t 1:0700 -u 1:496847AB-56A1-4CD5-A1AD-47F4ACF055C9 -c 1:"vrl" ${TEM… 55 …fakeroot ${SGDISK} -n 2:0:+1M -t 2:0700 -u 2:61A36FC1-8EFB-4899-84D8-B61642EFA723 -c 2:"vrl_backup… 57 …fakeroot ${SGDISK} -n 3:0:+1M -t 3:0700 -u 3:65007411-962D-4781-9B2C-51DD7DF22CC3 -c 3:"mcuimage" … 59 …fakeroot ${SGDISK} -n 4:0:+8M -t 4:EF02 -u 4:496847AB-56A1-4CD5-A1AD-47F4ACF055C9 -c 4:"fastboot" … 61 …fakeroot ${SGDISK} -n 5:0:+2M -t 5:0700 -u 5:00354BCD-BBCB-4CB3-B5AE-CDEFCB5DAC43 -c 5:"nvme" ${TE… 63 …fakeroot ${SGDISK} -n 6:0:+64M -t 6:EF00 -u 6:5C0F213C-17E1-4149-88C8-8B50FB4EC70E -c 6:"boot" ${T… 65 …fakeroot ${SGDISK} -n 7:0:+256M -t 7:0700 -u 7:BED8EBDC-298E-4A7A-B1F1-2500D98453B7 -c 7:"vendor" … 67 …fakeroot ${SGDISK} -n 8:0:+256M -t 8:8301 -u 8:A092C620-D178-4CA7-B540-C4E26BD6D2E2 -c 8:"cache" $… 69 …fakeroot ${SGDISK} -n 9:0:+1536M -t 9:8300 -u 9:FC56E345-2E8E-49AE-B2F8-5B9D263FE377 -c 9:"system"… 77 …fakeroot ${SGDISK} -n 1:0:+1M -t 1:0700 -u 1:496847AB-56A1-4CD5-A1AD-47F4ACF055C9 -c 1:"vrl" ${TEM… [all …]
|
/device/linaro/bootloader/edk2/ |
D | Maintainers.txt | 14 M: Cc address for patches and questions (ie, the package maintainer) 51 M: Daryl McDaniel <edk2-lists@mc2research.org> 52 M: Jaben Carsey <jaben.carsey@intel.com> 56 M: Leif Lindholm <leif.lindholm@linaro.org> 57 M: Ard Biesheuvel <ard.biesheuvel@linaro.org> 61 M: Leif Lindholm <leif.lindholm@linaro.org> 62 M: Ard Biesheuvel <ard.biesheuvel@linaro.org> 66 M: Laszlo Ersek <lersek@redhat.com> 67 M: Ard Biesheuvel <ard.biesheuvel@linaro.org> 71 M: Yonghong Zhu <yonghong.zhu@intel.com> [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
D | InfClassObject.py | 448 M = self.Module 449 for Arch in M.Header.keys(): 451 print 'Filename =', M.Header[Arch].FileName 452 print 'FullPath =', M.Header[Arch].FullPath 453 print 'BaseName =', M.Header[Arch].Name 454 print 'Guid =', M.Header[Arch].Guid 455 print 'Version =', M.Header[Arch].Version 456 print 'InfVersion =', M.Header[Arch].InfVersion 457 print 'UefiSpecificationVersion =', M.Header[Arch].UefiSpecificationVersion 458 print 'EdkReleaseVersion =', M.Header[Arch].EdkReleaseVersion [all …]
|
D | DecClassObject.py | 518 M = self.Package 519 for Arch in M.Header.keys(): 521 print 'Filename =', M.Header[Arch].FileName 522 print 'FullPath =', M.Header[Arch].FullPath 523 print 'BaseName =', M.Header[Arch].Name 524 print 'Guid =', M.Header[Arch].Guid 525 print 'Version =', M.Header[Arch].Version 526 print 'DecSpecification =', M.Header[Arch].DecSpecification 527 print '\nIncludes =', M.Includes 528 for Item in M.Includes: [all …]
|
D | DscClassObject.py | 1383 M = self.Platform 1384 for Arch in M.Header.keys(): 1386 print 'Filename =', M.Header[Arch].FileName 1387 print 'FullPath =', M.Header[Arch].FullPath 1388 print 'BaseName =', M.Header[Arch].Name 1389 print 'Guid =', M.Header[Arch].Guid 1390 print 'Version =', M.Header[Arch].Version 1391 print 'DscSpecification =', M.Header[Arch].DscSpecification 1392 print 'SkuId =', M.Header[Arch].SkuIdName 1393 print 'SupArchList =', M.Header[Arch].SupArchList [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/ |
D | WorkspaceCommon.py | 106 M = LibraryConsumerList.pop() 107 for LibraryClassName in M.LibraryClasses: 115 LibraryPath = M.LibraryClasses[LibraryClassName] 144 if M != Module: 145 if M in ConsumedByList[LibraryModule]: 147 ConsumedByList[LibraryModule].append(M) 158 M = LibraryInstance[LibraryClassName] 159 LibraryList.append(M) 160 if ConsumedByList[M] == []: 161 Q.append(M) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/ |
D | meta-vladimir.txt | 162 >>> metaclass M: 163 attr1 = "Hello" # an attribute of M 164 def method1(self, *args): pass # method1 of M 165 def method2(self, *args): pass # method2 of M 168 So far, we defined the structure of the meta-class M. The meta-class 169 M is of type <metaclass>. We cannot check this by asking Python, but 172 >>> M # What is M? 173 <metaclass __main__.M at 2023e4e0> 177 Creating an object with the properties defined in the meta-class M is 178 called instantiation of the meta-class M. After an instantiation of M, [all …]
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/Smbios/SmbiosMiscDxe/Type01/ |
D | MiscSystemManufacturer.uni | 21 //#string STR_MISC_SYSTEM_PRODUCT_NAME #language en-US "To be filled by O.E.M." 23 //#string STR_MISC_SYSTEM_VERSION #language en-US "To be filled by O.E.M." 25 #string STR_MISC_SYSTEM_SERIAL_NUMBER #language en-US "To be filled by O.E.M." 26 #string STR_MISC_SYSTEM_SKU_NUMBER #language en-US "To be filled by O.E.M." 27 #string STR_MISC_SYSTEM_FAMILY #language en-US "To be filled by O.E.M."
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/Smbios/SmbiosMiscDxe/Type02/ |
D | MiscBaseBoardManufacturer.uni | 21 //#string STR_MISC_BASE_BOARD_PRODUCT_NAME #language en-US "To Be Filled By O.E.M." 23 //#string STR_MISC_BASE_BOARD_VERSION #language en-US "To Be Filled By O.E.M." 25 #string STR_MISC_BASE_BOARD_SERIAL_NUMBER #language en-US "To Be Filled By O.E.M." 26 #string STR_MISC_BASE_BOARD_ASSET_TAG #language en-US "To Be Filled By O.E.M." 27 #string STR_MISC_BASE_BOARD_CHASSIS_LOCATION #language en-US "To Be Filled By O.E.M."
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/ |
D | BuildReport.py | 295 def __init__(self, M): argument 297 if int(str(M.AutoGenVersion), 0) >= 0x00010005: 302 for Lib in M.DependentLibraryList: 307 LibDepexList = Lib.DepexExpression[M.Arch, M.ModuleType] 370 def __init__(self, M): argument 372 self._DepexFileName = os.path.join(M.BuildDir, "OUTPUT", M.Module.BaseName + ".depex") 373 ModuleType = M.ModuleType 375 ModuleType = gComponentType2ModuleType.get(M.ComponentType, "") 380 for Source in M.SourceFileList: 388 self.Depex = M.DepexExpressionList.get(M.ModuleType, "") [all …]
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/Smbios/SmbiosMiscDxe/Type03/ |
D | MiscChassisManufacturer.uni | 21 #string STR_MISC_CHASSIS_VERSION #language en-US "To Be Filled By O.E.M." 22 #string STR_MISC_CHASSIS_SERIAL_NUMBER #language en-US "To Be Filled By O.E.M." 23 #string STR_MISC_CHASSIS_ASSET_TAG #language en-US "To Be Filled By O.E.M." 24 #string STR_MISC_CHASSIS_SKU_NUMBER #language en-US "To Be Filled By O.E.M."
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | Cookie.py | 584 M = self.get(key, Morsel()) 585 M.set(key, real_value, coded_value) 586 dict.__setitem__(self, key, M) 643 M = None # current morsel 658 if M: 659 M[ K[1:] ] = V 661 if M: 662 M[ K ] = _unquote(V) 666 M = self[K]
|
/device/linaro/bootloader/edk2/MdePkg/Library/UefiPciSegmentLibPciRootBridgeIo/ |
D | PciSegmentLib.h | 46 #define ASSERT_INVALID_PCI_SEGMENT_ADDRESS(A,M) \ argument 47 ASSERT (((A) & (0xffff0000f0000000ULL | (M))) == 0)
|
/device/linaro/bootloader/edk2/DuetPkg/BootSector/bin/ |
D | Mbr.com | 4 ���MBR Start!MBR Err:??����$��00��9~��<9~�…
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/ |
D | Md5.c | 192 Data = (UINT32 *) Md5Ctx->M; in MD5Transform() 242 CopyMem (Md5Ctx->M + Md5Ctx->Count, (VOID *)Data, Limit); in MD5UpdateBlock() 250 CopyMem (Md5Ctx->M + Md5Ctx->Count, (VOID *)Data, DataLen); in MD5UpdateBlock() 345 ZeroMem (Md5Ctx->M, sizeof (Md5Ctx->M)); in MD5Final()
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/Smbios/ProcessorSubClassDxe/ |
D | ProcessorSubClassStrings.uni | 26 #string STR_PROCESSOR_SERIAL_NUMBER #language en-US "To be filled by O.E.M." 27 #string STR_PROCESSOR_ASSET_TAG #language en-US "To be filled by O.E.M." 28 #string STR_PROCESSOR_PART_NUMBER #language en-US "To be filled by O.E.M."
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_xrange.py | 110 for M in (2**32, 2**64) 111 for base in (-M, -M//2, 0, M//2, M)
|
D | badkey.pem | 14 M+kTUyOmuKfVrFMKwtVeCJphrAnhoz7TYOuLBSqt7lVHfhi/VwovESJlaBOp+WMn 34 M+kTUyOmuKfVrFMKwtVeCJphrAnhoz7TYOuLBSqt7lVHfhi/VwovESJlaBOp+WMn
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SmBiosMiscDxe/ |
D | MiscBaseBoardManufacturer.uni | 36 #string STR_MISC_BASE_BOARD_SERIAL_NUMBER #language en-US "To be filled by O.E.M" 37 #string STR_MISC_BASE_BOARD_ASSET_TAG #language en-US "To be filled by O.E.M" 38 #string STR_MISC_BASE_BOARD_CHASSIS_LOCATION #language en-US "To be filled by O.E.M"
|
D | MiscSystemManufacturer.uni | 33 #string STR_MISC_SYSTEM_SERIAL_NUMBER #language en-US "To be filled by O.E.M" 34 #string STR_MISC_SYSTEM_SKU_NUMBER #language en-US "To be filled by O.E.M"
|
/device/google/cuttlefish_common/common/libs/threads/ |
D | cuttlefish_thread.h | 112 template <typename M> class LockGuard { 114 explicit LockGuard(M& mutex) : mutex_(mutex) { in LockGuard() 123 M& mutex_;
|
/device/linaro/bootloader/OpenPlatformPkg/Drivers/I2c/MvI2cDxe/ |
D | MvI2cDxe.h | 64 #define I2C_BAUD_RATE_PARAM(M,N) ((((M) << 3) | ((N) & 0x7)) & 0x7f) argument 65 #define I2C_BAUD_RATE_RAW(C,M,N) ((C)/((10*(M+1))<<(N+1))) argument
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/build_hikey/ |
D | xa_hikey.img | 10 ���P A� !� � 1�� �����M��� �&Bm}A���� �0�A��0"@"� 0` 30�0 `02… 37 �M�-�m��]�=�}��C�#�c��S�3�s��K�+�k��[�;�{��G�'�g��W�7�w��O�/�o��_�?��… 38 M��2��F���( � b 40 :'#/M~���pJA Z"�$�&)1,/2a5�8�<z… 43 …�.��1�"5�8^D<�.@�ZD��H�MƐR\�W6�] �cH6jBqwx)K�~�����G��W ��¯�.�Y�lM�[… 53 �M 56 �=�W8�M�2�-��`'���!r�[G�By�'�� �`��~�@��… 68 …dg�K�Fg��K)g �KDgzLj�f�?L��f9hL��f��L~�fɸLeuf�L<Wf* M9fI1M�f[YMc�e…
|
/device/linaro/hikey/hifi/firmware/ |
D | hifi-hikey960.img | 10 ���P A� !� � 1�� �����M��� �&Bm}A���� �0�A��0"@"� 0` 30�0 `02… 39 �M�-�m��]�=�}��C�#�c��S�3�s��K�+�k��[�;�{��G�'�g��W�7�w��O�/�o��_�?��… 40 M��2��F���( � b 42 :'#/M~���pJA Z"�$�&)1,/2a5�8�<z… 45 …�.��1�"5�8^D<�.@�ZD��H�MƐR\�W6�] �cH6jBqwx)K�~�����G��W ��¯�.�Y�lM�[… 55 �M 58 �=�W8�M�2�-��`'���!r�[G�By�'�� �`��~�@��… 70 …dg�K�Fg��K)g �KDgzLj�f�?L��f9hL��f��L~�fɸLeuf�L<Wf* M9fI1M�f[YMc�e…
|
/device/generic/goldfish/data/etc/ |
D | local.prop | 1 ro.logd.size=2M
|