/external/libunwind/tests/ |
D | test-flush-cache.c | 60 #define F(n,m) \ macro 70 F(256,257) F(255,256) F(254,255) F(253,254) 71 F(252,253) F(251,252) F(250,251) F(249,250) 72 F(248,249) F(247,248) F(246,247) F(245,246) 73 F(244,245) F(243,244) F(242,243) F(241,242) 74 F(240,241) F(239,240) F(238,239) F(237,238) 75 F(236,237) F(235,236) F(234,235) F(233,234) 76 F(232,233) F(231,232) F(230,231) F(229,230) 77 F(228,229) F(227,228) F(226,227) F(225,226) 78 F(224,225) F(223,224) F(222,223) F(221,222) [all …]
|
/external/v8/src/runtime/ |
D | runtime.h | 39 #define FOR_EACH_INTRINSIC_ARRAY(F) \ argument 40 F(FinishArrayPrototypeSetup, 1, 1) \ 41 F(SpecialArrayFunctions, 0, 1) \ 42 F(TransitionElementsKind, 2, 1) \ 43 F(RemoveArrayHoles, 2, 1) \ 44 F(MoveArrayContents, 2, 1) \ 45 F(EstimateNumberOfElements, 1, 1) \ 46 F(GetArrayKeys, 2, 1) \ 47 F(NewArray, -1 /* >= 3 */, 1) \ 48 F(FunctionBind, -1, 1) \ [all …]
|
/external/clang/test/CodeGen/ |
D | libcall-declarations.c | 262 #define F(x) ((void*)x) macro 264 F(atan2), F(atan2f), F(atan2l), F(abs), F(labs), 265 F(llabs), F(copysign), F(copysignf), F(copysignl), F(fabs), 266 F(fabsf), F(fabsl), F(fmod), F(fmodf), F(fmodl), 267 F(frexp), F(frexpf), F(frexpl), F(ldexp), F(ldexpf), 268 F(ldexpl), F(modf), F(modff), F(modfl), F(nan), 269 F(nanf), F(nanl), F(pow), F(powf), F(powl), 270 F(acos), F(acosf), F(acosl), F(acosh), F(acoshf), 271 F(acoshl), F(asin), F(asinf), F(asinl), F(asinh), 272 F(asinhf), F(asinhl), F(atan), F(atanf), F(atanl), [all …]
|
/external/icu/icu4c/source/test/testdata/ |
D | CollationTest_NON_IGNORABLE_SHORT.txt | 50 0334 059F 51 059F 0334 525 0334 033F 526 033F 0334 637 031F 0334 638 0334 031F 649 032F 0334 650 0334 032F 683 0334 035F 684 035F 0334 [all …]
|
D | CollationTest_SHIFTED_SHORT.txt | 12 0009 003F 14 000A 003F 16 000B 003F 18 000C 003F 20 000D 003F 22 0085 003F 24 2028 003F 26 2029 003F 41 202F 0021 42 205F 0021 [all …]
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/data/ |
D | CollationTest_NON_IGNORABLE_SHORT.txt | 50 0334 059F 51 059F 0334 525 0334 033F 526 033F 0334 637 031F 0334 638 0334 031F 649 032F 0334 650 0334 032F 683 0334 035F 684 035F 0334 [all …]
|
D | CollationTest_SHIFTED_SHORT.txt | 12 0009 003F 14 000A 003F 16 000B 003F 18 000C 003F 20 000D 003F 22 0085 003F 24 2028 003F 26 2029 003F 41 202F 0021 42 205F 0021 [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/ |
D | CollationTest_NON_IGNORABLE_SHORT.txt | 50 0334 059F 51 059F 0334 525 0334 033F 526 033F 0334 637 031F 0334 638 0334 031F 649 032F 0334 650 0334 032F 683 0334 035F 684 035F 0334 [all …]
|
D | CollationTest_SHIFTED_SHORT.txt | 12 0009 003F 14 000A 003F 16 000B 003F 18 000C 003F 20 000D 003F 22 0085 003F 24 2028 003F 26 2029 003F 41 202F 0021 42 205F 0021 [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_fractions.py | 14 F = fractions.Fraction variable 27 return op(F.from_float(self.value), other) 105 self.assertEqual(gcd(F(120), F(84)), F(12)) 106 self.assertEqual(gcd(F(120, 77), F(84, 55)), F(12, 385)) 131 self.assertEqual((0, 1), _components(F())) 132 self.assertEqual((7, 1), _components(F(7))) 133 self.assertEqual((7, 3), _components(F(F(7, 3)))) 135 self.assertEqual((-1, 1), _components(F(-1, 1))) 136 self.assertEqual((-1, 1), _components(F(1, -1))) 137 self.assertEqual((1, 1), _components(F(-2, -2))) [all …]
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/ |
D | is_many.pass.cpp | 32 typedef std::ctype<wchar_t> F; in main() typedef 33 const F& f = std::use_facet<F>(l); in main() 35 std::vector<F::mask> m(in.size()); in main() 40 assert(!(m[0] & F::space)); in main() 41 assert( (m[0] & F::print)); in main() 42 assert(!(m[0] & F::cntrl)); in main() 43 assert( (m[0] & F::upper)); in main() 44 assert(!(m[0] & F::lower)); in main() 45 assert( (m[0] & F::alpha)); in main() 46 assert(!(m[0] & F::digit)); in main() [all …]
|
D | is_1.pass.cpp | 29 typedef std::ctype<wchar_t> F; in main() typedef 30 const F& f = std::use_facet<F>(l); in main() 32 assert(f.is(F::space, L' ')); in main() 33 assert(!f.is(F::space, L'A')); in main() 35 assert(f.is(F::print, L' ')); in main() 36 assert(!f.is(F::print, L'\x07')); in main() 38 assert(f.is(F::cntrl, L'\x07')); in main() 39 assert(!f.is(F::cntrl, L' ')); in main() 41 assert(f.is(F::upper, L'A')); in main() 42 assert(!f.is(F::upper, L'a')); in main() [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_fractions.py | 13 F = fractions.Fraction variable 31 return op(F.from_float(self.value), other) 132 self.assertEqual((0, 1), _components(F())) 133 self.assertEqual((7, 1), _components(F(7))) 134 self.assertEqual((7, 3), _components(F(F(7, 3)))) 136 self.assertEqual((-1, 1), _components(F(-1, 1))) 137 self.assertEqual((-1, 1), _components(F(1, -1))) 138 self.assertEqual((1, 1), _components(F(-2, -2))) 139 self.assertEqual((1, 2), _components(F(5, 10))) 140 self.assertEqual((7, 15), _components(F(7, 15))) [all …]
|
/external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/ |
D | result_of11.pass.cpp | 27 struct F {}; struct 28 struct FD : public F {}; 62 typedef char F::*PMD; in main() 63 test_result_of_imp<PMD(F &), char &>(); in main() 64 test_result_of_imp<PMD(F const &), char const &>(); in main() 65 test_result_of_imp<PMD(F volatile &), char volatile &>(); in main() 66 test_result_of_imp<PMD(F const volatile &), char const volatile &>(); in main() 68 test_result_of_imp<PMD(F &&), char &&>(); in main() 69 test_result_of_imp<PMD(F const &&), char const &&>(); in main() 70 test_result_of_imp<PMD(F volatile &&), char volatile &&>(); in main() [all …]
|
/external/llvm/lib/Transforms/Utils/ |
D | BuildLibCalls.cpp | 42 static bool setDoesNotAccessMemory(Function &F) { in setDoesNotAccessMemory() argument 43 if (F.doesNotAccessMemory()) in setDoesNotAccessMemory() 45 F.setDoesNotAccessMemory(); in setDoesNotAccessMemory() 50 static bool setOnlyReadsMemory(Function &F) { in setOnlyReadsMemory() argument 51 if (F.onlyReadsMemory()) in setOnlyReadsMemory() 53 F.setOnlyReadsMemory(); in setOnlyReadsMemory() 58 static bool setOnlyAccessesArgMemory(Function &F) { in setOnlyAccessesArgMemory() argument 59 if (F.onlyAccessesArgMemory()) in setOnlyAccessesArgMemory() 61 F.setOnlyAccessesArgMemory (); in setOnlyAccessesArgMemory() 66 static bool setDoesNotThrow(Function &F) { in setDoesNotThrow() argument [all …]
|
/external/autotest/client/deps/glbench/src/ |
D | main.h | 21 #define LIST_PROC_FUNCTIONS(F) \ argument 22 F(glActiveTexture, PFNGLACTIVETEXTUREPROC) \ 23 F(glAttachShader, PFNGLATTACHSHADERPROC) \ 24 F(glBindBuffer, PFNGLBINDBUFFERPROC) \ 25 F(glBufferData, PFNGLBUFFERDATAPROC) \ 26 F(glCompileShader, PFNGLCOMPILESHADERPROC) \ 27 F(glCreateProgram, PFNGLCREATEPROGRAMPROC) \ 28 F(glCreateShader, PFNGLCREATESHADERPROC) \ 29 F(glDeleteBuffers, PFNGLDELETEBUFFERSPROC) \ 30 F(glDeleteProgram, PFNGLDELETEPROGRAMPROC) \ [all …]
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/ |
D | is_many.pass.cpp | 27 typedef std::ctype<wchar_t> F; in main() typedef 28 const F& f = std::use_facet<F>(l); in main() 30 std::vector<F::mask> m(in.size()); in main() 35 assert( (m[0] & F::space)); in main() 36 assert( (m[0] & F::print)); in main() 37 assert(!(m[0] & F::cntrl)); in main() 38 assert(!(m[0] & F::upper)); in main() 39 assert(!(m[0] & F::lower)); in main() 40 assert(!(m[0] & F::alpha)); in main() 41 assert(!(m[0] & F::digit)); in main() [all …]
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
D | is_many.pass.cpp | 27 typedef std::ctype<char> F; in main() typedef 28 const F& f = std::use_facet<F>(l); in main() 30 std::vector<F::mask> m(in.size()); in main() 35 assert( (m[0] & F::space)); in main() 36 assert( (m[0] & F::print)); in main() 37 assert(!(m[0] & F::cntrl)); in main() 38 assert(!(m[0] & F::upper)); in main() 39 assert(!(m[0] & F::lower)); in main() 40 assert(!(m[0] & F::alpha)); in main() 41 assert(!(m[0] & F::digit)); in main() [all …]
|
/external/clang/test/SemaCXX/ |
D | type-traits.cpp | 3 #define F(b) (b) ? -1 : 1 macro 194 { int arr[F(__is_pod(HasCons))]; } in is_pod() 195 { int arr[F(__is_pod(HasCopyAssign))]; } in is_pod() 196 { int arr[F(__is_pod(HasMoveAssign))]; } in is_pod() 197 { int arr[F(__is_pod(HasDest))]; } in is_pod() 198 { int arr[F(__is_pod(HasRef))]; } in is_pod() 199 { int arr[F(__is_pod(HasVirt))]; } in is_pod() 200 { int arr[F(__is_pod(DerivesHasCons))]; } in is_pod() 201 { int arr[F(__is_pod(DerivesHasCopyAssign))]; } in is_pod() 202 { int arr[F(__is_pod(DerivesHasMoveAssign))]; } in is_pod() [all …]
|
/external/v8/src/x64/ |
D | sse-instr.h | 9 V(packsswb, 66, 0F, 63) \ 10 V(packssdw, 66, 0F, 6B) \ 11 V(packuswb, 66, 0F, 67) \ 12 V(paddb, 66, 0F, FC) \ 13 V(paddw, 66, 0F, FD) \ 14 V(paddd, 66, 0F, FE) \ 15 V(paddsb, 66, 0F, EC) \ 16 V(paddsw, 66, 0F, ED) \ 17 V(paddusb, 66, 0F, DC) \ 18 V(paddusw, 66, 0F, DD) \ [all …]
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-generated-function-mockers.h | 49 template <typename F> 57 template <typename F> 64 typedef R F(); typedef 65 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 67 MockSpec<F>& With() { in With() 84 typedef R F(A1); typedef 85 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; 87 MockSpec<F>& With(const Matcher<A1>& m1) { in With() 105 typedef R F(A1, A2); typedef 106 typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple; [all …]
|
/external/walt/hardware/kicad/walt_footprints.pretty/ |
D | BMI160.kicad_mod | 1 (module teensy32:BMI160 (layer F.Cu) (tedit 56F22C5B) 2 (fp_text reference U4 (at 0 2.75) (layer F.SilkS) 5 (fp_text value BMI160 (at 1.59 4.3675) (layer F.Fab) 8 (fp_line (start -2 1.75) (end -2 -1.75) (layer F.SilkS) (width 0.15)) 9 (fp_line (start 2 1.75) (end -2 1.75) (layer F.SilkS) (width 0.15)) 10 (fp_line (start 2 -1.75) (end 2 1.75) (layer F.SilkS) (width 0.15)) 11 (fp_line (start -2 -1.75) (end 2 -1.75) (layer F.SilkS) (width 0.15)) 12 (fp_circle (center -2 -1.75) (end -1.7 -1.7) (layer F.SilkS) (width 0.15)) 13 (pad 6 smd rect (at 0 1.0125 90) (size 0.675 0.25) (layers F.Cu F.Paste F.Mask)) 14 (pad 13 smd rect (at 0 -1.0125 90) (size 0.675 0.25) (layers F.Cu F.Paste F.Mask)) [all …]
|
/external/libcxx/test/std/numerics/rand/rand.util/rand.util.canonical/ |
D | generate_canonical.pass.cpp | 22 typedef float F; in main() typedef 24 F f = std::generate_canonical<F, 0>(r); in main() 25 assert(f == (16807 - E::min()) / (E::max() - E::min() + F(1))); in main() 29 typedef float F; in main() typedef 31 F f = std::generate_canonical<F, 1>(r); in main() 32 assert(f == (16807 - E::min()) / (E::max() - E::min() + F(1))); in main() 36 typedef float F; in main() typedef 38 F f = std::generate_canonical<F, std::numeric_limits<F>::digits - 1>(r); in main() 39 assert(f == (16807 - E::min()) / (E::max() - E::min() + F(1))); in main() 43 typedef float F; in main() typedef [all …]
|
/external/walt/hardware/kicad/ |
D | WALTsm.sch | 52 F 0 "U1" H 2300 3500 50 0000 C CNN 53 F 1 "TeensyLC_with_headers" V 2550 2750 50 0000 C CNN 54 F 2 "Housings_DIP:DIP-28_W15.24mm" V 2950 2750 50 0001 C CNN 55 F 3 "https://www.pjrc.com/teensy/teensyLC.html" V 2850 2750 50 0001 C CNN 63 F 0 "#PWR01" H 1650 1750 50 0001 C CNN 64 F 1 "GND" H 1650 1850 50 0000 C CNN 65 F 2 "" H 1650 2000 50 0000 C CNN 66 F 3 "" H 1650 2000 50 0000 C CNN 74 F 0 "#PWR02" H 3950 1850 50 0001 C CNN 75 F 1 "GND" H 3950 1950 50 0000 C CNN [all …]
|
/external/v8/src/heap/ |
D | gc-tracer.h | 26 #define INCREMENTAL_SCOPES(F) \ argument 28 F(MC_INCREMENTAL) \ 29 F(MC_INCREMENTAL_SWEEPING) \ 30 F(MC_INCREMENTAL_WRAPPER_PROLOGUE) \ 31 F(MC_INCREMENTAL_WRAPPER_TRACING) \ 32 F(MC_INCREMENTAL_FINALIZE) \ 33 F(MC_INCREMENTAL_FINALIZE_BODY) \ 34 F(MC_INCREMENTAL_FINALIZE_OBJECT_GROUPING) \ 35 F(MC_INCREMENTAL_EXTERNAL_EPILOGUE) \ 36 F(MC_INCREMENTAL_EXTERNAL_PROLOGUE) [all …]
|