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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/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...]
  /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 = __system_property_serial(rt->_pi);
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/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_pipe_blend.c 97 blend->rt[i].blend_enable = TRUE;
98 blend->rt[i].srcblend = SVGA3D_BLENDOP_ONE;
99 blend->rt[i].dstblend = SVGA3D_BLENDOP_ONE;
100 blend->rt[i].blendeq = SVGA3D_BLENDEQ_SUBTRACT;
103 blend->rt[i].blend_enable = TRUE;
104 blend->rt[i].srcblend = SVGA3D_BLENDOP_ZERO;
105 blend->rt[i].dstblend = SVGA3D_BLENDOP_ZERO;
106 blend->rt[i].blendeq = SVGA3D_BLENDEQ_MINIMUM;
109 blend->rt[i].blend_enable = FALSE;
112 blend->rt[i].blend_enable = TRUE
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_blend.c 97 blend->rt[i].blend_enable = TRUE;
98 blend->rt[i].srcblend = SVGA3D_BLENDOP_ONE;
99 blend->rt[i].dstblend = SVGA3D_BLENDOP_ONE;
100 blend->rt[i].blendeq = SVGA3D_BLENDEQ_SUBTRACT;
103 blend->rt[i].blend_enable = TRUE;
104 blend->rt[i].srcblend = SVGA3D_BLENDOP_ZERO;
105 blend->rt[i].dstblend = SVGA3D_BLENDOP_ZERO;
106 blend->rt[i].blendeq = SVGA3D_BLENDEQ_MINIMUM;
109 blend->rt[i].blend_enable = FALSE;
112 blend->rt[i].blend_enable = TRUE
    [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];
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_dual_blend.h 17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
  /external/mesa3d/src/gallium/auxiliary/util/
u_dual_blend.h 17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
  /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...]
  /art/runtime/
