Home
last modified time | relevance | path

Searched refs:F (Results 1 – 25 of 2488) sorted by relevance

12345678910>>...100

/external/libunwind/tests/
Dtest-flush-cache.c60 #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/
Druntime.h24 #define RUNTIME_FUNCTION_LIST_ALWAYS_1(F) \ argument
26 F(GetProperty, 2, 1) \
27 F(KeyedGetProperty, 2, 1) \
28 F(DeleteProperty, 3, 1) \
29 F(HasOwnProperty, 2, 1) \
30 F(HasProperty, 2, 1) \
31 F(HasElement, 2, 1) \
32 F(IsPropertyEnumerable, 2, 1) \
33 F(GetPropertyNames, 1, 1) \
34 F(GetPropertyNamesFast, 1, 1) \
[all …]
/external/clang/test/CodeGen/
Dlibcall-declarations.c262 #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/
DCollationTest_SHIFTED_SHORT.txt9 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 …]
DCollationTest_NON_IGNORABLE_SHORT.txt47 0334 059F
48 059F 0334
492 0334 033F
493 033F 0334
596 031F 0334
597 0334 031F
608 032F 0334
609 0334 032F
642 0334 035F
643 035F 0334
[all …]
/external/icu/icu4c/source/test/testdata/
DCollationTest_SHIFTED_SHORT.txt9 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 …]
DCollationTest_NON_IGNORABLE_SHORT.txt47 0334 059F
48 059F 0334
492 0334 033F
493 033F 0334
596 031F 0334
597 0334 031F
608 032F 0334
609 0334 032F
642 0334 035F
643 035F 0334
[all …]
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
Dis_many.pass.cpp32 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 …]
Dis_1.pass.cpp29 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/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
Dis_many.pass.cpp27 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 …]
Dis_1.pass.cpp23 typedef std::ctype<char> F; in main() typedef
24 const F& f = std::use_facet<F>(l); in main()
26 assert(f.is(F::space, ' ')); in main()
27 assert(!f.is(F::space, 'A')); in main()
29 assert(f.is(F::print, ' ')); in main()
30 assert(!f.is(F::print, '\x07')); in main()
32 assert(f.is(F::cntrl, '\x07')); in main()
33 assert(!f.is(F::cntrl, ' ')); in main()
35 assert(f.is(F::upper, 'A')); in main()
36 assert(!f.is(F::upper, 'a')); in main()
[all …]
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
Dis_many.pass.cpp27 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 …]
Dis_1.pass.cpp23 typedef std::ctype<wchar_t> F; in main() typedef
24 const F& f = std::use_facet<F>(l); in main()
26 assert(f.is(F::space, L' ')); in main()
27 assert(!f.is(F::space, L'A')); in main()
29 assert(f.is(F::print, L' ')); in main()
30 assert(!f.is(F::print, L'\x07')); in main()
32 assert(f.is(F::cntrl, L'\x07')); in main()
33 assert(!f.is(F::cntrl, L' ')); in main()
35 assert(f.is(F::upper, L'A')); in main()
36 assert(!f.is(F::upper, L'a')); in main()
[all …]
/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp64 bool IsFunctionMallocLike(Function *F,
73 void setDoesNotAccessMemory(Function &F) { in setDoesNotAccessMemory()
74 if (!F.doesNotAccessMemory()) { in setDoesNotAccessMemory()
75 F.setDoesNotAccessMemory(); in setDoesNotAccessMemory()
80 void setOnlyReadsMemory(Function &F) { in setOnlyReadsMemory()
81 if (!F.onlyReadsMemory()) { in setOnlyReadsMemory()
82 F.setOnlyReadsMemory(); in setOnlyReadsMemory()
87 void setDoesNotThrow(Function &F) { in setDoesNotThrow()
88 if (!F.doesNotThrow()) { in setDoesNotThrow()
89 F.setDoesNotThrow(); in setDoesNotThrow()
[all …]
/external/openssh/
Dverify.c15 #define F(i) differentbits |= x[i] ^ y[i]; in crypto_verify_32() macro
16 F(0) in crypto_verify_32()
17 F(1) in crypto_verify_32()
18 F(2) in crypto_verify_32()
19 F(3) in crypto_verify_32()
20 F(4) in crypto_verify_32()
21 F(5) in crypto_verify_32()
22 F(6) in crypto_verify_32()
23 F(7) in crypto_verify_32()
24 F(8) in crypto_verify_32()
[all …]
Dblocks.c70 #define F(w,k) \ macro
123 F(w0 ,0x428a2f98d728ae22ULL) in crypto_hashblocks_sha512()
124 F(w1 ,0x7137449123ef65cdULL) in crypto_hashblocks_sha512()
125 F(w2 ,0xb5c0fbcfec4d3b2fULL) in crypto_hashblocks_sha512()
126 F(w3 ,0xe9b5dba58189dbbcULL) in crypto_hashblocks_sha512()
127 F(w4 ,0x3956c25bf348b538ULL) in crypto_hashblocks_sha512()
128 F(w5 ,0x59f111f1b605d019ULL) in crypto_hashblocks_sha512()
129 F(w6 ,0x923f82a4af194f9bULL) in crypto_hashblocks_sha512()
130 F(w7 ,0xab1c5ed5da6d8118ULL) in crypto_hashblocks_sha512()
131 F(w8 ,0xd807aa98a3030242ULL) in crypto_hashblocks_sha512()
[all …]
/external/clang/test/SemaCXX/
Dtype-traits.cpp3 #define F(b) (b) ? -1 : 1 macro
181 { int arr[F(__is_pod(HasCons))]; } in is_pod()
182 { int arr[F(__is_pod(HasCopyAssign))]; } in is_pod()
183 { int arr[F(__is_pod(HasMoveAssign))]; } in is_pod()
184 { int arr[F(__is_pod(HasDest))]; } in is_pod()
185 { int arr[F(__is_pod(HasRef))]; } in is_pod()
186 { int arr[F(__is_pod(HasVirt))]; } in is_pod()
187 { int arr[F(__is_pod(DerivesHasCons))]; } in is_pod()
188 { int arr[F(__is_pod(DerivesHasCopyAssign))]; } in is_pod()
189 { int arr[F(__is_pod(DerivesHasMoveAssign))]; } in is_pod()
[all …]
/external/google-breakpad/src/testing/include/gmock/
Dgmock-generated-function-mockers.h49 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/
Dgenerate_canonical.pass.cpp22 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/
Diter_iter_flg.pass.cpp34 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/clang/test/Analysis/
Dsimple-stream-checks.c6 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/
Dclassic_table.pass.cpp21 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/valgrind/VEX/orig_ppc32/
Dmorefp.orig26 … 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/google-breakpad/src/testing/test/
Dgmock-generated-internal-utils_test.cc75 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/mesa3d/src/glx/
Dvertarr.c108 #define F(x) {GL_FLOAT, x, x * sizeof(GLfloat)} in __indirect_glInterleavedArrays() macro
139 {NONE, NONE, NONE, F(2)}, /* GL_V2F */ in __indirect_glInterleavedArrays()
140 {NONE, NONE, NONE, F(3)}, /* GL_V3F */ in __indirect_glInterleavedArrays()
141 {NONE, UB4, NONE, F(2)}, /* GL_C4UB_V2F */ in __indirect_glInterleavedArrays()
142 {NONE, UB4, NONE, F(3)}, /* GL_C4UB_V3F */ in __indirect_glInterleavedArrays()
143 {NONE, F(3), NONE, F(3)}, /* GL_C3F_V3F */ in __indirect_glInterleavedArrays()
144 {NONE, NONE, F(3), F(3)}, /* GL_N3F_V3F */ in __indirect_glInterleavedArrays()
145 {NONE, F(4), F(3), F(3)}, /* GL_C4F_N3F_V3F */ in __indirect_glInterleavedArrays()
146 {F(2), NONE, NONE, F(3)}, /* GL_T2F_V3F */ in __indirect_glInterleavedArrays()
147 {F(4), NONE, NONE, F(4)}, /* GL_T4F_V4F */ in __indirect_glInterleavedArrays()
[all …]

12345678910>>...100