HomeSort by relevance Sort by last modified time
    Searched refs:inf (Results 1 - 25 of 236) sorted by null

1 2 3 4 5 6 7 8 910

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istream.iterator/istream.iterator.cons/
istream.pass.cpp 22 std::istringstream inf(" 1 23");
23 std::istream_iterator<int> i(inf);
25 assert(inf.peek() == ' ');
26 assert(inf.good());
28 inf >> j;
copy.pass.cpp 28 std::istringstream inf(" 1 23");
29 std::istream_iterator<int> io(inf);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator.cons/
istream.pass.cpp 23 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);
streambuf.pass.cpp 27 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());
proxy.pass.cpp 23 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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_proxy/
proxy.pass.cpp 35 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/
test.cc 14 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.close()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op++/
dereference.pass.cpp 23 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/valgrind/main/coregrind/m_gdbserver/
inferiors.c 39 #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 != NULL)
184 struct inferior_list_entry *inf = list->head; local
198 struct inferior_list_entry *inf = list->head; local
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
InflaterOutputStream.java 34 protected final Inflater inf; field in class:InflaterOutputStream
56 * @param inf the {@code Inflater} to be used for decompression
58 public InflaterOutputStream(OutputStream out, Inflater inf) {
59 this(out, inf, DEFAULT_BUFFER_SIZE);
68 * @param inf the {@code Inflater} to be used for decompression
71 public InflaterOutputStream(OutputStream out, Inflater inf, int bufferSize) {
75 } else if (inf == null) {
76 throw new NullPointerException("inf == null");
81 this.inf = inf;
    [all...]
InflaterInputStream.java 42 protected Inflater inf; field in class:InflaterInputStream
114 this.inf = inflater;
152 if (inf.needsInput()) {
158 int result = inf.inflate(buffer, byteOffset, byteCount);
159 eof = inf.finished();
164 } else if (inf.needsDictionary()) {
192 len = is.fill(inf, nativeEndBufSize);
195 inf.setInput(buf, 0, len);
249 inf.end();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op_astrk/
post_increment.pass.cpp 23 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);
pre_increment.pass.cpp 24 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/
fitblk.c 92 /* recompress from inf's input to def's output; the input for inf and
96 local int recompress(z_streamp inf, z_streamp def)
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.zalloc = Z_NULL
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istream.iterator/istream.iterator.ops/
dereference.pass.cpp 22 std::istringstream inf(" 1 23");
23 std::istream_iterator<int> i(inf);
post_increment.pass.cpp 22 std::istringstream inf(" 1 23");
23 std::istream_iterator<int> i(inf);
pre_increment.pass.cpp 22 std::istringstream inf(" 1 23");
23 std::istream_iterator<int> i(inf);
arrow.pass.cpp 33 std::istringstream inf("1.5 23 ");
34 std::istream_iterator<A> i(inf);
  /external/valgrind/main/none/tests/ppc32/
power5+_round.c 44 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.0, 1.0, 0, neg0, -1.0, -1.0, -inf, nan }
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3prin.c 70 FILE *inf; local
79 if(!(inf = fopen(argv[1], "r"))) {
83 if(!(cert = PEM_read_X509(inf, NULL, NULL))) {
88 fclose(inf);
v3conf.c 73 FILE *inf; local
93 inf = fopen(argv[1], "r");
94 if(!inf) {
98 cert = PEM_read_X509(inf, NULL, NULL);
103 fclose(inf);
  /external/openssl/crypto/x509v3/
v3prin.c 70 FILE *inf; local
79 if(!(inf = fopen(argv[1], "r"))) {
83 if(!(cert = PEM_read_X509(inf, NULL, NULL))) {
88 fclose(inf);
v3conf.c 73 FILE *inf; local
93 inf = fopen(argv[1], "r");
94 if(!inf) {
98 cert = PEM_read_X509(inf, NULL, NULL);
103 fclose(inf);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.ops/
complex_times_complex.pass.cpp 59 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...]
complex_divide_complex.pass.cpp 57 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 342 milliseconds

1 2 3 4 5 6 7 8 910