/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | cmathmodule.c | 1099 #define C(REAL, IMAG) p->real = REAL; p->imag = IMAG; ++p; in initcmath() macro 1102 C(P34,INF) C(P,INF) C(P,INF) C(P,-INF) C(P,-INF) C(P34,-INF) C(N,INF) in initcmath() 1103 C(P12,INF) C(U,U) C(U,U) C(U,U) C(U,U) C(P12,-INF) C(N,N) in initcmath() 1104 C(P12,INF) C(U,U) C(P12,0.) C(P12,-0.) C(U,U) C(P12,-INF) C(P12,N) in initcmath() 1105 C(P12,INF) C(U,U) C(P12,0.) C(P12,-0.) C(U,U) C(P12,-INF) C(P12,N) in initcmath() 1106 C(P12,INF) C(U,U) C(U,U) C(U,U) C(U,U) C(P12,-INF) C(N,N) in initcmath() 1107 C(P14,INF) C(0.,INF) C(0.,INF) C(0.,-INF) C(0.,-INF) C(P14,-INF) C(N,INF) in initcmath() 1108 C(N,INF) C(N,N) C(N,N) C(N,N) C(N,N) C(N,-INF) C(N,N) in initcmath() 1112 C(INF,-P34) C(INF,-P) C(INF,-P) C(INF,P) C(INF,P) C(INF,P34) C(INF,N) in initcmath() 1113 C(INF,-P12) C(U,U) C(U,U) C(U,U) C(U,U) C(INF,P12) C(N,N) in initcmath() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | cmathmodule.c | 1106 #define C(REAL, IMAG) p->real = REAL; p->imag = IMAG; ++p; in initcmath() macro 1109 C(P34,INF) C(P,INF) C(P,INF) C(P,-INF) C(P,-INF) C(P34,-INF) C(N,INF) in initcmath() 1110 C(P12,INF) C(U,U) C(U,U) C(U,U) C(U,U) C(P12,-INF) C(N,N) in initcmath() 1111 C(P12,INF) C(U,U) C(P12,0.) C(P12,-0.) C(U,U) C(P12,-INF) C(P12,N) in initcmath() 1112 C(P12,INF) C(U,U) C(P12,0.) C(P12,-0.) C(U,U) C(P12,-INF) C(P12,N) in initcmath() 1113 C(P12,INF) C(U,U) C(U,U) C(U,U) C(U,U) C(P12,-INF) C(N,N) in initcmath() 1114 C(P14,INF) C(0.,INF) C(0.,INF) C(0.,-INF) C(0.,-INF) C(P14,-INF) C(N,INF) in initcmath() 1115 C(N,INF) C(N,N) C(N,N) C(N,N) C(N,N) C(N,-INF) C(N,N) in initcmath() 1119 C(INF,-P34) C(INF,-P) C(INF,-P) C(INF,P) C(INF,P) C(INF,P34) C(INF,N) in initcmath() 1120 C(INF,-P12) C(U,U) C(U,U) C(U,U) C(U,U) C(INF,P12) C(N,N) in initcmath() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_cookie.py | 33 C = Cookie.SimpleCookie() 34 C.load(case['data']) 35 self.assertEqual(repr(C), case['repr']) 36 self.assertEqual(C.output(sep='\n'), case['output']) 38 self.assertEqual(C[k].value, v) 41 C = Cookie.SimpleCookie() 42 C.load('Customer="WILE_E_COYOTE"; Version=1; Path=/acme') 44 self.assertEqual(C['Customer'].value, 'WILE_E_COYOTE') 45 self.assertEqual(C['Customer']['version'], '1') 46 self.assertEqual(C['Customer']['path'], '/acme') [all …]
|
D | test_copy.py | 26 class C(object): class 30 return C(self.foo) 31 x = C(42) 37 class C(object): class 43 return (C, (obj.foo,)) 44 x = C(42) 46 copy_reg.pickle(C, pickle_C, C) 50 class C(object): class 55 x = C() 60 class C(object): class [all …]
|
D | test_abc.py | 29 class C: class 33 class D(C): 40 class C: class 45 self.assertEqual(C.__abstractmethods__, set(["foo"])) 46 self.assertRaises(TypeError, C) # because foo is abstract 47 self.assertTrue(isabstract(C)) 48 class D(C): 99 class C(B): class 101 c = C() 102 self.assertTrue(issubclass(C, A)) [all …]
|
D | test_descr.py | 244 class C(int): class 247 self.assertEqual(C(5L), 5) 249 C() + "" 255 C(sys.maxint+1) 334 class C(spam.spamlist): class 336 a = C() 386 class C(spam.spamdict): class 388 a = C() 407 class C(dict): class 425 self.assertTrue(issubclass(C, dict)) [all …]
|
D | test_weakref.py | 13 class C: class 30 return C().method 33 return C.method 48 self.check_basic_ref(C) 55 o = C() 63 self.check_basic_callback(C) 69 o = C() 93 c = C() 99 o = C() 110 self.assertRaises(weakref.ReferenceError, bool, weakref.proxy(C())) [all …]
|
D | test_isinstance.py | 34 class C(object): class 39 self.assertEqual(False, isinstance(I(), C())) 54 class C(object): class 59 self.assertRaises(RuntimeError, isinstance, I(), C()) 66 class C(object): class 71 self.assertRaises(RuntimeError, isinstance, I(), C()) 78 class C(object): class 83 self.assertRaises(TypeError, isinstance, I(), C()) 92 class C(object): class 97 class S(C): pass [all …]
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/build_hikey/hifi_hikey_lsp/ |
D | memmap.xmm | 6 iram0_1 : C : 0xe8080300 - 0xe80803ff : .Reset.literal; 8 iram0_3 : C : 0xe8080578 - 0xe808057f : .Level2InterruptVector.literal; 10 iram0_5 : C : 0xe80805b8 - 0xe80805bf : .Level3InterruptVector.literal; 12 iram0_7 : C : 0xe80805f8 - 0xe80805ff : .Level4InterruptVector.literal; 14 iram0_9 : C : 0xe8080638 - 0xe808063f : .DebugExceptionVector.literal; 16 iram0_11 : C : 0xe8080678 - 0xe80806bf : .NMIExceptionVector.literal; 18 iram0_13 : C : 0xe80806f8 - 0xe80806ff : .KernelExceptionVector.literal; 20 iram0_15 : C : 0xe8080738 - 0xe808073f : .UserExceptionVector.literal; 22 iram0_17 : C : 0xe8080778 - 0xe80807bf : .DoubleExceptionVector.literal; 24 iram0_19 : C : 0xe8080800 - 0xe808bfff : .iram0.literal .Reset.text .iram0.text; [all …]
|
/device/linaro/bootloader/edk2/BaseTools/ |
D | .gitignore | 8 Source/C/VfrCompile/EfiVfrParser.cpp 9 Source/C/VfrCompile/EfiVfrParser.h 10 Source/C/VfrCompile/Pccts/antlr/antlr 11 Source/C/VfrCompile/Pccts/dlg/dlg 12 Source/C/VfrCompile/VfrLexer.cpp 13 Source/C/VfrCompile/VfrLexer.h 14 Source/C/VfrCompile/VfrParser.dlg 15 Source/C/VfrCompile/VfrSyntax.cpp 16 Source/C/VfrCompile/VfrTokens.h 17 Source/C/bin/ [all …]
|
D | Makefile | 14 SUBDIRS = Source\C Source\Python 19 @Source\C\Makefiles\NmakeSubdirs.bat all Source\C 22 @Source\C\Makefiles\NmakeSubdirs.bat all Source\Python 25 @Source\C\Makefiles\NmakeSubdirs.bat all $** 29 @Source\C\Makefiles\NmakeSubdirs.bat clean $(SUBDIRS) 33 @Source\C\Makefiles\NmakeSubdirs.bat cleanall $(SUBDIRS)
|
/device/google/bonito/nfc/ |
D | libnfc-nxp.bonito.conf | 70 NXP_EXT_TVDD_CFG_1={20, 02, 0F, 01, A0, 0E, 0B, 31, 01, 01, 31, 00, 00, 00, 01, 00, D0, 0C} 75 NXP_EXT_TVDD_CFG_2={20, 02, 0F, 01, A0, 0E, 0B, 11, 01, 82, 82, 00, BA, 1E, 10, 00, D0, 0C} 95 9F, A7, 99, 5C, 9F, 97, 99, 67, 9F, 97, 99, 69, 9F, 97, 00, 73, 9F, 07, 00, 105 20, 02, 10, 01, A0, AF, 0C, 83, 43, 7B, 80, 00, 83, 8B, 7B, 80, 00, 77, 08 114 01, 00, 2C, 01, 00, 2C, 01, 00, 52, 01, 00, 52, 01, 00, 77, 01, 00, 77, 01, 117 E1, 00, 00, E1, 00, 00, 2C, 01, 00, 2C, 01, 00, 2C, 01, 00, 2C, 01, 00, 2C, 130 84, 01, 0A, C4, CC, 03, 0A, C6, 89, 01, 0B, C5, D4, 03, 0B, C7, 92, 01, 0C, 131 44, 00, 03, 0C, C7, C6, 01, 0D, 42, 04, 03, 0D, C9, CE, 01, 0E, 42, 48, 03, 135 46, AE, 01, 1A, 47, B4, 01, 1B, 48, EA, 01, 1C, 49, F0, 01 142 20, 02, 0C, 01, A0, 18, 08, AC, 00, 28, 01, B2, FE, 9C, 00 [all …]
|
D | libnfc-nxp.sargo.conf | 70 NXP_EXT_TVDD_CFG_1={20, 02, 0F, 01, A0, 0E, 0B, 31, 01, 01, 31, 00, 00, 00, 01, 00, D0, 0C} 75 NXP_EXT_TVDD_CFG_2={20, 02, 0F, 01, A0, 0E, 0B, 11, 01, 82, 82, 00, BA, 1E, 10, 00, D0, 0C} 105 20, 02, 10, 01, A0, AF, 0C, 83, 43, 7B, 80, 00, 83, 8B, 7B, 80, 00, 77, 08 114 01, 00, 2C, 01, 00, 2C, 01, 00, 52, 01, 00, 52, 01, 00, 77, 01, 00, 77, 01, 117 E1, 00, 00, E1, 00, 00, 2C, 01, 00, 2C, 01, 00, 2C, 01, 00, 2C, 01, 00, 2C, 130 84, 01, 0A, C4, CC, 03, 0A, C6, 89, 01, 0B, C5, D4, 03, 0B, C7, 92, 01, 0C, 131 44, 00, 03, 0C, C7, C6, 01, 0D, 42, 04, 03, 0D, C9, CE, 01, 0E, 42, 48, 03, 135 46, AE, 01, 1A, 47, B4, 01, 1B, 48, EA, 01, 1C, 49, F0, 01 142 20, 02, 0C, 01, A0, 18, 08, 8F, 00, 83, 01, 5D, FE, BC, 00 177 A0, 9C, 02, 00, 00,
|
/device/google/crosshatch/nfc/ |
D | libnfc-nxp.blueline.conf | 70 NXP_EXT_TVDD_CFG_1={20, 02, 0F, 01, A0, 0E, 0B, 31, 01, 01, 31, 00, 00, 00, 01, 00, D0, 0C} 75 NXP_EXT_TVDD_CFG_2={20, 02, 0F, 01, A0, 0E, 0B, 11, 01, C2, 82, 00, BA, 1E, 14, 00, D0, 0C} 91 20, 02, 10, 01, A0, AF, 0C, 83, 42, B2, 80, 00, 83, 08, B2, 80, 00, 77, 08 100 01, 00, 2C, 01, 00, 2C, 01, 00, 52, 01, 00, 52, 01, 00, 77, 01, 00, 77, 01, 103 E1, 00, 00, E1, 00, 00, 2C, 01, 00, 2C, 01, 00, 2C, 01, 00, 2C, 01, 00, 2C, 116 84, 01, 0A, C4, CC, 03, 0A, C6, 89, 01, 0B, C5, D4, 03, 0B, C7, 92, 01, 0C, 117 44, 00, 03, 0C, C7, C6, 01, 0D, 42, 04, 03, 0D, C9, CE, 01, 0E, 42, 48, 03, 121 46, AE, 01, 1A, 47, B4, 01, 1B, 48, EA, 01, 1C, 49, F0, 01 140 A0, 18, 08, 0C, 00, 54, 00, F4, FF, F9, FF, 176 A0, 9C, 02, 00, 00,
|
D | libnfc-nxp.crosshatch.conf | 70 NXP_EXT_TVDD_CFG_1={20, 02, 0F, 01, A0, 0E, 0B, 31, 01, 01, 31, 00, 00, 00, 01, 00, D0, 0C} 75 NXP_EXT_TVDD_CFG_2={20, 02, 0F, 01, A0, 0E, 0B, 11, 01, C2, 82, 00, BA, 1E, 14, 00, D0, 0C} 91 20, 02, 10, 01, A0, AF, 0C, 83, C3, 74, 80, 00, 83, 8B, 74, 80, 00, 77, 08 100 01, 00, 2C, 01, 00, 2C, 01, 00, 52, 01, 00, 52, 01, 00, 77, 01, 00, 77, 01, 103 E1, 00, 00, E1, 00, 00, 19, 01, 00, 19, 01, 00, 19, 01, 00, 19, 01, 00, 2C, 104 01, 00, 2C, 01, 00, C2, 01, 00, C2, 01, 00, 58, 02, 00, 58, 02, 00, DC, 05, 116 84, 01, 0A, C4, CC, 03, 0A, C6, 89, 01, 0B, C5, D4, 03, 0B, C7, 92, 01, 0C, 117 44, 00, 03, 0C, C7, C6, 01, 0D, 42, 04, 03, 0D, C9, CE, 01, 0E, 42, 48, 03, 121 46, AE, 01, 1A, 47, B4, 01, 1B, 48, EA, 01, 1C, 49, F0, 01 175 A0, 9C, 02, 00, 00,
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
D | nsswitch.h | 126 #define NS_FILES_CB(F,C) { NSSRC_FILES, F, __UNCONST(C) }, argument 127 #define NS_COMPAT_CB(F,C) { NSSRC_COMPAT, F, __UNCONST(C) }, argument 130 # define NS_DNS_CB(F,C) { NSSRC_DNS, F, __UNCONST(C) }, argument 132 # define NS_DNS_CB(F,C) argument 136 # define NS_NIS_CB(F,C) { NSSRC_NIS, F, __UNCONST(C) }, argument 138 # define NS_NIS_CB(F,C) argument
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/ |
D | LzmaArchCustomDecompressLib.inf | 38 Sdk/C/Bra.h 39 Sdk/C/LzFind.c 40 Sdk/C/LzmaDec.c 41 Sdk/C/7zVersion.h 42 Sdk/C/CpuArch.h 43 Sdk/C/LzFind.h 44 Sdk/C/LzHash.h 45 Sdk/C/LzmaDec.h 46 Sdk/C/7zTypes.h 47 Sdk/C/Precomp.h [all …]
|
D | LzmaCustomDecompressLib.inf | 38 Sdk/C/LzFind.c 39 Sdk/C/LzmaDec.c 40 Sdk/C/7zVersion.h 41 Sdk/C/CpuArch.h 42 Sdk/C/LzFind.h 43 Sdk/C/LzHash.h 44 Sdk/C/LzmaDec.h 45 Sdk/C/7zTypes.h 46 Sdk/C/Precomp.h 47 Sdk/C/Compiler.h
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/ |
D | LzmaArchCustomDecompressLib.inf | 38 Sdk/C/Bra.h 39 Sdk/C/LzFind.c 40 Sdk/C/LzmaDec.c 41 Sdk/C/7zVersion.h 42 Sdk/C/CpuArch.h 43 Sdk/C/LzFind.h 44 Sdk/C/LzHash.h 45 Sdk/C/LzmaDec.h 46 Sdk/C/7zTypes.h 47 Sdk/C/Precomp.h [all …]
|
D | LzmaCustomDecompressLib.inf | 38 Sdk/C/LzFind.c 39 Sdk/C/LzmaDec.c 40 Sdk/C/7zVersion.h 41 Sdk/C/CpuArch.h 42 Sdk/C/LzFind.h 43 Sdk/C/LzHash.h 44 Sdk/C/LzmaDec.h 45 Sdk/C/7zTypes.h 46 Sdk/C/Precomp.h 47 Sdk/C/Compiler.h
|
/device/linaro/bootloader/edk2/BaseTools/Bin/CYGWIN_NT-5.1-i686/ |
D | RunBinToolFromBuildDir | 10 elif [ -n "$WORKSPACE" -a -e $EDK_TOOLS_PATH/Source/C ] 12 if [ ! -e $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME ] 14 echo BaseTools C Tool binary was not found \($TOOL_BASENAME\) 18 exec $EDK_TOOLS_PATH/Source/C/bin/$TOOL_BASENAME $* 20 elif [ -e `dirname $0`/../../Source/C/bin/$TOOL_BASENAME ] 22 exec `dirname $0`/../../Source/C/bin/$TOOL_BASENAME $*
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Cpu/Pentium/CpuIA32Lib/IA32/ |
D | CpuIA32.asm | 24 .model flat,C 32 EfiHalt PROC C PUBLIC 41 EfiWbinvd PROC C PUBLIC 50 EfiInvd PROC C PUBLIC 58 EfiCpuid PROC C PUBLIC 92 EfiReadMsr PROC C PUBLIC 103 EfiWriteMsr PROC C PUBLIC 115 EfiReadTsc PROC C PUBLIC 124 EfiDisableCache PROC C PUBLIC 142 EfiEnableCache PROC C PUBLIC [all …]
|
/device/google/taimen/nfc/ |
D | libnfc-nxp.taimen.conf | 70 NXP_EXT_TVDD_CFG_1={20, 02, 0F, 01, A0, 0E, 0B, 31, 01, 01, 31, 00, 00, 00, 01, 00, D0, 0C} 75 NXP_EXT_TVDD_CFG_2={20, 02, 0F, 01, A0, 0E, 0B, 11, 01, C2, B2, 00, BA, 1E, 15, 00, D0, 0C} 88 A0, 0D, 04, 5C, 42, 80, 40, 95 A0, 0D, 06, 58, 2D, 0D, 48, 0C, 01, 96 A0, 0D, 06, 5E, 2D, 0D, 5A, 0C, 01, 100 A0, 0D, 06, 5C, 4A, 11, 07, 01, 07 108 …A0, 29, 17, 1C, 02, 00, 1F, 00, 02, 00, 1F, 00, 02, 00, 40, F3, F3, 00, 43, F3, F3, 38, 70, 00, 00… 122 5C, 20, 40, 00, 149 5C, 20, 40, 00, 213 NXP_CORE_CONF_EXTN={20, 02, 32, 0C,
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/DOC/ |
D | lzma-history.txt | 34 - The BUG in C version of 7z decoder was fixed: 40 - The BUG (in 9.26-15.11) in C version of 7z decoder was fixed: 122 - Some changes in ANSI-C 7z Decoder interfaces. 143 - The bug in ANSI-C LZMA Decoder was fixed: 146 - Some changes in ANSI-C 7z Decoder interfaces. 164 - ANSI-C LZMA Decoder was rewritten for speed optimizations. 165 - ANSI-C LZMA Encoder was included to LZMA SDK. 166 - C++ LZMA code now is just wrapper over ANSI-C code. 171 - Speed optimizations in C++ LZMA Decoder. 172 - Small changes for more compatibility with some C/C++ compilers. [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/DOC/ |
D | lzma-history.txt | 34 - The BUG in C version of 7z decoder was fixed: 40 - The BUG (in 9.26-15.11) in C version of 7z decoder was fixed: 122 - Some changes in ANSI-C 7z Decoder interfaces. 143 - The bug in ANSI-C LZMA Decoder was fixed: 146 - Some changes in ANSI-C 7z Decoder interfaces. 164 - ANSI-C LZMA Decoder was rewritten for speed optimizations. 165 - ANSI-C LZMA Encoder was included to LZMA SDK. 166 - C++ LZMA code now is just wrapper over ANSI-C code. 171 - Speed optimizations in C++ LZMA Decoder. 172 - Small changes for more compatibility with some C/C++ compilers. [all …]
|