Searched refs:inf (Results 1 - 25 of 195) sorted by relevance

12345678

/external/libcxx/test/iterators/stream.iterators/istream.iterator/istream.iterator.cons/
H A Distream.pass.cpp22 std::istringstream inf(" 1 23");
23 std::istream_iterator<int> i(inf);
25 assert(inf.peek() == ' ');
26 assert(inf.good());
28 inf >> j;
H A Dcopy.pass.cpp28 std::istringstream inf(" 1 23");
29 std::istream_iterator<int> io(inf);
/external/libcxx/test/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator.cons/
H A Distream.pass.cpp23 std::istringstream inf; local
24 std::istreambuf_iterator<char> i(inf);
28 std::istringstream inf("a");
29 std::istreambuf_iterator<char> i(inf);
33 std::wistringstream inf; local
34 std::istreambuf_iterator<wchar_t> i(inf);
38 std::wistringstream inf(L"a");
39 std::istreambuf_iterator<wchar_t> i(inf);
H A Dstreambuf.pass.cpp27 std::istringstream inf; local
28 std::istreambuf_iterator<char> i(inf.rdbuf());
32 std::istringstream inf("a");
33 std::istreambuf_iterator<char> i(inf.rdbuf());
41 std::wistringstream inf; local
42 std::istreambuf_iterator<wchar_t> i(inf.rdbuf());
46 std::wistringstream inf(L"a");
47 std::istreambuf_iterator<wchar_t> i(inf.rdbuf());
H A Dproxy.pass.cpp23 std::istringstream inf("abc");
24 std::istreambuf_iterator<char> j(inf);
30 std::wistringstream inf(L"abc");
31 std::istreambuf_iterator<wchar_t> j(inf);
/external/libcxx/test/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_proxy/
H A Dproxy.pass.cpp35 std::istringstream inf("abc");
36 std::istreambuf_iterator<char> i(inf);
40 std::wistringstream inf(L"abc");
41 std::istreambuf_iterator<wchar_t> i(inf);
/external/zlib/src/contrib/iostream3/
H A Dtest.cc14 gzifstream inf; local
26 inf.open("test1.txt.gz");
27 while (inf.getline(buf,80,'\n')) {
28 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n";
30 inf.close();
41 inf.rdbuf()->pubsetbuf(0,0);
42 inf.open("test2.txt.gz");
43 while (inf.getline(buf,80,'\n')) {
44 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n";
46 inf
[all...]
/external/libcxx/test/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op++/
H A Ddereference.pass.cpp23 std::istringstream inf("abc");
24 std::istreambuf_iterator<char> i(inf);
32 std::wistringstream inf(L"abc");
33 std::istreambuf_iterator<wchar_t> i(inf);
/external/chromium_org/v8/test/cctest/
H A Dtest-checks.cc19 double inf = V8_INFINITY; local
21 double constants[] = {-nan, -inf, -3.1415, -1.0, -0.1, -0.0,
22 0.0, 0.1, 1.0, 3.1415, inf, nan};
/external/valgrind/main/coregrind/m_gdbserver/
H A Dinferiors.c39 #define get_thread(inf) ((struct thread_info *)(inf))
119 struct inferior_list_entry *inf = all_threads.head; local
121 while (inf != NULL) {
122 struct thread_info *thread = get_thread (inf);
123 if (inf->id == thread_id)
125 inf = inf->next;
138 struct inferior_list_entry *inf = all_threads.head; local
140 while (inf !
158 free_one_thread(struct inferior_list_entry *inf) argument
184 struct inferior_list_entry *inf = list->head; local
198 struct inferior_list_entry *inf = list->head; local
[all...]
/external/libcxx/test/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op_astrk/
H A Dpost_increment.pass.cpp23 std::istringstream inf("abc");
24 std::istreambuf_iterator<char> i(inf);
31 std::wistringstream inf(L"abc");
32 std::istreambuf_iterator<wchar_t> i(inf);
H A Dpre_increment.pass.cpp24 std::istringstream inf("abc");
25 std::istreambuf_iterator<char> i(inf);
32 std::wistringstream inf(L"abc");
33 std::istreambuf_iterator<wchar_t> i(inf);
/external/zlib/src/examples/
H A Dfitblk.c92 /* recompress from inf's input to def's output; the input for inf and
96 local int recompress(z_streamp inf, z_streamp def) argument
104 inf->avail_out = RAWLEN;
105 inf->next_out = raw;
106 ret = inflate(inf, Z_NO_FLUSH);
113 def->avail_in = RAWLEN - inf->avail_out;
115 if (inf->avail_out != 0)
134 z_stream def, inf; /* zlib deflate and inflate states */ local
180 inf
[all...]
/external/chromium_org/v8/src/
H A Dicu_util.cc64 FILE* inf = fopen(icu_data_file, "rb");
65 if (!inf) return false;
67 fseek(inf, 0, SEEK_END);
68 size_t size = ftell(inf);
69 rewind(inf);
72 if (fread(g_icu_data_ptr, 1, size, inf) != size) {
75 fclose(inf);
78 fclose(inf);
/external/libcxx/test/iterators/stream.iterators/istream.iterator/istream.iterator.ops/
H A Ddereference.pass.cpp22 std::istringstream inf(" 1 23");
23 std::istream_iterator<int> i(inf);
H A Dpost_increment.pass.cpp22 std::istringstream inf(" 1 23");
23 std::istream_iterator<int> i(inf);
H A Dpre_increment.pass.cpp22 std::istringstream inf(" 1 23");
23 std::istream_iterator<int> i(inf);
H A Darrow.pass.cpp33 std::istringstream inf("1.5 23 ");
34 std::istream_iterator<A> i(inf);
/external/valgrind/main/none/tests/ppc32/
H A Dpower5+_round.c44 double inf, neg0, nan; local
52 inf = strtod("inf", NULL);
59 double set[] = { inf, 1.5, 0, neg0, -1.5, -inf, nan };
84 double set[] = { inf, 1.9, 1.1, 0, neg0, -1.1, -1.9, -inf, nan };
85 double frin[] = { inf, 2.0, 1.0, 0, neg0, -1.0, -2.0, -inf, nan };
86 double friz[] = { inf, 1.
[all...]
/external/valgrind/main/none/tests/s390x/
H A Drounding-6.stdout.exp3 cfebr 1.400000 -> 2 cc = 2 [-> +inf]
4 cfebr 1.400000 -> 1 cc = 2 [-> -inf]
7 cfebr 1.500000 -> 2 cc = 2 [-> +inf]
8 cfebr 1.500000 -> 1 cc = 2 [-> -inf]
11 cfebr 2.500000 -> 3 cc = 2 [-> +inf]
12 cfebr 2.500000 -> 2 cc = 2 [-> -inf]
15 cfebr 1.600000 -> 2 cc = 2 [-> +inf]
16 cfebr 1.600000 -> 1 cc = 2 [-> -inf]
19 cfebr -1.400000 -> -1 cc = 1 [-> +inf]
20 cfebr -1.400000 -> -2 cc = 1 [-> -inf]
[all...]
H A Drounding-1.stdout.exp3 cfdbr [->+inf] -2147483648.500000 -> -2147483648 cc = 1
4 cfdbr [->-inf] -2147483648.500000 -> -2147483648 cc = 3
H A Drounding-5.stdout.exp5 setting FPC rounding mode to [-> +inf]
7 setting FPC rounding mode to [-> -inf]
14 setting FPC rounding mode to [-> +inf]
16 setting FPC rounding mode to [-> -inf]
23 setting FPC rounding mode to [-> +inf]
25 setting FPC rounding mode to [-> -inf]
32 setting FPC rounding mode to [-> +inf]
34 setting FPC rounding mode to [-> -inf]
41 setting FPC rounding mode to [-> +inf]
43 setting FPC rounding mode to [-> -inf]
[all...]
/external/openssl/crypto/x509v3/
H A Dv3prin.c70 FILE *inf; local
79 if(!(inf = fopen(argv[1], "r"))) {
83 if(!(cert = PEM_read_X509(inf, NULL, NULL))) {
88 fclose(inf);
/external/libcxx/test/numerics/complex.number/complex.ops/
H A Dcomplex_times_complex.pass.cpp59 case inf:
79 case inf:
80 assert(classify(r) == inf);
90 case inf:
97 assert(classify(r) == inf);
99 case inf:
100 assert(classify(r) == inf);
106 assert(classify(r) == inf);
119 case inf:
139 case inf
[all...]
H A Dcomplex_divide_complex.pass.cpp57 case inf:
72 assert(classify(r) == inf);
77 case inf:
88 case inf:
92 assert(classify(r) == inf);
95 assert(classify(r) == inf);
97 case inf:
117 case inf:
132 assert(classify(r) == inf);
137 case inf
[all...]

Completed in 357 milliseconds

12345678