reference_table_test.cc 30 ReferenceTable rt("test", 0, 11);
35 rt.Dump(oss);
37 EXPECT_EQ(0U, rt.Size());
41 rt.Remove(NULL);
42 EXPECT_EQ(0U, rt.Size());
45 rt.Remove(o1);
46 EXPECT_EQ(0U, rt.Size());
50 rt.Add(o1);
51 EXPECT_EQ(1U, rt.Size());
53 rt.Dump(oss)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
genrtl.h 11 rtx rt; local
12 rt = rtx_alloc_stat (code PASS_MEM_STAT);
14 PUT_MODE (rt, mode);
15 X0EXP (rt, 0) = NULL_RTX;
17 return rt;
28 rtx rt; local
29 rt = rtx_alloc_stat (code PASS_MEM_STAT);
31 PUT_MODE (rt, mode);
32 XEXP (rt, 0) = arg0;
33 XEXP (rt, 1) = arg1
46 rtx rt; local
63 rtx rt; local
79 rtx rt; local
102 rtx rt; local
132 rtx rt; local
164 rtx rt; local
190 rtx rt; local
218 rtx rt; local
242 rtx rt; local
265 rtx rt; local
288 rtx rt; local
308 rtx rt; local
330 rtx rt; local
347 rtx rt; local
362 rtx rt; local
380 rtx rt; local
398 rtx rt; local
414 rtx rt; local
433 rtx rt; local
450 rtx rt; local
467 rtx rt; local
483 rtx rt; local
503 rtx rt; local
521 rtx rt; local
539 rtx rt; local
558 rtx rt; local
577 rtx rt; local
595 rtx rt; local
612 rtx rt; local
630 rtx rt; local
650 rtx rt; local
670 rtx rt; local
689 rtx rt; local
709 rtx rt; local
729 rtx rt; local
749 rtx rt; local
770 rtx rt; local
790 rtx rt; local
808 rtx rt; local
826 rtx rt; local
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
genrtl.h 11 rtx rt; local
12 rt = rtx_alloc_stat (code PASS_MEM_STAT);
14 PUT_MODE (rt, mode);
15 X0EXP (rt, 0) = NULL_RTX;
17 return rt;
28 rtx rt; local
29 rt = rtx_alloc_stat (code PASS_MEM_STAT);
31 PUT_MODE (rt, mode);
32 XEXP (rt, 0) = arg0;
33 XEXP (rt, 1) = arg1
46 rtx rt; local
63 rtx rt; local
79 rtx rt; local
102 rtx rt; local
132 rtx rt; local
164 rtx rt; local
190 rtx rt; local
218 rtx rt; local
242 rtx rt; local
265 rtx rt; local
288 rtx rt; local
308 rtx rt; local
330 rtx rt; local
347 rtx rt; local
362 rtx rt; local
380 rtx rt; local
398 rtx rt; local
414 rtx rt; local
433 rtx rt; local
450 rtx rt; local
467 rtx rt; local
483 rtx rt; local
503 rtx rt; local
521 rtx rt; local
539 rtx rt; local
558 rtx rt; local
577 rtx rt; local
595 rtx rt; local
612 rtx rt; local
630 rtx rt; local
650 rtx rt; local
670 rtx rt; local
689 rtx rt; local
709 rtx rt; local
729 rtx rt; local
749 rtx rt; local
770 rtx rt; local
790 rtx rt; local
808 rtx rt; local
826 rtx rt; local
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
genrtl.h 11 rtx rt; local
12 rt = rtx_alloc_stat (code PASS_MEM_STAT);
14 PUT_MODE (rt, mode);
15 X0EXP (rt, 0) = NULL_RTX;
17 return rt;
28 rtx rt; local
29 rt = rtx_alloc_stat (code PASS_MEM_STAT);
31 PUT_MODE (rt, mode);
32 XEXP (rt, 0) = arg0;
33 XEXP (rt, 1) = arg1
46 rtx rt; local
63 rtx rt; local
79 rtx rt; local
102 rtx rt; local
132 rtx rt; local
164 rtx rt; local
190 rtx rt; local
218 rtx rt; local
242 rtx rt; local
265 rtx rt; local
288 rtx rt; local
308 rtx rt; local
330 rtx rt; local
347 rtx rt; local
362 rtx rt; local
380 rtx rt; local
398 rtx rt; local
414 rtx rt; local
433 rtx rt; local
450 rtx rt; local
467 rtx rt; local
483 rtx rt; local
503 rtx rt; local
521 rtx rt; local
539 rtx rt; local
558 rtx rt; local
577 rtx rt; local
595 rtx rt; local
612 rtx rt; local
630 rtx rt; local
650 rtx rt; local
670 rtx rt; local
689 rtx rt; local
709 rtx rt; local
729 rtx rt; local
749 rtx rt; local
770 rtx rt; local
790 rtx rt; local
808 rtx rt; local
826 rtx rt; local
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
genrtl.h 11 rtx rt; local
12 rt = rtx_alloc_stat (code PASS_MEM_STAT);
14 PUT_MODE (rt, mode);
15 X0EXP (rt, 0) = NULL_RTX;
17 return rt;
28 rtx rt; local
29 rt = rtx_alloc_stat (code PASS_MEM_STAT);
31 PUT_MODE (rt, mode);
32 XEXP (rt, 0) = arg0;
33 XEXP (rt, 1) = arg1
46 rtx rt; local
63 rtx rt; local
79 rtx rt; local
102 rtx rt; local
132 rtx rt; local
164 rtx rt; local
190 rtx rt; local
218 rtx rt; local
242 rtx rt; local
265 rtx rt; local
288 rtx rt; local
308 rtx rt; local
330 rtx rt; local
347 rtx rt; local
362 rtx rt; local
380 rtx rt; local
398 rtx rt; local
414 rtx rt; local
433 rtx rt; local
450 rtx rt; local
467 rtx rt; local
483 rtx rt; local
503 rtx rt; local
521 rtx rt; local
539 rtx rt; local
558 rtx rt; local
577 rtx rt; local
595 rtx rt; local
612 rtx rt; local
630 rtx rt; local
650 rtx rt; local
670 rtx rt; local
689 rtx rt; local
709 rtx rt; local
729 rtx rt; local
749 rtx rt; local
770 rtx rt; local
790 rtx rt; local
808 rtx rt; local
826 rtx 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;
  /external/valgrind/main/none/tests/mips32/
