Searched defs:rx (Results 1 - 25 of 239) sorted by path

12345678910

/external/bluetooth/bluedroid/btif/src/
H A Dbtif_media_task.c289 long long rx; member in struct:__anon1084
1180 /* when true media task discards any rx frames */
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_api.c1049 ** Description Sets the tx/rx data rate for a channel.
1054 BOOLEAN L2CA_SetChnlDataRate (UINT16 cid, tL2CAP_CHNL_DATA_RATE tx, tL2CAP_CHNL_DATA_RATE rx) argument
1058 L2CAP_TRACE_API ("L2CA_SetChnlDataRate() CID: 0x%04x, tx:%d, rx:%d", cid, tx, rx);
1068 p_ccb->rx_data_rate = rx;
/external/bluetooth/bluedroid/stack/rfcomm/
H A Dport_int.h174 tPORT_DATA rx; /* Control block for data from peer to app */ member in struct:t_port_info
199 UINT16 credit_rx; /* Flow control credits for rx path, this is */
/external/chromium_org/ppapi/cpp/
H A Drect.cc54 int32_t rx = std::max(x(), rect.x()); local
59 if (rx >= rr || ry >= rb)
60 rx = ry = rr = rb = 0; // non-intersecting
62 return Rect(rx, ry, rr - rx, rb - ry);
72 int32_t rx = std::min(x(), rect.x());
77 return Rect(rx, ry, rr - rx, rb - ry);
87 int32_t rx = x();
95 rx
158 float rx = std::max(x(), rect.x()); local
176 float rx = std::min(x(), rect.x()); local
191 float rx = x(); local
[all...]
/external/chromium_org/ppapi/examples/ime/
H A Dime.cc193 int rx = font_.MeasureSimpleText(str.substr(0, r)); local
196 rx - lx - 4, 2,
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DRectangleShape.cpp37 static inline float ellipseXIntercept(float y, float rx, float ry) argument
40 return rx * sqrt(1 - (y * y) / (ry * ry));
71 float marginRadiusX = rx() + shapeMargin();
H A DRectangleShape.h58 float rx() const { return m_radii.width(); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGPathData.cpp54 float rx = ellipse->rx()->currentValue()->value(lengthContext); local
55 if (rx < 0)
60 if (!rx && !ry)
63 path.addEllipse(FloatRect(ellipse->cx()->currentValue()->value(lengthContext) - rx, ellipse->cy()->currentValue()->value(lengthContext) - ry, rx * 2, ry * 2));
117 float rx = rect->rx()->currentValue()->value(lengthContext); local
119 bool hasRx = rx > 0;
123 rx
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGEllipseElement.h38 SVGAnimatedLength* rx() const { return m_rx.get(); } function in class:blink::FINAL
H A DSVGPathByteStreamSource.cpp101 bool SVGPathByteStreamSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint) argument
103 rx = readFloat();
H A DSVGPathParser.cpp239 float rx; local
245 if (!m_source->parseArcToSegment(rx, ry, angle, largeArc, sweep, targetPoint))
248 // If rx = 0 or ry = 0 then this arc is treated as a straight line segment (a "lineto") joining the endpoints.
252 rx = fabsf(rx);
261 if (!rx || !ry || arcIsZeroLength) {
278 return decomposeArcToCubic(angle, rx, ry, point1, targetPoint, largeArc, sweep);
280 m_consumer->arcTo(rx, ry, angle, largeArc, sweep, targetPoint, m_mode);
412 bool SVGPathParser::decomposeArcToCubic(float angle, float rx, float ry, FloatPoint& point1, FloatPoint& point2, bool largeArcFlag, bool sweepFlag) argument
421 float squareRx = rx * r
[all...]
H A DSVGPathSegListSource.cpp136 bool SVGPathSegListSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint) argument
141 rx = arcTo->r1();
H A DSVGPathStringSource.cpp227 static bool parseArcToSegmentHelper(const CharacterType*& current, const CharacterType* end, float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint) argument
231 if (!parseNumber(current, end, rx)
243 bool SVGPathStringSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint) argument
246 return parseArcToSegmentHelper(m_current.m_character8, m_end.m_character8, rx, ry, angle, largeArc, sweep, targetPoint);
247 return parseArcToSegmentHelper(m_current.m_character16, m_end.m_character16, rx, ry, angle, largeArc, sweep, targetPoint);
H A DSVGRectElement.h40 SVGAnimatedLength* rx() const { return m_rx.get(); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformationMatrix.cpp419 // easier to recompose with) or Euler angles (rx, ry, rz), which
846 TransformationMatrix& TransformationMatrix::rotate3d(double rx, double ry, double rz) argument
849 rx = deg2rad(rx);
891 sinTheta = std::sin(rx);
892 cosTheta = std::cos(rx);
/external/chromium_org/third_party/WebKit/Source/web/painting/
H A DPaintAggregator.cpp87 int rx = a.x(); local
95 rx = b.maxX();
105 return IntRect(rx, ry, rr - rx, rb - ry);
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/angle/src/libEGL/
H A DSurface.h22 namespace rx namespace
51 virtual rx::SwapChain *getSwapChain() const;
75 rx::Renderer *mRenderer;
78 rx::SwapChain *mSwapChain;
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DBuffer.h20 namespace rx namespace
32 Buffer(rx::BufferImpl *impl, GLuint id);
50 rx::BufferImpl *getImplementation() const { return mBuffer; }
54 rx::IndexRangeCache *getIndexRangeCache() { return &mIndexRangeCache; }
55 const rx::IndexRangeCache *getIndexRangeCache() const { return &mIndexRangeCache; }
60 rx::BufferImpl *mBuffer;
70 rx::IndexRangeCache mIndexRangeCache;
H A DContext.h31 namespace rx namespace
71 Context(int clientVersion, const gl::Context *shareContext, rx::Renderer *renderer, bool notifyResets, bool robustAccess);
195 const rx::RangeUI &indexRange);
221 rx::Renderer *getRenderer() { return mRenderer; }
271 rx::Renderer *const mRenderer;
H A DFence.h15 namespace rx namespace
27 explicit FenceNV(rx::Renderer *renderer);
42 rx::FenceImpl *mFence;
51 explicit FenceSync(rx::Renderer *renderer, GLuint id);
64 rx::FenceImpl *mFence;
H A DFramebuffer.cpp23 namespace rx namespace
69 Framebuffer::Framebuffer(rx::Renderer *renderer, GLuint id)
625 rx::RenderTarget *renderTarget = rx::GetAttachmentRenderTarget(attachment);
634 DefaultFramebuffer::DefaultFramebuffer(rx::Renderer *renderer, Colorbuffer *colorbuffer, DepthStencilbuffer *depthStencil)
H A DFramebuffer.h19 namespace rx namespace
38 Framebuffer(rx::Renderer *renderer, GLuint id);
85 rx::Renderer *mRenderer;
105 DefaultFramebuffer(rx::Renderer *Renderer, Colorbuffer *colorbuffer, DepthStencilbuffer *depthStencil);
116 namespace rx namespace
H A DFramebufferAttachment.h19 namespace rx namespace
H A DProgram.h24 namespace rx namespace
70 Program(rx::Renderer *renderer, ResourceManager *manager, GLuint handle);
143 rx::Renderer *mRenderer;

Completed in 632 milliseconds

12345678910