/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 | 33 #define FOR_EACH_INTRINSIC_ARRAY(F) \ argument 34 F(FinishArrayPrototypeSetup, 1, 1) \ 35 F(SpecialArrayFunctions, 0, 1) \ 36 F(TransitionElementsKind, 2, 1) \ 37 F(PushIfAbsent, 2, 1) \ 38 F(RemoveArrayHoles, 2, 1) \ 39 F(MoveArrayContents, 2, 1) \ 40 F(EstimateNumberOfElements, 1, 1) \ 41 F(GetArrayKeys, 2, 1) \ 42 F(ArrayConstructor, -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/icu4j/main/tests/collate/src/com/ibm/icu/dev/data/ |
D | CollationTest_NON_IGNORABLE_SHORT.txt | 47 0334 059F 48 059F 0334 493 0334 033F 494 033F 0334 597 031F 0334 598 0334 031F 609 032F 0334 610 0334 032F 643 0334 035F 644 035F 0334 [all …]
|
D | CollationTest_SHIFTED_SHORT.txt | 9 0009 003F 11 000A 003F 13 000B 003F 15 000C 003F 17 000D 003F 19 0085 003F 21 2028 003F 23 2029 003F 38 202F 0021 39 205F 0021 [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/ |
D | CollationTest_NON_IGNORABLE_SHORT.txt | 47 0334 059F 48 059F 0334 493 0334 033F 494 033F 0334 597 031F 0334 598 0334 031F 609 032F 0334 610 0334 032F 643 0334 035F 644 035F 0334 [all …]
|
D | CollationTest_SHIFTED_SHORT.txt | 9 0009 003F 11 000A 003F 13 000B 003F 15 000C 003F 17 000D 003F 19 0085 003F 21 2028 003F 23 2029 003F 38 202F 0021 39 205F 0021 [all …]
|
/external/icu/icu4c/source/test/testdata/ |
D | CollationTest_NON_IGNORABLE_SHORT.txt | 47 0334 059F 48 059F 0334 493 0334 033F 494 033F 0334 597 031F 0334 598 0334 031F 609 032F 0334 610 0334 032F 643 0334 035F 644 035F 0334 [all …]
|
D | CollationTest_SHIFTED_SHORT.txt | 9 0009 003F 11 000A 003F 13 000B 003F 15 000C 003F 17 000D 003F 19 0085 003F 21 2028 003F 23 2029 003F 38 202F 0021 39 205F 0021 [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/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/ |
D | result_of11.pass.cpp | 25 struct F {}; struct 39 typedef char F::*PMD; in main() 40 test_result_of_imp<PMD(F &), char &>(); in main() 41 test_result_of_imp<PMD(F const &), char const &>(); in main() 42 test_result_of_imp<PMD(F volatile &), char volatile &>(); in main() 43 test_result_of_imp<PMD(F const volatile &), char const volatile &>(); in main() 45 test_result_of_imp<PMD(F &&), char &&>(); in main() 46 test_result_of_imp<PMD(F const &&), char const &&>(); in main() 47 test_result_of_imp<PMD(F volatile &&), char volatile &&>(); in main() 48 test_result_of_imp<PMD(F const volatile &&), char const volatile &&>(); in main() [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/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 115 static MemoryAccessKind checkFunctionMemoryAccess(Function &F, AAResults &AAR, in checkFunctionMemoryAccess() argument 117 FunctionModRefBehavior MRB = AAR.getModRefBehavior(&F); in checkFunctionMemoryAccess() 124 if (F.isDeclaration() || F.mayBeOverridden()) { in checkFunctionMemoryAccess() 134 for (inst_iterator II = inst_begin(F), E = inst_end(F); II != E; ++II) { in checkFunctionMemoryAccess() 225 for (Function *F : SCCNodes) { in addReadAttrs() 227 AAResults &AAR = AARGetter(*F); in addReadAttrs() 229 switch (checkFunctionMemoryAccess(*F, AAR, SCCNodes)) { in addReadAttrs() 244 for (Function *F : SCCNodes) { in addReadAttrs() 245 if (F->doesNotAccessMemory()) in addReadAttrs() 249 if (F->onlyReadsMemory() && ReadsMemory) in addReadAttrs() [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/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/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/libcxx/test/std/re/re.regex/re.regex.construct/ |
D | iter_iter_flg.pass.cpp | 34 typedef forward_iterator<std::string::const_iterator> F; in main() typedef 40 test(F(s1.begin()), F(s1.end()), std::regex_constants::basic, 1); in main() 41 test(F(s2.begin()), F(s2.end()), std::regex_constants::basic, 1); in main() 42 test(F(s3.begin()), F(s3.end()), std::regex_constants::basic, 2); in main() 43 test(F(s4.begin()), F(s4.end()), std::regex_constants::basic, 0); in main() 45 test(F(s1.begin()), F(s1.end()), std::regex_constants::extended, 0); in main() 46 test(F(s2.begin()), F(s2.end()), std::regex_constants::extended, 0); in main() 47 test(F(s3.begin()), F(s3.end()), std::regex_constants::extended, 0); in main() 48 test(F(s4.begin()), F(s4.end()), std::regex_constants::extended, 2); in main() 50 test(F(s1.begin()), F(s1.end()), std::regex_constants::ECMAScript, 0); in main() [all …]
|
/external/valgrind/VEX/orig_ppc32/ |
D | morefp.orig | 26 … 14 90 E1 00 10 80 6A 00 00 7C 07 18 2E 7D 27 1A 14 91 21 00 18 7D 2A 4B 78 2F 80 00 00 41 9E 00 68 29 . 3F E0 6F FF 3F 60 70 00 3F 40 6F FF 3F 20 6F FF 3F A0 6F FF 3F 80 6F FF 7C 0B 03 78 63 E6 FF FF 6… 38 . 7C 0B 30 50 28 80 00 0F 41 85 02 D8 44 . 55 79 08 3C 7F 2C 0E 70 7D 89 60 F8 20 0C 00 31 2B 09 00 02 40 B9 FD 1C 47 . 7F 4B 20 50 2B 9A 00 0B 41 9D 00 10 53 . 81 78 00 00 2F 0B 00 00 41 9A 00 B0 56 . 81 28 00 10 2F 89 00 00 41 9E 00 10 65 . 80 E9 00 04 7C C7 5A 14 90 C9 00 04 81 28 00 18 2F 09 00 00 41 9A 00 10 68 . 83 A9 00 04 7F 9D 5A 14 93 89 00 04 81 28 00 1C 2F 89 00 00 41 9E 00 10 71 . 80 09 00 04 7F E0 5A 14 93 E9 00 04 81 28 00 5C 2C 09 00 00 41 82 00 10 [all …]
|
/external/clang/test/Analysis/ |
D | simple-stream-checks.c | 6 FILE *F = fopen("myfile.txt", "w"); in checkDoubleFClose() local 7 if (F != 0) { in checkDoubleFClose() 8 fputs ("fopen example", F); in checkDoubleFClose() 10 fclose(F); in checkDoubleFClose() 12 fputc(*Data, F); in checkDoubleFClose() 13 fclose(F); // expected-warning {{Closing a previously closed file stream}} in checkDoubleFClose() 18 FILE *F = fopen("myfile.txt", "w"); in checkLeak() local 19 if (F != 0) { in checkLeak() 20 fputs ("fopen example", F); in checkLeak() 30 FILE *F = fopen("myfile.txt", "w"); in checkLeakFollowedByAssert() local [all …]
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/ |
D | classic_table.pass.cpp | 21 typedef std::ctype<char> F; in main() typedef 22 assert(F::classic_table() != 0); in main() 23 assert(F::table_size >= 256); in main() 25 typedef F::mask mask; in main() 26 const mask *p = F::classic_table(); in main() 27 const mask defined = F::space | F::print | F::cntrl | F::upper | F::lower in main() 28 | F::alpha | F::digit | F::punct | F::xdigit | F::blank; in main() 34 if ( i < 32 || i > 126 ) set |= F::cntrl; in main() 35 if ( i >= 32 && i <= 126 ) set |= F::print; in main() 37 if (( i >= 9 && i <= 13) || i == 32 ) set |= F::space; in main() [all …]
|
/external/google-breakpad/src/testing/test/ |
D | gmock-generated-internal-utils_test.cc | 75 typedef Function<int()> F; // NOLINT in TEST() typedef 76 CompileAssertTypesEqual<int, F::Result>(); in TEST() 77 CompileAssertTypesEqual<tuple<>, F::ArgumentTuple>(); in TEST() 78 CompileAssertTypesEqual<tuple<>, F::ArgumentMatcherTuple>(); in TEST() 79 CompileAssertTypesEqual<void(), F::MakeResultVoid>(); in TEST() 80 CompileAssertTypesEqual<IgnoredValue(), F::MakeResultIgnoredValue>(); in TEST() 84 typedef Function<int(bool)> F; // NOLINT in TEST() typedef 85 CompileAssertTypesEqual<int, F::Result>(); in TEST() 86 CompileAssertTypesEqual<bool, F::Argument1>(); in TEST() 87 CompileAssertTypesEqual<tuple<bool>, F::ArgumentTuple>(); in TEST() [all …]
|
/external/gmock/test/ |
D | gmock-generated-internal-utils_test.cc | 75 typedef Function<int()> F; // NOLINT in TEST() typedef 76 CompileAssertTypesEqual<int, F::Result>(); in TEST() 77 CompileAssertTypesEqual<tuple<>, F::ArgumentTuple>(); in TEST() 78 CompileAssertTypesEqual<tuple<>, F::ArgumentMatcherTuple>(); in TEST() 79 CompileAssertTypesEqual<void(), F::MakeResultVoid>(); in TEST() 80 CompileAssertTypesEqual<IgnoredValue(), F::MakeResultIgnoredValue>(); in TEST() 84 typedef Function<int(bool)> F; // NOLINT in TEST() typedef 85 CompileAssertTypesEqual<int, F::Result>(); in TEST() 86 CompileAssertTypesEqual<bool, F::Argument1>(); in TEST() 87 CompileAssertTypesEqual<tuple<bool>, F::ArgumentTuple>(); in TEST() [all …]
|