/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | formatfloat_testcases.txt | 25 %.0f 9.9999999999999987e+49 -> 99999999999999986860582406952576489172979654066176 92 -- 'e' code formatting with explicit precision (>= 0). Output should 97 %.0e 0 -> 0e+00 98 %.1e 0 -> 0.0e+00 99 %.2e 0 -> 0.00e+00 100 %.10e 0 -> 0.0000000000e+00 101 %.50e 0 -> 0.00000000000000000000000000000000000000000000000000e+00 104 %.0e 0.01 -> 1e-02 105 %.0e 0.1 -> 1e-01 106 %.0e 1 -> 1e+00 [all …]
|
D | cmath_testcases.txt | 74 acos0020 acos -9.8813129168249309e-324 0.0 -> 1.5707963267948966 -0.0 75 acos0021 acos -9.8813129168249309e-324 -0.0 -> 1.5707963267948966 0.0 76 acos0022 acos -1e-305 0.0 -> 1.5707963267948966 -0.0 77 acos0023 acos -1e-305 -0.0 -> 1.5707963267948966 0.0 78 acos0024 acos -1e-150 0.0 -> 1.5707963267948966 -0.0 79 acos0025 acos -1e-150 -0.0 -> 1.5707963267948966 0.0 80 acos0026 acos -9.9999999999999998e-17 0.0 -> 1.5707963267948968 -0.0 81 acos0027 acos -9.9999999999999998e-17 -0.0 -> 1.5707963267948968 0.0 88 acos0034 acos -1.0000000000000002 0.0 -> 3.1415926535897931 -2.1073424255447014e-08 89 acos0035 acos -1.0000000000000002 -0.0 -> 3.1415926535897931 2.1073424255447014e-08 [all …]
|
D | test_pwd.py | 14 for e in entries: 15 self.assertEqual(len(e), 7) 16 self.assertEqual(e[0], e.pw_name) 17 self.assertIsInstance(e.pw_name, basestring) 18 self.assertEqual(e[1], e.pw_passwd) 19 self.assertIsInstance(e.pw_passwd, basestring) 20 self.assertEqual(e[2], e.pw_uid) 21 self.assertIsInstance(e.pw_uid, int) 22 self.assertEqual(e[3], e.pw_gid) 23 self.assertIsInstance(e.pw_gid, int) [all …]
|
D | math_testcases.txt | 28 -- invalid : raised for invalid inputs (e.g., sqrt(-1)) 31 -- unspecified; e.g., if the result is given as inf, 62 erf0010 erf 1e-308 -> 1.1283791670955125e-308 63 erf0011 erf 5e-324 -> 4.9406564584124654e-324 64 erf0012 erf 1e-10 -> 1.1283791670955126e-10 118 erfc0010 erfc 1e-308 -> 1.0 119 erfc0011 erfc 5e-324 -> 1.0 120 erfc0012 erfc 1e-10 -> 0.99999999988716204 125 erfc0022 erfc 3 -> 2.2090496998585441e-05 126 erfc0023 erfc 4 -> 1.541725790028002e-08 [all …]
|
D | test_quopri.py | 132 for p, e in self.STRINGS: 133 self.assertTrue(quopri.encodestring(p) == e) 137 for p, e in self.STRINGS: 138 self.assertTrue(quopri.decodestring(e) == p) 142 for p, e in self.STRINGS: 143 self.assertTrue(quopri.decodestring(quopri.encodestring(e)) == e) 147 for p, e in self.STRINGS: 151 self.assertTrue(outfp.getvalue() == e) 155 for p, e in self.STRINGS: 156 infp = cStringIO.StringIO(e) [all …]
|
D | test_strtod.py | 53 e = max(d, min_exp) - mant_dig 56 a, b = a << max(-e, 0), b << max(e, 0) 62 e += 1 65 assert q.bit_length() <= mant_dig and e >= min_exp - mant_dig 66 assert q.bit_length() == mant_dig or e == min_exp - mant_dig 69 if e + q.bit_length() > max_exp: 77 q, e = q << shift, e - shift 83 e + 4*hexdigs) 120 n, e = random.randrange(lower, upper, 2), k 124 n, e = n // 5, e + 1 [all …]
|
D | test_strftime.py | 116 for e in expectations: 119 result = time.strftime(e[0], now) 121 self.fail("strftime '%s' format gave error: %s" % (e[0], error)) 122 if re.match(escapestr(e[1], self.ampm), result): 126 % (e[0], e[2])) 129 % (e[0], e[2], e[1], result)) 158 for e in nonstandard_expectations: 160 result = time.strftime(e[0], now) 163 (e[0], e[2], str(result)) 168 if re.match(escapestr(e[1], self.ampm), result): [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/decimaltestdata/ |
D | quantize.decTest | 36 quax003 quantize 0.1 1e+2 -> 0E+2 Inexact Rounded 37 quax005 quantize 0.1 1e+1 -> 0E+1 Inexact Rounded 39 quax007 quantize 0.1 1e-1 -> 0.1 40 quax008 quantize 0.1 1e-2 -> 0.10 41 quax009 quantize 0.1 1e-3 -> 0.100 42 quax010 quantize 0.9 1e+2 -> 0E+2 Inexact Rounded 43 quax011 quantize 0.9 1e+1 -> 0E+1 Inexact Rounded 44 quax012 quantize 0.9 1e+0 -> 1 Inexact Rounded 45 quax013 quantize 0.9 1e-1 -> 0.9 46 quax014 quantize 0.9 1e-2 -> 0.90 [all …]
|
D | ddQuantize.decTest | 36 ddqua003 quantize 0.1 1e+2 -> 0E+2 Inexact Rounded 37 ddqua005 quantize 0.1 1e+1 -> 0E+1 Inexact Rounded 39 ddqua007 quantize 0.1 1e-1 -> 0.1 40 ddqua008 quantize 0.1 1e-2 -> 0.10 41 ddqua009 quantize 0.1 1e-3 -> 0.100 42 ddqua010 quantize 0.9 1e+2 -> 0E+2 Inexact Rounded 43 ddqua011 quantize 0.9 1e+1 -> 0E+1 Inexact Rounded 44 ddqua012 quantize 0.9 1e+0 -> 1 Inexact Rounded 45 ddqua013 quantize 0.9 1e-1 -> 0.9 46 ddqua014 quantize 0.9 1e-2 -> 0.90 [all …]
|
D | dqQuantize.decTest | 38 dqqua003 quantize 0.1 1e+2 -> 0E+2 Inexact Rounded 39 dqqua005 quantize 0.1 1e+1 -> 0E+1 Inexact Rounded 41 dqqua007 quantize 0.1 1e-1 -> 0.1 42 dqqua008 quantize 0.1 1e-2 -> 0.10 43 dqqua009 quantize 0.1 1e-3 -> 0.100 44 dqqua010 quantize 0.9 1e+2 -> 0E+2 Inexact Rounded 45 dqqua011 quantize 0.9 1e+1 -> 0E+1 Inexact Rounded 46 dqqua012 quantize 0.9 1e+0 -> 1 Inexact Rounded 47 dqqua013 quantize 0.9 1e-1 -> 0.9 48 dqqua014 quantize 0.9 1e-2 -> 0.90 [all …]
|
D | dqFMA.decTest | 110 dqfma0300 fma 9e+6144 10 0 -> Infinity Overflow Inexact Rounded 111 dqfma0301 fma 1e+6144 10 0 -> Infinity Overflow Inexact Rounded 112 dqfma0302 fma 1e+6144 10 -1e+6144 -> 9.000000000000000000000000000000000E+6144 Clamped 113 dqfma0303 fma 1e+6144 10 -9e+6144 -> 1.000000000000000000000000000000000E+6144 Clamped 115 dqfma0305 fma 1e-6176 0.1 0 -> 0E-6176 Underflow Subnormal Inexact Rounded Clamped 116 dqfma0306 fma 1e-6176 0.1 1 -> 1.000000000000000000000000000000000 Inexact Rounded 117 dqfma0307 fma 1e-6176 0.1 1e-6176 -> 1E-6176 Underflow Subnormal Inexact Rounded 146 dqfma2000 fma 2 2 0e+6144 -> 4 147 dqfma2001 fma 2 3 0e+6144 -> 6 148 dqfma2002 fma 5 1 0e+6144 -> 5 [all …]
|
D | ddFMA.decTest | 108 fma0300 fma 9e+384 10 0 -> Infinity Overflow Inexact Rounded 109 fma0301 fma 1e+384 10 0 -> Infinity Overflow Inexact Rounded 110 fma0302 fma 1e+384 10 -1e+384 -> 9.000000000000000E+384 Clamped 111 fma0303 fma 1e+384 10 -9e+384 -> 1.000000000000000E+384 Clamped 113 fma0305 fma 1e-398 0.1 0 -> 0E-398 Underflow Subnormal Inexact Rounded Clamped 114 fma0306 fma 1e-398 0.1 1 -> 1.000000000000000 Inexact Rounded 115 fma0307 fma 1e-398 0.1 1e-398 -> 1E-398 Underflow Subnormal Inexact Rounded 143 ddfma2000 fma 2 2 0e+384 -> 4 144 ddfma2001 fma 2 3 0e+384 -> 6 145 ddfma2002 fma 5 1 0e+384 -> 5 [all …]
|
D | multiply.decTest | 95 mulx062 multiply 123.45 1e+9 -> 1.2345E+11 194 mulx180 multiply 0.1 9e-999999998 -> 9E-999999999 195 mulx181 multiply 0.1 99e-999999998 -> 9.9E-999999998 196 mulx182 multiply 0.1 999e-999999998 -> 9.99E-999999997 198 mulx183 multiply 0.1 9e-999999998 -> 9E-999999999 199 mulx184 multiply 0.1 99e-999999998 -> 9.9E-999999998 200 mulx185 multiply 0.1 999e-999999998 -> 9.99E-999999997 201 mulx186 multiply 0.1 999e-999999997 -> 9.99E-999999996 202 mulx187 multiply 0.1 9999e-999999997 -> 9.999E-999999995 203 mulx188 multiply 0.1 99999e-999999997 -> 9.9999E-999999994 [all …]
|
D | ddMultiply.decTest | 87 ddmul062 multiply 123.45 1e+9 -> 1.2345E+11 341 ddmul751 multiply 1e+277 1e+311 -> Infinity Overflow Inexact Rounded 342 ddmul752 multiply 1e+277 -1e+311 -> -Infinity Overflow Inexact Rounded 343 ddmul753 multiply -1e+277 1e+311 -> -Infinity Overflow Inexact Rounded 344 ddmul754 multiply -1e+277 -1e+311 -> Infinity Overflow Inexact Rounded 345 ddmul755 multiply 1e-277 1e-311 -> 0E-398 Underflow Subnormal Inexact Rounded Clamped 346 ddmul756 multiply 1e-277 -1e-311 -> -0E-398 Underflow Subnormal Inexact Rounded Clamped 347 ddmul757 multiply -1e-277 1e-311 -> -0E-398 Underflow Subnormal Inexact Rounded Clamped 348 ddmul758 multiply -1e-277 -1e-311 -> 0E-398 Underflow Subnormal Inexact Rounded Clamped 351 ddmul760 multiply 1e-291 1e-101 -> 1E-392 Subnormal [all …]
|
/device/linaro/bootloader/arm-trusted-firmware/bl2/ |
D | bl2_image_load.c | 34 int e = 0; in load_scp_bl2() local 50 e = load_auth_image(&scp_bl2_mem_info, in load_scp_bl2() 56 if (e == 0) { in load_scp_bl2() 58 e = bl2_plat_handle_scp_bl2(&scp_bl2_image_info); in load_scp_bl2() 59 if (e) { in load_scp_bl2() 65 return e; in load_scp_bl2() 79 int e; in load_bl31() local 92 e = load_auth_image(bl2_tzram_layout, in load_bl31() 98 if (e == 0) { in load_bl31() 103 return e; in load_bl31() [all …]
|
/device/google/cuttlefish_common/guest/hals/ril/libril/ |
D | ril_service.h | 27 int token, RIL_Errno e, void *response, size_t responselen); 30 int responseType, int serial, RIL_Errno e, void *response, 34 int responseType, int serial, RIL_Errno e, void *response, 38 int responseType, int serial, RIL_Errno e, void *response, 42 int responseType, int serial, RIL_Errno e, void *response, 46 int responseType, int serial, RIL_Errno e, void *response, 50 int responseType, int serial, RIL_Errno e, void *response, 54 int responseType, int serial, RIL_Errno e, 58 int responseType, int serial, RIL_Errno e, void *response, 62 int responseType, int serial, RIL_Errno e, void *response, size_t responselen); [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lcode.c | 29 #define hasjumps(e) ((e)->t != (e)->f) argument 32 static int isnumeral(expdesc *e) { in isnumeral() argument 33 return (e->k == VKNUM && e->t == NO_JUMP && e->f == NO_JUMP); in isnumeral() 285 static void freeexp (FuncState *fs, expdesc *e) { in freeexp() argument 286 if (e->k == VNONRELOC) in freeexp() 287 freereg(fs, e->u.info); in freeexp() 359 void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) { in luaK_setreturns() argument 360 if (e->k == VCALL) { /* expression is an open function call? */ in luaK_setreturns() 361 SETARG_C(getcode(fs, e), nresults+1); in luaK_setreturns() 363 else if (e->k == VVARARG) { in luaK_setreturns() [all …]
|
/device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/ |
D | assert.h | 54 #define _assert(e) assert(e) argument 56 # define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, #e)) argument 58 # define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__)) argument 60 # define assert(e) ((e) ? (void)0 : __assert()) argument 63 #define assert(e) ((void)0) argument 64 #define _assert(e) ((void)0) argument
|
/device/linaro/hikey/hifi/xaf/host-apf/include/audio/ |
D | xa-pcm-api.h | 57 #define XA_PCM_API_NONFATAL(e) \ argument 58 XA_ERROR_CODE(xa_severity_nonfatal, xa_class_api, XA_CODEC_PCM, (e)) 60 #define XA_PCM_API_FATAL(e) \ argument 61 XA_ERROR_CODE(xa_severity_fatal, xa_class_api, XA_CODEC_PCM, (e)) 75 #define XA_PCM_CONFIG_NONFATAL(e) \ argument 76 XA_ERROR_CODE(xa_severity_nonfatal, xa_class_config, XA_CODEC_PCM, (e)) 78 #define XA_PCM_CONFIG_FATAL(e) \ argument 79 XA_ERROR_CODE(xa_severity_fatal, xa_class_config, XA_CODEC_PCM, (e)) 96 #define XA_PCM_EXEC_NONFATAL(e) \ argument 97 XA_ERROR_CODE(xa_severity_nonfatal, xa_class_execute, XA_CODEC_PCM, (e)) [all …]
|
D | xa-mixer-api.h | 73 #define XA_MIXER_API_NONFATAL(e) \ argument 74 XA_ERROR_CODE(xa_severity_nonfatal, xa_class_api, XA_CODEC_MIXER, (e)) 76 #define XA_MIXER_API_FATAL(e) \ argument 77 XA_ERROR_CODE(xa_severity_fatal, xa_class_api, XA_CODEC_MIXER, (e)) 91 #define XA_MIXER_CONFIG_NONFATAL(e) \ argument 92 XA_ERROR_CODE(xa_severity_nonfatal, xa_class_config, XA_CODEC_MIXER, (e)) 94 #define XA_MIXER_CONFIG_FATAL(e) \ argument 95 XA_ERROR_CODE(xa_severity_fatal, xa_class_config, XA_CODEC_MIXER, (e)) 113 #define XA_MIXER_EXEC_NONFATAL(e) \ argument 114 XA_ERROR_CODE(xa_severity_nonfatal, xa_class_execute, XA_CODEC_MIXER, (e)) [all …]
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/plugins/cadence/pcm_proc/ |
D | xa-pcm-api.h | 64 #define XA_PCM_API_NONFATAL(e) \ argument 65 XA_ERROR_CODE(xa_severity_nonfatal, xa_class_api, XA_CODEC_PCM, (e)) 67 #define XA_PCM_API_FATAL(e) \ argument 68 XA_ERROR_CODE(xa_severity_fatal, xa_class_api, XA_CODEC_PCM, (e)) 82 #define XA_PCM_CONFIG_NONFATAL(e) \ argument 83 XA_ERROR_CODE(xa_severity_nonfatal, xa_class_config, XA_CODEC_PCM, (e)) 85 #define XA_PCM_CONFIG_FATAL(e) \ argument 86 XA_ERROR_CODE(xa_severity_fatal, xa_class_config, XA_CODEC_PCM, (e)) 103 #define XA_PCM_EXEC_NONFATAL(e) \ argument 104 XA_ERROR_CODE(xa_severity_nonfatal, xa_class_execute, XA_CODEC_PCM, (e)) [all …]
|
/device/google/contexthub/firmware/os/core/ |
D | simpleQ.c | 44 static inline uint32_t simpleQueueGetIdx(struct SimpleQueue* sq, const struct SimpleQueueEntry *e) in simpleQueueGetIdx() argument 46 return (((const uint8_t*)e) - sq->data) / sq->entrySz; in simpleQueueGetIdx() 95 struct SimpleQueueEntry *e; in simpleQueueDequeue() local 102 e = simpleQueueGetNth(sq, head); in simpleQueueDequeue() 104 sq->head = e->nextIdx; in simpleQueueDequeue() 108 memcpy(data, e->data, sq->entrySz - sizeof(struct SimpleQueueEntry)); in simpleQueueDequeue() 110 e->nextIdx = sq->freeHead; in simpleQueueDequeue() 111 sq->freeHead = simpleQueueGetIdx(sq, e); in simpleQueueDequeue() 148 struct SimpleQueueEntry *e = NULL; in simpleQueueEnqueue() local 155 e = simpleQueueGetNth(sq, sq->freeHead); in simpleQueueEnqueue() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/ |
D | ElementInclude.py | 105 e = elem[i] 106 if e.tag == XINCLUDE_INCLUDE: 108 href = e.get("href") 109 parse = e.get("parse", "xml") 117 if e.tail: 118 node.tail = (node.tail or "") + e.tail 121 text = loader(href, parse, e.get("encoding")) 128 node.tail = (node.tail or "") + text + (e.tail or "") 130 elem.text = (elem.text or "") + text + (e.tail or "") 137 elif e.tag == XINCLUDE_FALLBACK: [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/ |
D | ElementInclude.py | 104 e = elem[i] 105 if e.tag == XINCLUDE_INCLUDE: 107 href = e.get("href") 108 parse = e.get("parse", "xml") 116 if e.tail: 117 node.tail = (node.tail or "") + e.tail 120 text = loader(href, parse, e.get("encoding")) 127 node.tail = (node.tail or "") + text + (e.tail or "") 129 elem.text = (elem.text or "") + text + (e.tail or "") 136 elif e.tag == XINCLUDE_FALLBACK: [all …]
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/include/audio/ |
D | xa-mixer-api.h | 76 #define XA_MIXER_API_NONFATAL(e) \ argument 77 XA_ERROR_CODE(xa_severity_nonfatal, xa_class_api, XA_CODEC_MIXER, (e)) 79 #define XA_MIXER_API_FATAL(e) \ argument 80 XA_ERROR_CODE(xa_severity_fatal, xa_class_api, XA_CODEC_MIXER, (e)) 94 #define XA_MIXER_CONFIG_NONFATAL(e) \ argument 95 XA_ERROR_CODE(xa_severity_nonfatal, xa_class_config, XA_CODEC_MIXER, (e)) 97 #define XA_MIXER_CONFIG_FATAL(e) \ argument 98 XA_ERROR_CODE(xa_severity_fatal, xa_class_config, XA_CODEC_MIXER, (e)) 116 #define XA_MIXER_EXEC_NONFATAL(e) \ argument 117 XA_ERROR_CODE(xa_severity_nonfatal, xa_class_execute, XA_CODEC_MIXER, (e)) [all …]
|