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

1 2 3 4 5 6 7

  /external/icu4c/test/testdata/
NumberFormatTestCases.txt 12 rt: "0.###" 1.0 "1"
21 rt: "0" 1234 "1234"
31 rt: "@@@@" 0.0012 "0.001200"
34 rt: "@###" 0.00123 "0.00123"
35 rt: - 123000 "123000"
41 rt: - 123000 "123,000"
43 rt: - 0.9999 "0.9999"
45 rt: "@##E0" 20000 "2E4"
46 rt: - 27000 "2.7E4"
47 rt: - 27100 "2.71E4
    [all...]
  /bionic/libc/netbsd/resolv/
res_state.c 66 _res_thread* rt = calloc(1, sizeof(*rt)); local
68 if (rt) {
69 rt->_h_errno = 0;
71 rt->_serial = 0;
72 rt->_pi = (struct prop_info*) __system_property_find("net.change");
73 if (rt->_pi) {
74 rt->_serial = rt->_pi->serial;
76 memset(rt->_rstatic, 0, sizeof rt->_rstatic)
98 _res_thread* rt = _rt; local
116 _res_thread* rt; local
198 _res_thread* rt = _res_thread_get(); local
207 _res_thread* rt = _res_thread_get(); local
222 _res_thread* rt = _res_thread_get(); local
    [all...]
  /external/kernel-headers/original/linux/sunrpc/
timer.h 22 extern void rpc_init_rtt(struct rpc_rtt *rt, unsigned long timeo);
23 extern void rpc_update_rtt(struct rpc_rtt *rt, unsigned timer, long m);
24 extern unsigned long rpc_calc_rto(struct rpc_rtt *rt, unsigned timer);
26 static inline void rpc_set_timeo(struct rpc_rtt *rt, int timer, int ntimeo)
31 t = &rt->ntimeouts[timer-1];
42 static inline int rpc_ntimeo(struct rpc_rtt *rt, int timer)
46 return rt->ntimeouts[timer-1];
  /system/core/toolbox/
route.c 53 struct rtentry rt = { local
64 rt.rt_flags = RTF_UP;
65 rt.rt_dev = argv[4];
72 rt.rt_flags = RTF_UP | RTF_GATEWAY;
73 rt.rt_dev = argv[6];
74 if (set_address(argv[4], &rt.rt_gateway)) {
85 rt.rt_flags = RTF_UP | RTF_GATEWAY;
86 if (set_address(argv[3], &rt.rt_dst) &&
87 set_address(argv[5], &rt.rt_genmask) &&
88 set_address(argv[7], &rt.rt_gateway))
    [all...]
  /external/dhcpcd/
configure.h 37 int route_deleted(const struct rt *);
configure.c 64 static struct rt *routes;
362 static struct rt *
363 find_route(struct rt *rts, const struct rt *r, struct rt **lrt,
364 const struct rt *srt)
366 struct rt *rt; local
370 for (rt = rts; rt; rt = rt->next)
489 struct rt *rt; local
529 struct rt *rt, *nrt = NULL, *r = NULL; local
640 struct rt *nrs = NULL, *dnr, *or, *rt, *rtn, *rtl, *lrt = NULL; local
723 struct rt *rt; local
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
RTSettings.java 9 package com.vladium.emma.rt;
13 * Conceptually, this class is an extention of class RT. This is a separate class,
14 * however, to help load RT in a lazy manner.
IClassLoadHook.java 9 package com.vladium.emma.rt;
ClassPathCacheEntry.java 9 package com.vladium.emma.rt;
  /external/v8/src/mips/
jump-target-mips.cc 47 #define BRANCH_ARGS_CHECK(cond, rs, rt) ASSERT( \
48 (cond == cc_always && rs.is(zero_reg) && rt.rm().is(zero_reg)) || \
49 (cond != cc_always && (!rs.is(zero_reg) || !rt.rm().is(zero_reg))))
disasm-mips.cc 305 } else if (format[1] == 't') { // 'rt: rt register
441 Format(instr, "mfc1 'rt, 'fs");
444 Format(instr, "mfhc1 'rt, 'fs");
447 Format(instr, "mtc1 'rt, 'fs");
451 Format(instr, "ctc1 'rt, 'fs");
454 Format(instr, "cfc1 'rt, 'fs");
457 Format(instr, "mthc1 'rt, 'fs");
604 Format(instr, "sll 'rd, 'rt, 'sa");
608 Format(instr, "srl 'rd, 'rt, 'sa")
    [all...]
  /external/clang/runtime/
Makefile 15 PARALLEL_DIRS := compiler-rt libcxx
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
PipedOutputStreamTest.java 74 Thread rt; field in class:PipedOutputStreamTest
100 rt = new Thread(reader = new PReader(out));
101 rt.start();
126 rt = new Thread(reader = new PReader(out));
127 rt.start();
140 rt = new Thread(reader = new PReader(out));
141 rt.start();
153 rt = new Thread(reader = new PReader(out));
154 rt.start();
214 rt = new Thread(reader = new PReader(out))
    [all...]
  /frameworks/base/cmds/ip-up-vpn/
ip-up-vpn.c 88 struct rtentry rt; local
91 memset(&rt, 0, sizeof(rt));
95 rt.rt_flags |= RTF_UP | RTF_HOST;
96 if (set_address(&rt.rt_dst, env("REMOTE_ADDR"))) {
97 while (!ioctl(s, SIOCDELRT, &rt));
105 rt.rt_flags |= RTF_GATEWAY;
106 if (!set_address(&rt.rt_gateway, argv[1]) ||
107 (ioctl(s, SIOCADDRT, &rt) && errno != EEXIST)) {
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
RenderServer.cpp 88 RenderThread *rt = RenderThread::create(stream); local
89 if (!rt) {
94 if (!rt->start()) {
97 delete rt;
120 threads.insert(rt);
RenderThread.cpp 36 RenderThread *rt = new RenderThread(); local
37 if (!rt) {
41 rt->m_stream = p_stream;
43 return rt;
  /development/tools/emulator/opengl/tests/ut_renderer/
ut_renderer.cpp 56 RenderingThread *rt = new RenderingThread(glStream); local
57 rt->start();
  /external/webkit/Source/JavaScriptCore/assembler/
MIPSAssembler.h 263 void lui(RegisterID rt, int imm)
265 emitInst(0x3c000000 | (rt << OP_SH_RT) | (imm & 0xffff));
268 void addiu(RegisterID rt, RegisterID rs, int imm)
270 emitInst(0x24000000 | (rt << OP_SH_RT) | (rs << OP_SH_RS)
274 void addu(RegisterID rd, RegisterID rs, RegisterID rt)
277 | (rt << OP_SH_RT));
280 void subu(RegisterID rd, RegisterID rs, RegisterID rt)
283 | (rt << OP_SH_RT));
286 void mult(RegisterID rs, RegisterID rt)
288 emitInst(0x00000018 | (rs << OP_SH_RS) | (rt << OP_SH_RT))
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldPipedOutputStreamTest.java 79 Thread rt; field in class:OldPipedOutputStreamTest
117 rt = new Thread(reader = new PReader(out));
118 rt.start();
159 rt = new Thread(reader = new PReader(out));
160 rt.start();
204 rt = new Thread(reader = new PReader(out));
205 rt.start();
234 rt = new Thread(reader = new PReader(out));
235 rt.start();
242 rt.interrupt()
    [all...]
  /frameworks/compile/libbcc/runtime/test/Unit/
umodti3_test.c 32 utwords rt; local
33 rt.all = r;
38 at.s.high, at.s.low, bt.s.high, bt.s.low, rt.s.high, rt.s.low,
  /frameworks/compile/linkloader/include/impl/
ELFSectionRelTable.hxx 54 llvm::OwningPtr<ELFSectionRelTable> rt(new ELFSectionRelTable());
66 rt->table.push_back(ELFRelocTy::readRel(AR, i));
72 rt->table.push_back(ELFRelocTy::readRela(AR, i));
81 return rt.take();
  /external/proguard/examples/
proguard.pro 14 -libraryjars <java.home>/lib/rt.jar
retrace.pro 17 -libraryjars <java.home>/lib/rt.jar
  /external/llvm/projects/
Makefile 17 # Don't build compiler-rt, it isn't designed to be built directly.
18 DIRS := $(filter-out compiler-rt,$(DIRS))
  /external/webkit/Source/WebCore/rendering/
RenderRubyRun.cpp 217 RenderRubyText* rt = rubyText(); local
218 if (!rt)
221 rt->setChildNeedsLayout(true, false);
222 rt->layoutIfNeeded();
223 return rt;
231 RenderRubyText* rt = rubyText(); local
232 if (!rt)
235 int lastLineRubyTextBottom = rt->logicalHeight();
237 RootInlineBox* rootBox = rt->lastRootBox();
240 firstLineRubyTextTop = rt->firstRootBox()->logicalTopLayoutOverflow()
    [all...]

Completed in 893 milliseconds

1 2 3 4 5 6 7