/libcore/luni/src/main/java/javax/xml/datatype/ |
FactoryFinder.java | 253 BufferedReader rd; local 255 rd = new BufferedReader(new InputStreamReader(is, "UTF-8"), DEFAULT_LINE_LENGTH); 257 rd = new BufferedReader(new InputStreamReader(is), DEFAULT_LINE_LENGTH); 264 factoryClassName = rd.readLine(); 269 IoUtils.closeQuietly(rd);
|
/libcore/luni/src/main/java/javax/xml/validation/ |
SchemaFactoryFinder.java | 336 BufferedReader rd; local 338 rd = new BufferedReader(new InputStreamReader(in, "UTF-8"), DEFAULT_LINE_LENGTH); 340 rd = new BufferedReader(new InputStreamReader(in), DEFAULT_LINE_LENGTH); 348 factoryClassName = rd.readLine(); 383 IoUtils.closeQuietly(rd);
|
/libcore/luni/src/main/java/javax/xml/xpath/ |
XPathFactoryFinder.java | 270 BufferedReader rd; local 272 rd = new BufferedReader(new InputStreamReader(in, "UTF-8"), DEFAULT_LINE_LENGTH); 274 rd = new BufferedReader(new InputStreamReader(in), DEFAULT_LINE_LENGTH); 282 factoryClassName = rd.readLine(); 317 IoUtils.closeQuietly(rd);
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldPipedWriterTest.java | 88 PipedReader rd = new PipedReader(); local 91 pw = new PipedWriter(rd); 96 readerThread = new Thread(reader = new PReader(rd), "Constructor(Reader)"); 108 rd = new PipedReader(new PipedWriter()); 110 pw = new PipedWriter(rd); 118 PipedReader rd = new PipedReader(); local 119 pw = new PipedWriter(rd); 120 reader = new PReader(rd); 129 PipedReader rd = new PipedReader(); local 133 pw.connect(rd); [all...] |
/toolchain/binutils/binutils-2.25/gold/ |
gold.cc | 636 // Update the value of output_section stored in rd. 637 Read_relocs_data* rd = (*p)->get_relocs_data(); local 638 for (Read_relocs_data::Relocs_list::iterator q = rd->relocs.begin(); 639 q != rd->relocs.end();
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
strtodg.c | 178 (d, fpi, exp, bits, exact, rd, irv) 179 U *d; FPI *fpi; Long *exp; ULong *bits; int exact, rd, *irv; 181 (U *d, FPI *fpi, Long *exp, ULong *bits, int exact, int rd, int *irv) 215 switch(rd) { 348 int j, k, nbits, nd, nd0, nf, nz, nz0, rd, rvbits, rve, rve1, sign; local 554 rd = 0; 557 rd = 2 - sign; 560 rd = 1; 563 rd = 1 + sign; 580 if (rvOK(&rv, fpi, exp, bits, 1, rd, &irv)) [all...] |
/external/c-ares/ |
adig.c | 416 int id, qr, opcode, aa, tc, rd, ra, rcode; local 446 rd = DNS_HEADER_RD(abuf); 460 rd ? "rd " : "",
|
/external/deqp/modules/gles2/functional/ |
es2fDepthRangeTests.cpp | 249 float rd = 1.0f - (xh + yf) * 0.5f; local 251 bool dpass = compare(m_compareFunc, d, rd);
|
/external/deqp/modules/gles3/functional/ |
es3fFragDepthTests.cpp | 256 float rd = 1.0f - (xh + yf) * 0.5f; local 258 bool dpass = compare(m_compareFunc, d, rd);
|
/external/icu/icu4c/source/test/intltest/ |
tchcfmt.cpp | 423 double rd = (result.getType() == Formattable::kLong) ? result.getLong() : result.getDouble(); local 424 if (rd == 3.0) { 431 rd = (result.getType() == Formattable::kLong) ? result.getLong() : result.getDouble(); 432 if (rd == 3.0) {
|
/external/ltrace/sysdeps/linux-gnu/ |
proc.c | 426 struct lt_r_debug_32 rd; local 427 if (umovebytes(proc, addr, &rd, sizeof(rd)) != sizeof(rd)) 430 ret->r_version = rd.r_version; 431 ret->r_map = rd.r_map; 432 ret->r_brk = rd.r_brk; 433 ret->r_state = rd.r_state; 434 ret->r_ldbase = rd.r_ldbase;
|
/external/toybox/toys/pending/ |
telnetd.c | 307 fd_set rd, wr; local 342 FD_ZERO(&rd); 344 if (!inetd_m) FD_SET(master_fd, &rd); 349 if (tm->pty_fd > 0 && tm->buff1_avail < BUFSIZE) FD_SET(tm->pty_fd, &rd); 350 if (tm->new_fd >= 0 && tm->buff2_avail < BUFSIZE) FD_SET(tm->new_fd, &rd); 359 int r = select(TT.gmax_fd + 1, &rd, &wr, NULL, tv_ptr); 363 if (!inetd_m && FD_ISSET(master_fd, &rd)) { //accept new connection 384 if (FD_ISSET(tm->pty_fd, &rd)) { 392 if (FD_ISSET(tm->new_fd, &rd)) {
|
diff.c | 181 int rd, wr, tmpfd = mkstemp(tmp_name); local 187 rd = xread(STDIN_FILENO, toybuf, sizeof(toybuf)); 189 if (!rd) break; 190 if (rd < 0) perror_exit("read error"); 191 wr = writeall(tmpfd, toybuf, rd);
|
/external/valgrind/VEX/priv/ |
guest_tilegx_toIR.c | 294 ULong cins, opcode = -1, rd, ra, rb, imm = 0; local 425 rd = ra = rb = -1; 435 /* Set the operands. rd, ra, rb and imm. */ 438 if (rd == -1) 439 rd = decoded[n].operand_values[opi]; 488 MARK_REG_WB(rd, t2); 493 MARK_REG_WB(rd, t2); 498 MARK_REG_WB(rd, t2); 537 MARK_REG_WB(rd, t2); 543 MARK_REG_WB(rd, t2) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
PipedWriterTest.java | 79 PipedReader rd = new PipedReader(); local 80 pw = new PipedWriter(rd); 81 rdrThread = new Thread(reader = new PReader(rd), "Constructor(Reader)"); 97 PipedReader rd = new PipedReader(); local 98 pw = new PipedWriter(rd); 99 reader = new PReader(rd); 116 PipedReader rd = new PipedReader(); local 118 pw.connect(rd); 119 rdrThread = new Thread(reader = new PReader(rd), "connect");
|
/toolchain/binutils/binutils-2.25/binutils/ |
rescoff.c | 184 rc_res_directory *rd; 194 rd = (rc_res_directory *) res_alloc (sizeof (rc_res_directory)); 195 rd->characteristics = windres_get_32 (wrbfd, erd->characteristics, 4); 196 rd->time = windres_get_32 (wrbfd, erd->time, 4); 197 rd->major = windres_get_16 (wrbfd, erd->major, 2); 198 rd->minor = windres_get_16 (wrbfd, erd->minor, 2); 199 rd->entries = NULL; 204 pp = &rd->entries; 304 return rd; 428 coff_res_data *rd; 183 rc_res_directory *rd; local 426 coff_res_data *rd; local [all...] |
/toolchain/binutils/binutils-2.25/opcodes/ |
dlx-dis.c | 39 unsigned char opc, rs1, rs2, rd; variable 170 (*info->fprintf_func) (info->stream, "r%d,", (int)rd); 466 rd = dlx_get_rdR (insn_word); 475 " rd = 0x%02x\n" 479 opc, rs1, rs2, rd, func, imm16, imm26);
|
/frameworks/base/core/java/android/app/ |
LoadedApk.java | 882 LoadedApk.ReceiverDispatcher rd = rmap.valueAt(i); local 937 LoadedApk.ReceiverDispatcher rd = null; local 967 LoadedApk.ReceiverDispatcher rd = null; local 1027 final LoadedApk.ReceiverDispatcher rd; local [all...] |
/bionic/libc/include/arpa/ |
nameser_compat.h | 62 unsigned rd: 1; /* recursion desired */ member in struct:__anon164 72 unsigned rd :1; /* recursion desired */ member in struct:__anon164
|
/development/ndk/platforms/android-21/include/arpa/ |
nameser_compat.h | 109 unsigned rd: 1; /* recursion desired */ member in struct:__anon1464 119 unsigned rd :1; /* recursion desired */ member in struct:__anon1464
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/ |
p5-0x.cpp | 94 double& rd = d; member in namespace:std_example_1
|
/external/fio/engines/ |
rdma.c | 121 struct rdmaio_data *rd = td->io_ops->data; local 123 if (wc->byte_len != sizeof(rd->recv_buf)) { 129 if ((rd->rdma_protocol == FIO_RDMA_MEM_WRITE) || 130 (rd->rdma_protocol == FIO_RDMA_MEM_READ)) { 134 rd->rmt_nr = ntohl(rd->recv_buf.nr); 136 for (i = 0; i < rd->rmt_nr; i++) { 137 rd->rmt_us[i].buf = ntohll(rd->recv_buf.rmt_us[i].buf); 138 rd->rmt_us[i].rkey = ntohl(rd->recv_buf.rmt_us[i].rkey) 153 struct rdmaio_data *rd = td->io_ops->data; local 168 struct rdmaio_data *rd = td->io_ops->data; local 275 struct rdmaio_data *rd = td->io_ops->data; local 312 struct rdmaio_data *rd = td->io_ops->data; local 392 struct rdmaio_data *rd = td->io_ops->data; local 436 struct rdmaio_data *rd = td->io_ops->data; local 468 struct rdmaio_data *rd = td->io_ops->data; local 511 struct rdmaio_data *rd = td->io_ops->data; local 529 struct rdmaio_data *rd = td->io_ops->data; local 591 struct rdmaio_data *rd = td->io_ops->data; local 654 struct rdmaio_data *rd = td->io_ops->data; local 690 struct rdmaio_data *rd = td->io_ops->data; local 708 struct rdmaio_data *rd = td->io_ops->data; local 731 struct rdmaio_data *rd = td->io_ops->data; local 763 struct rdmaio_data *rd = td->io_ops->data; local 812 struct rdmaio_data *rd = td->io_ops->data; local 855 struct rdmaio_data *rd = td->io_ops->data; local 911 struct rdmaio_data *rd = td->io_ops->data; local 975 struct rdmaio_data *rd = td->io_ops->data; local 1051 struct rdmaio_data *rd = td->io_ops->data; local 1191 struct rdmaio_data *rd = td->io_ops->data; local 1199 struct rdmaio_data *rd; local [all...] |
/external/jemalloc/include/jemalloc/internal/ |
arena.h | 172 arena_runs_dirty_link_t rd; member in union:arena_chunk_map_misc_s::__anon14255 378 * ...->|runs_dirty |<-->|rd |<-->|rd |<---->|rd |<----... 608 arena_chunk_map_misc_t *arena_rd_to_miscelm(arena_runs_dirty_link_t *rd); 708 arena_rd_to_miscelm(arena_runs_dirty_link_t *rd) 711 *)((uintptr_t)rd - offsetof(arena_chunk_map_misc_t, rd)); [all...] |
/external/libpcap/Win32/Include/arpa/ |
nameser.h | 260 unsigned rd: 1; /* recursion desired */ member in struct:__anon17572 269 unsigned rd :1; /* recursion desired */ member in struct:__anon17572
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_rd.c | 61 // The baseline rd thresholds for breaking out of the rd loop for 236 static void set_block_thresholds(const VP9_COMMON *cm, RD_OPT *rd) { 253 rd->threshes[segment_id][bsize][i] = 254 rd->thresh_mult[i] < thresh_max 255 ? rd->thresh_mult[i] * t / 4 259 rd->threshes[segment_id][bsize][i] = 260 rd->thresh_mult_sub8x8[i] < thresh_max 261 ? rd->thresh_mult_sub8x8[i] * t / 4 272 RD_OPT *const rd = &cpi->rd local 566 RD_OPT *const rd = &cpi->rd; local 622 RD_OPT *const rd = &cpi->rd; local [all...] |