MIPS32int.stdout.exp 2 add $t0, $t1, $t2 :: rd 0x00000000 rs 0x00000000, rt 0x00000000
3 add $t0, $t1, $t2 :: rd 0x00000001 rs 0x00000000, rt 0x00000001
4 add $t0, $t1, $t2 :: rd 0x00000001 rs 0x00000001, rt 0x00000000
5 add $t0, $t1, $t2 :: rd 0x00000002 rs 0x00000001, rt 0x00000001
6 add $t0, $t1, $t2 :: rd 0xffffffff rs 0x00000000, rt 0xffffffff
7 add $t0, $t1, $t2 :: rd 0x00000000 rs 0x00000001, rt 0xffffffff
8 add $t0, $t1, $t2 :: rd 0x80000000 rs 0x80000000, rt 0x00000000
9 add $t0, $t1, $t2 :: rd 0x5859704f rs 0x31415927, rt 0x27181728
10 add $t0, $t1, $t2 :: rd 0xc859704f rs 0x31415927, rt 0x97181728
11 add $t0, $t1, $t2 :: rd 0xffffffff rs 0xffffffff, rt 0x0000000
    [all...]
MoveIns.stdout.exp 2 mfc1 $t1, $f0 :: fs 4.676074, rt 0x4095a266
3 mfc1 $t2, $f1 :: fs 272008302207532160516096.000000, rt 0x66666666
4 mfc1 $t3, $f2 :: fs -1.875000, rt 0xbff00000
5 mfc1 $t4, $f3 :: fs 0.000000, rt 0x0
6 mfc1 $t5, $f4 :: fs 1.875000, rt 0x3ff00000
7 mfc1 $t6, $f5 :: fs 0.000000, rt 0x0
8 mfc1 $t7, $f6 :: fs 0.000000, rt 0x252a2e2b
9 mfc1 $v0, $f7 :: fs 0.000000, rt 0x262d2d2a
10 mfc1 $v1, $f8 :: fs nan, rt 0xffffffff
11 mfc1 $s0, $f9 :: fs nan, rt 0xfffffff
    [all...]
  /external/dhcpcd/
configure.c 65 static struct rt *routes;
414 static struct rt *
415 find_route(struct rt *rts, const struct rt *r, struct rt **lrt,
416 const struct rt *srt)
418 struct rt *rt; local
422 for (rt = rts; rt; rt = rt->next)
541 struct rt *rt; local
581 struct rt *rt, *nrt = NULL, *r = NULL; local
692 struct rt *nrs = NULL, *dnr, *or, *rt, *rtn, *rtl, *lrt = NULL; local
780 struct rt *rt; local
    [all...]
net.h 82 struct rt { struct
89 struct rt *next;
127 int if_route(const struct rt *rt, int);
128 #define add_route(rt) if_route(rt, 1)
129 #define change_route(rt) if_route(rt, 0)
130 #define del_route(rt) if_route(rt, -1
    [all...]
configure.h 37 int route_deleted(const struct rt *);
  /external/android-clat/
setroute.c 47 struct rtmsg rt; local
63 memset(&rt, 0, sizeof(rt));
64 rt.rtm_family = family;
65 rt.rtm_table = RT_TABLE_MAIN;
66 rt.rtm_dst_len = prefixlen;
69 rt.rtm_scope = RT_SCOPE_NOWHERE;
79 rt.rtm_scope = RT_SCOPE_LINK;
81 rt.rtm_scope = RT_SCOPE_UNIVERSE;
83 rt.rtm_type = RTN_UNICAST
    [all...]
  /external/clang/runtime/
Makefile 15 PARALLEL_DIRS := compiler-rt libcxx
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_refactor.py 47 def rt(self, options=None, fixers=_DEFAULT_FIXERS, explicit=None): member in class:TestRefactoringTool
51 rt = self.rt({"print_function" : True})
52 self.assertTrue(rt.grammar is pygram.python_grammar_no_print_statement)
53 self.assertTrue(rt.driver.grammar is
57 rt = self.rt()
58 self.assertFalse(rt.write_unchanged_files)
59 rt = self.rt({"write_unchanged_files" : True}
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_refactor.py 47 def rt(self, options=None, fixers=_DEFAULT_FIXERS, explicit=None): member in class:TestRefactoringTool
51 rt = self.rt({"print_function" : True})
52 self.assertTrue(rt.grammar is pygram.python_grammar_no_print_statement)
53 self.assertTrue(rt.driver.grammar is
57 rt = self.rt()
58 self.assertFalse(rt.write_unchanged_files)
59 rt = self.rt({"write_unchanged_files" : True}
    [all...]

Completed in 1233 milliseconds

1 2 3 4 5 6 7 8 91011>>