Home
last modified time | relevance | path

Searched refs:rx (Results 1 – 25 of 882) sorted by relevance

12345678910>>...36

/external/Reactive-Extensions/RxCpp/projects/CMake/
DCMakeLists.txt29 ${RXCPP_DIR}/Rx/v2/src/rxcpp/operators/rx-all.hpp
30 ${RXCPP_DIR}/Rx/v2/src/rxcpp/operators/rx-amb.hpp
31 ${RXCPP_DIR}/Rx/v2/src/rxcpp/operators/rx-any.hpp
32 ${RXCPP_DIR}/Rx/v2/src/rxcpp/operators/rx-buffer_count.hpp
33 ${RXCPP_DIR}/Rx/v2/src/rxcpp/operators/rx-buffer_time.hpp
34 ${RXCPP_DIR}/Rx/v2/src/rxcpp/operators/rx-buffer_time_count.hpp
35 ${RXCPP_DIR}/Rx/v2/src/rxcpp/operators/rx-combine_latest.hpp
36 ${RXCPP_DIR}/Rx/v2/src/rxcpp/operators/rx-concat.hpp
37 ${RXCPP_DIR}/Rx/v2/src/rxcpp/operators/rx-concat_map.hpp
38 ${RXCPP_DIR}/Rx/v2/src/rxcpp/operators/rx-connect_forever.hpp
[all …]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DExecutionDepsFix.cpp146 void SetLiveReg(int rx, DomainValue *DV);
147 void Kill(int rx);
148 void Force(int rx, unsigned domain);
185 void ExeDepsFix::SetLiveReg(int rx, DomainValue *dv) { in SetLiveReg() argument
186 assert(unsigned(rx) < NumRegs && "Invalid index"); in SetLiveReg()
192 if (LiveRegs[rx] == dv) in SetLiveReg()
194 if (LiveRegs[rx]) { in SetLiveReg()
195 assert(LiveRegs[rx]->Refs && "Bad refcount"); in SetLiveReg()
196 if (--LiveRegs[rx]->Refs == 0) Recycle(LiveRegs[rx]); in SetLiveReg()
198 LiveRegs[rx] = dv; in SetLiveReg()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DExecutionDomainFix.cpp70 void ExecutionDomainFix::setLiveReg(int rx, DomainValue *dv) { in setLiveReg() argument
71 assert(unsigned(rx) < NumRegs && "Invalid index"); in setLiveReg()
74 if (LiveRegs[rx] == dv) in setLiveReg()
76 if (LiveRegs[rx]) in setLiveReg()
77 release(LiveRegs[rx]); in setLiveReg()
78 LiveRegs[rx] = retain(dv); in setLiveReg()
81 void ExecutionDomainFix::kill(int rx) { in kill() argument
82 assert(unsigned(rx) < NumRegs && "Invalid index"); in kill()
84 if (!LiveRegs[rx]) in kill()
87 release(LiveRegs[rx]); in kill()
[all …]
/external/llvm/lib/CodeGen/
DExecutionDepsFix.cpp194 void setLiveReg(int rx, DomainValue *DV);
195 void kill(int rx);
196 void force(int rx, unsigned domain);
272 void ExeDepsFix::setLiveReg(int rx, DomainValue *dv) { in setLiveReg() argument
273 assert(unsigned(rx) < NumRegs && "Invalid index"); in setLiveReg()
276 if (LiveRegs[rx].Value == dv) in setLiveReg()
278 if (LiveRegs[rx].Value) in setLiveReg()
279 release(LiveRegs[rx].Value); in setLiveReg()
280 LiveRegs[rx].Value = retain(dv); in setLiveReg()
284 void ExeDepsFix::kill(int rx) { in kill() argument
[all …]
/external/syzkaller/vendor/google.golang.org/api/gensupport/
Dresumable.go49 func (rx *ResumableUpload) Progress() int64 {
50 rx.mu.Lock()
51 defer rx.mu.Unlock()
52 return rx.progress
59 func (rx *ResumableUpload) doUploadRequest(ctx context.Context, data io.Reader, off, size int64, fi…
60 req, err := http.NewRequest("POST", rx.URI, data)
77 req.Header.Set("Content-Type", rx.MediaType)
78 req.Header.Set("User-Agent", rx.UserAgent)
89 return SendRequest(ctx, rx.Client, req)
100 func (rx *ResumableUpload) reportProgress(old, updated int64) {
[all …]
/external/Reactive-Extensions/RxCpp/Rx/v2/test/subscriptions/
Dobserver.cpp19 auto scrbResult = rx::make_subscriber<int>(next, error, completed);
20 auto scrbdup = rx::make_subscriber<int>(scrbResult);
21 auto scrbop = rx::make_subscriber<int>(scrbResult, next, error, completed);
22 auto scrbsharelifetime = rx::make_subscriber<int>(scrbResult, scrbop.get_observer());
23 … auto scrbuniquelifetime = rx::make_subscriber<int>(scrbResult, rx::composite_subscription());
26 auto scrb = rx::make_subscriber<int>(emptyNext);
29 REQUIRE(rx::is_observer<decltype(scrb)>::value);
32 REQUIRE(rx::is_subscription<decltype(scrb)>::value);
64 auto dob = rx::make_observer_dynamic<int>(emptyNext);
65 auto so = rx::make_observer<int>(emptyNext);
[all …]
Dsubscription.cpp45 rx::observable<>::just(1) in __anonfe564e910302()
90 rx::observable<>::just(1) in __anonfe564e910702()
93 }, rx::observable<>::just(2)) in __anonfe564e910702()
121 auto es = rx::synchronize_event_loop();
130 auto liftrequirecompletion = [&](rx::subscriber<int> dest){ in __anonfe564e910a02()
131 …auto completionstate = std::make_shared<std::tuple<bool, long, rx::subscriber<int>>>(false, 0, std… in __anonfe564e910a02()
138 return rx::make_subscriber<int>( in __anonfe564e910a02()
166 rx::make_observer_dynamic<int>( in __anonfe564e910a02()
181 rx::make_observer_dynamic<int>( in __anonfe564e910a02()
196 rx::make_observer_dynamic<int>( in __anonfe564e910a02()
[all …]
/external/ltp/testcases/network/can/filter-tests/
Dcan_rcv_own_msgs.c75 struct rxs rx; in test_sockets() local
85 rx.s = rx.t = 0; in test_sockets()
114 rx.s++; in test_sockets()
129 rx.t++; in test_sockets()
135 return rx; in test_sockets()
154 struct rxs rx; in main() local
192 rx = test_sockets(s, t, 0x340); in main()
193 if (rx.s == 0 && rx.t == 1) in main()
202 rx = test_sockets(s, t, 0x341); in main()
203 if (rx.s == 0 && rx.t == 0) in main()
[all …]
/external/fonttools/Lib/fontTools/svgLib/path/
Dshapes.py46 def _arc(self, c, rx, ry, x, y, large_arc): argument
47 self._add('%s%s,%s 0 %d 1 %s,%s' % (c, _ntos(rx), _ntos(ry), large_arc,
50 def A(self, rx, ry, x, y, large_arc=0): argument
51 self._arc('A', rx, ry, x, y, large_arc)
53 def a(self, rx, ry, x, y, large_arc=0): argument
54 self._arc('a', rx, ry, x, y, large_arc)
76 rx = float(rect.attrib.get('rx', 0))
79 rx = _prefer_non_zero(rx, ry)
80 ry = _prefer_non_zero(ry, rx)
84 self.M(x + rx, y)
[all …]
Darc.py26 def __init__(self, current_point, rx, ry, rotation, large, sweep, target_point): argument
28 self.rx = rx
49 rx = fabs(self.rx)
51 if not (rx and ry):
64 square_rx = rx * rx
73 rx *= sqrt(radii_scale)
75 self.rx, self.ry = rx, ry
77 point_transform = Scale(1 / rx, 1 / ry).rotate(-self.angle)
116 point_transform = Identity.rotate(self.angle).scale(self.rx, self.ry)
/external/u-boot/arch/arm/include/debug/
D8250.S15 .macro store, rd, rx:vararg
16 str \rd, \rx
19 .macro load, rd, rx:vararg
20 ldr \rd, \rx
23 .macro store, rd, rx:vararg
24 strb \rd, \rx
27 .macro load, rd, rx:vararg
28 ldrb \rd, \rx
34 .macro senduart,rd,rx argument
35 store \rd, [\rx, #UART_TX << UART_SHIFT]
[all …]
/external/libese/apps/boot/tests/
Dese_app_boot_tests.cpp63 ese_sg_from_buf(rx_sg, rx_nsg, 0, invocation.rx.size(), invocation.rx.data()); in EseTransceive()
64 uint32_t rx_total = invocation.rx.size(); in EseTransceive()
70 std::vector<uint8_t> rx; member
106 trans_.invocations[0].rx.resize(3); in TEST_F()
107 trans_.invocations[0].rx[0] = 0x01; // Channel in TEST_F()
108 trans_.invocations[0].rx[1] = 0x90; // Return code in TEST_F()
109 trans_.invocations[0].rx[2] = 0x00; in TEST_F()
115 trans_.invocations[1].rx.resize(2); in TEST_F()
116 trans_.invocations[1].rx[0] = 0x90; in TEST_F()
117 trans_.invocations[1].rx[1] = 0x00; in TEST_F()
[all …]
/external/libese/apps/boot/
Dboot.c69 struct EseSgBuffer rx; in ese_boot_session_open() local
116 rx.base = &rx_buf[0]; in ese_boot_session_open()
117 rx.len = sizeof(rx_buf); in ese_boot_session_open()
118 rx_len = ese_transceive_sg(ese, tx, 2, &rx, 1); in ese_boot_session_open()
173 struct EseSgBuffer rx[3]; in ese_boot_lock_xget() local
200 rx[0].base = &reply[0]; in ese_boot_lock_xget()
201 rx[0].len = sizeof(reply); in ese_boot_lock_xget()
203 rx[1].base = lockData; in ese_boot_lock_xget()
204 rx[1].len = maxSize; in ese_boot_lock_xget()
207 rx[2].base = &apdu_status[0]; in ese_boot_lock_xget()
[all …]
/external/mesa3d/src/gallium/auxiliary/util/
Du_texture.c49 float rx, ry, rz; in util_map_texcoords2d_onto_cubemap() local
69 rx = 1; in util_map_texcoords2d_onto_cubemap()
74 rx = -1; in util_map_texcoords2d_onto_cubemap()
79 rx = sc; in util_map_texcoords2d_onto_cubemap()
84 rx = sc; in util_map_texcoords2d_onto_cubemap()
89 rx = sc; in util_map_texcoords2d_onto_cubemap()
94 rx = -sc; in util_map_texcoords2d_onto_cubemap()
99 rx = ry = rz = 0; in util_map_texcoords2d_onto_cubemap()
103 out_str[0] = rx; /*s*/ in util_map_texcoords2d_onto_cubemap()
/external/virglrenderer/src/gallium/auxiliary/util/
Du_texture.c49 float rx, ry, rz; in util_map_texcoords2d_onto_cubemap() local
69 rx = 1; in util_map_texcoords2d_onto_cubemap()
74 rx = -1; in util_map_texcoords2d_onto_cubemap()
79 rx = sc; in util_map_texcoords2d_onto_cubemap()
84 rx = sc; in util_map_texcoords2d_onto_cubemap()
89 rx = sc; in util_map_texcoords2d_onto_cubemap()
94 rx = -sc; in util_map_texcoords2d_onto_cubemap()
99 rx = ry = rz = 0; in util_map_texcoords2d_onto_cubemap()
103 out_str[0] = rx; /*s*/ in util_map_texcoords2d_onto_cubemap()
/external/Reactive-Extensions/RxCpp/Rx/v2/test/sources/
Dscope.cpp9 rxu::detail::maybe<rx::test::testable_observable<int>> xs;
11 typedef rx::resource<std::vector<int>> resource;
17 return rx::observable<>:: in __anonbc61a3d20102()
70 rxu::detail::maybe<rx::test::testable_observable<int>> xs;
72 typedef rx::resource<std::vector<int>> resource;
78 return rx::observable<>:: in __anonbc61a3d20502()
134 rxu::detail::maybe<rx::test::testable_observable<int>> xs;
136 typedef rx::resource<int> resource;
142 return rx::observable<>:: in __anonbc61a3d20902()
201 rxu::detail::maybe<rx::test::testable_observable<int>> xs;
[all …]
Ddefer.cpp11 rxu::detail::maybe<rx::test::testable_observable<long>> xs;
15 auto empty = rx::observable<>::empty<long>();
16 auto just = rx::observable<>::just(42);
17 auto one = rx::observable<>::from(42);
18 auto error = rx::observable<>::error<long>(rxu::error_ptr());
19 auto runtimeerror = rx::observable<>::error<long>(std::runtime_error("runtime"));
23 return rx::observable<>::defer( in __anonf4110b5e0102()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
DMips16InstrInfo.td83 FRI16<op, (outs CPU16Regs:$rx), (ins simm16:$imm),
88 FRI16_ins_base<op, asmstr, "\t$rx, $imm \t# 16 bit inst", itin>;
92 FRI16<_op, (outs CPU16Regs:$rx), (ins pcrel16:$imm, i32imm:$size),
93 !strconcat(asmstr, "\t$rx, $imm\t# 16 bit inst"), [], itin>;
97 FRI16<op, (outs), (ins CPU16Regs:$rx, simm16:$imm),
102 FRI16R_ins_base<op, asmstr, "\t$rx, $imm \t# 16 bit inst", itin>;
106 FRI16<_op, (outs CPU16Regs:$rx), (ins CPU16Regs:$rx_, simm16:$imm),
107 !strconcat(asmstr, "\t$rx, $imm\t# 16 bit inst"), [], itin> {
108 let Constraints = "$rx_ = $rx";
113 FRI16<_op, (outs), (ins CPU16Regs:$rx, brtarget:$imm),
[all …]
DMips16InstrFormats.td22 // rx 3-bit source or destination register
115 // Format RI instruction class in Mips : <|opcode|rx|imm8|>
122 bits<3> rx;
127 let Inst{10-8} = rx;
132 // Format RR instruction class in Mips : <|opcode|rx|ry|funct|>
139 bits<3> rx;
146 let Inst{10-8} = rx;
172 bits<3> rx;
180 let Inst{10-8} = rx;
210 bits<3> rx;
[all …]
/external/llvm/lib/Target/Mips/
DMips16InstrInfo.td83 FRI16<op, (outs CPU16Regs:$rx), (ins simm16:$imm),
88 FRI16_ins_base<op, asmstr, "\t$rx, $imm \t# 16 bit inst", itin>;
92 FRI16<_op, (outs CPU16Regs:$rx), (ins pcrel16:$imm, i32imm:$size),
93 !strconcat(asmstr, "\t$rx, $imm\t# 16 bit inst"), [], itin>;
97 FRI16<op, (outs), (ins CPU16Regs:$rx, simm16:$imm),
102 FRI16R_ins_base<op, asmstr, "\t$rx, $imm \t# 16 bit inst", itin>;
106 FRI16<_op, (outs CPU16Regs:$rx), (ins CPU16Regs:$rx_, simm16:$imm),
107 !strconcat(asmstr, "\t$rx, $imm\t# 16 bit inst"), [], itin> {
108 let Constraints = "$rx_ = $rx";
113 FRI16<_op, (outs), (ins CPU16Regs:$rx, brtarget:$imm),
[all …]
DMips16InstrFormats.td22 // rx 3-bit source or destination register
115 // Format RI instruction class in Mips : <|opcode|rx|imm8|>
122 bits<3> rx;
127 let Inst{10-8} = rx;
132 // Format RR instruction class in Mips : <|opcode|rx|ry|funct|>
139 bits<3> rx;
146 let Inst{10-8} = rx;
172 bits<3> rx;
180 let Inst{10-8} = rx;
210 bits<3> rx;
[all …]
/external/libese/apps/weaver/
Dweaver.c77 struct EseSgBuffer rx; in ese_weaver_session_open() local
124 rx.base = &rx_buf[0]; in ese_weaver_session_open()
125 rx.len = sizeof(rx_buf); in ese_weaver_session_open()
126 rx_len = ese_transceive_sg(ese, tx, 2, &rx, 1); in ese_weaver_session_open()
254 struct EseSgBuffer rx; in ese_weaver_write() local
256 rx.base = rx_buf; in ese_weaver_write()
257 rx.len = sizeof(rx_buf); in ese_weaver_write()
260 const int rx_len = ese_transceive_sg(session->ese, tx, 5, &rx, 1); in ese_weaver_write()
311 struct EseSgBuffer rx[3]; in ese_weaver_read() local
313 rx[0].base = &appletStatus; in ese_weaver_read()
[all …]
/external/skqp/experimental/svg/model/
DSkSVGEllipse.cpp23 void SkSVGEllipse::setRx(const SkSVGLength& rx) { in setRx() argument
24 fRx = rx; in setRx()
44 if (const auto* rx = v.as<SkSVGLengthValue>()) { in onSetAttribute() local
45 this->setRx(*rx); in onSetAttribute()
61 const auto rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal); in resolve() local
64 return (rx > 0 && ry > 0) in resolve()
65 ? SkRect::MakeXYWH(cx - rx, cy - ry, rx * 2, ry * 2) in resolve()
/external/skia/experimental/svg/model/
DSkSVGEllipse.cpp23 void SkSVGEllipse::setRx(const SkSVGLength& rx) { in setRx() argument
24 fRx = rx; in setRx()
44 if (const auto* rx = v.as<SkSVGLengthValue>()) { in onSetAttribute() local
45 this->setRx(*rx); in onSetAttribute()
61 const auto rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal); in resolve() local
64 return (rx > 0 && ry > 0) in resolve()
65 ? SkRect::MakeXYWH(cx - rx, cy - ry, rx * 2, ry * 2) in resolve()
/external/u-boot/arch/arm/dts/
Dr8a7793.dtsi496 dma-names = "tx", "rx", "tx", "rx";
513 dma-names = "tx", "rx", "tx", "rx";
530 dma-names = "tx", "rx", "tx", "rx";
609 dma-names = "tx", "rx", "tx", "rx";
627 dma-names = "tx", "rx", "tx", "rx";
642 dma-names = "tx", "rx", "tx", "rx";
657 dma-names = "tx", "rx", "tx", "rx";
672 dma-names = "tx", "rx", "tx", "rx";
687 dma-names = "tx", "rx", "tx", "rx";
702 dma-names = "tx", "rx", "tx", "rx";
[all …]

12345678910>>...36