Searched defs:rx (Results 1 - 25 of 36) sorted by relevance

12

/external/quake/quake/src/QW/client/
H A Dd_fill.c32 int rx, ry, rwidth, rheight; local
36 rx = rect->x;
41 if (rx < 0)
43 rwidth += rx;
44 rx = 0;
51 if (rx+rwidth > vid.width)
52 rwidth = vid.width - rx;
54 rheight = vid.height - rx;
59 dest = ((byte *)vid.buffer + ry*vid.rowbytes + rx);
72 for (rx
[all...]
/external/quake/quake/src/WinQuake/
H A Dd_fill.cpp32 int rx, ry, rwidth, rheight; local
36 rx = rect->x;
41 if (rx < 0)
43 rwidth += rx;
44 rx = 0;
51 if (rx+rwidth > vid.width)
52 rwidth = vid.width - rx;
54 rheight = vid.height - rx;
59 dest = ((byte *)vid.buffer + ry*vid.rowbytes + rx);
72 for (rx
[all...]
/external/skia/src/animator/
H A DSkDrawRectangle.h49 SkScalar rx; member in class:SkRoundRect
H A DSkPathParts.h149 SkScalar rx; member in class:SkAddRoundRect
/external/skia/src/svg/
H A DSkSVGEllipse.cpp18 SVG_ATTRIBUTE(rx),
27 SkScalar cx, cy, rx, ry; local
30 SkParse::FindScalar(f_rx.c_str(), &rx);
33 left = cx - rx;
35 right = cx + rx;
/external/skia/src/effects/
H A DSkRectShape.cpp37 void SkRectShape::setRRect(const SkRect& bounds, SkScalar rx, SkScalar ry) { argument
38 if (rx < 0) {
39 rx = 0;
46 fRadii.set(rx, ry);
H A DSkBlurMask.cpp108 static void kernel_clamped(uint8_t dst[], int rx, int ry, const uint32_t sum[], argument
110 SkASSERT(2*rx > sw);
112 uint32_t scale = (1 << 24) / ((2*rx + 1)*(2*ry + 1));
116 int dw = sw + 2*rx;
126 int prev_x = -2*rx;
169 static void apply_kernel(uint8_t dst[], int rx, int ry, const uint32_t sum[], argument
171 if (2*rx > sw) {
172 kernel_clamped(dst, rx, ry, sum, sw, sh);
176 uint32_t scale = (1 << 24) / ((2*rx + 1)*(2*ry + 1));
180 int dw = sw + 2*rx;
268 kernel_interp_clamped(uint8_t dst[], int rx, int ry, const uint32_t sum[], int sw, int sh, U8CPU outer_weight) argument
353 apply_kernel_interp(uint8_t dst[], int rx, int ry, const uint32_t sum[], int sw, int sh, U8CPU outer_weight) argument
569 int rx = SkScalarCeil(passRadius); local
[all...]
/external/opencv/cv/src/
H A Dcvcalcimagehomography.cpp60 CvMat rx = cvMat( 1, 3, CV_32F, line ); local
93 cvCrossProduct( &rz, &rx, &ry );
H A Dcvsubdivision2d.cpp523 float rx = (float) rect.x; local
540 subdiv->topleft = cvPoint2D32f( rx, ry );
541 subdiv->bottomright = cvPoint2D32f( rx + rect.width, ry + rect.height );
543 ppA = cvPoint2D32f( rx + big_coord, ry );
544 ppB = cvPoint2D32f( rx, ry + big_coord );
545 ppC = cvPoint2D32f( rx - big_coord, ry - big_coord );
H A Dcvcalibration.cpp531 double rx, ry, rz, theta; local
542 rx = src->data.fl[0];
548 rx = src->data.db[0];
552 theta = sqrt(rx*rx + ry*ry + rz*rz);
574 rx *= itheta; ry *= itheta; rz *= itheta;
576 double rrt[] = { rx*rx, rx*ry, rx*r
610 double R[9], U[9], V[9], W[3], rx, ry, rz; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ggi/
H A DSDL_ggievents.c64 int x = 0, y = 0, z = 0, rx = 0, ry = 0, rz = 0; local
/external/webkit/Source/WebCore/svg/
H A DSVGPathByteStreamSource.cpp103 bool SVGPathByteStreamSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint) argument
105 rx = readFloat();
H A DSVGPathSegListSource.cpp138 bool SVGPathSegListSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint) argument
143 rx = arcTo->r1();
H A DSVGPathStringSource.cpp224 bool SVGPathStringSource::parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint) argument
228 if (!parseNumber(m_current, m_end, rx)
H A DSVGPathParser.cpp240 float rx; local
246 if (!m_source->parseArcToSegment(rx, ry, angle, largeArc, sweep, targetPoint))
249 // If rx = 0 or ry = 0 then this arc is treated as a straight line segment (a "lineto") joining the endpoints.
251 rx = fabsf(rx);
253 if (!rx || !ry) {
270 return decomposeArcToCubic(angle, rx, ry, point1, targetPoint, largeArc, sweep);
272 m_consumer->arcTo(rx, ry, angle, largeArc, sweep, targetPoint, m_mode);
404 bool SVGPathParser::decomposeArcToCubic(float angle, float rx, float ry, FloatPoint& point1, FloatPoint& point2, bool largeArcFlag, bool sweepFlag) argument
413 float squareRx = rx * r
[all...]
/external/chromium/chrome/browser/sync/engine/
H A Dsyncer_proto_util.cc146 std::string tx, rx; local
151 tx, &rx, &http_response
167 if (response->ParseFromString(rx)) {
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DPDFDocumentImage.cpp108 CGPoint rx = CGPointMake(width * cosa, width * sina); local
113 CGContextTranslateCTM(context->platformContext(), floorf(-min(zero, min(rx.x, ry.x))), floorf(-min(zero, min(rx.y, ry.y))));
/external/skia/samplecode/
H A DSampleDraw.cpp190 SkScalar rx = fRect.width() / 5; local
192 if (rx < ry) {
193 ry = rx;
195 rx = ry;
197 canvas->drawRoundRect(fRect, rx, ry, fPaint);
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_api.c1040 ** Description Sets the tx/rx data rate for a channel.
1045 BOOLEAN L2CA_SetChnlDataRate (UINT16 cid, tL2CAP_CHNL_DATA_RATE tx, tL2CAP_CHNL_DATA_RATE rx) argument
1049 L2CAP_TRACE_API3 ("L2CA_SetChnlDataRate() CID: 0x%04x, tx:%d, rx:%d", cid, tx, rx);
1059 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/icu4c/test/cintltst/
H A Dbocu1tst.c644 Bocu1Rx rx={ 0, 0, 0 }; local
647 rx.prev=initialPrev;
651 decodeBocu1(&rx, (uint8_t)(packed>>24));
653 decodeBocu1(&rx, (uint8_t)(packed>>16));
655 decodeBocu1(&rx, (uint8_t)(packed>>8));
658 return decodeBocu1(&rx, (uint8_t)packed)-initialPrev;
735 Bocu1Rx rx={ 0, 0, 0 }; local
740 c=decodeBocu1(&rx, p[i++]);
/external/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp176 void setLiveReg(int rx, DomainValue *DV);
177 void kill(int rx);
178 void force(int rx, unsigned domain);
249 /// Set LiveRegs[rx] = dv, updating reference counts.
250 void ExeDepsFix::setLiveReg(int rx, DomainValue *dv) { argument
251 assert(unsigned(rx) < NumRegs && "Invalid index");
254 if (LiveRegs[rx].Value == dv)
256 if (LiveRegs[rx].Value)
257 release(LiveRegs[rx].Value);
258 LiveRegs[rx]
262 kill(int rx) argument
273 force(int rx, unsigned domain) argument
358 int rx = regIndex(*i); local
466 int rx = regIndex(MO.getReg()); local
515 int rx = regIndex(mo.getReg()); local
524 int rx = regIndex(mo.getReg()); local
544 int rx = regIndex(mo.getReg()); local
577 int rx = *i; local
633 int rx = regIndex(mo.getReg()); local
[all...]
/external/qemu/android/skin/
H A Dtrackball.c321 double rx = x0/radius; local
323 double rz = sqrt( 1.0 - rx*rx - ry*ry );
329 coord->f[0] = FIX16_FROM_FLOAT(rx);
341 double lx = LIGHT_X - rx;
345 double cosphi = lir*(lx*rx + ly*ry + lz*rz);
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DTransformationMatrix.cpp409 // easier to recompose with) or Euler angles (rx, ry, rz), which
735 TransformationMatrix& TransformationMatrix::rotate3d(double rx, double ry, double rz) argument
738 rx = deg2rad(rx);
784 rx /= 2.0f;
785 sinA = sin(rx);
786 cosA = cos(rx);
/external/wpa_supplicant_8/wpa_supplicant/
H A Devents.c2276 static void wnm_action_rx(struct wpa_supplicant *wpa_s, struct rx_action *rx) argument
2281 if (rx->data == NULL || rx->len == 0)
2284 pos = rx->data;
2285 end = pos + rx->len;
2289 action, MAC2STR(rx->sa));

Completed in 925 milliseconds

12