/frameworks/base/services/surfaceflinger/ |
Transform.h | 67 int tx() const; 72 void set(float tx, float ty);
|
/bionic/libm/src/ |
e_rem_pio2.c | 79 double tx[3]; local 159 tx[i] = (double)((int32_t)(z)); 160 z = (z-tx[i])*two24; 162 tx[2] = z; 164 while(tx[nx-1]==zero) nx--; /* skip zero term */ 165 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
|
/external/fdlibm/ |
e_rem_pio2.c | 91 double tx[3]; local 166 tx[i] = (double)((int)(z)); 167 z = (z-tx[i])*two24; 169 tx[2] = z; 171 while(tx[nx-1]==zero) nx--; /* skip zero term */ 172 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
|
/external/webkit/WebCore/rendering/ |
RenderDataGrid.cpp | 132 void RenderDataGrid::paintObject(PaintInfo& paintInfo, int tx, int ty) 138 RenderBlock::paintObject(paintInfo, tx, ty); 144 paintColumnHeaders(paintInfo, tx, ty); 147 void RenderDataGrid::paintColumnHeaders(PaintInfo& paintInfo, int tx, int ty) 161 columnRect.move(tx, ty); 163 paintColumnHeader(column, paintInfo, tx, ty);
|
RenderInline.cpp | 406 void RenderInline::paint(PaintInfo& paintInfo, int tx, int ty) 408 m_lineBoxes.paint(this, paintInfo, tx, ty); 411 void RenderInline::absoluteRects(Vector<IntRect>& rects, int tx, int ty) 415 rects.append(IntRect(tx + curr->x(), ty + curr->y(), curr->width(), curr->height())); 417 rects.append(IntRect(tx, ty, 0, 0)); 423 tx - containingBlock()->x() + box->x(), 426 continuation()->absoluteRects(rects, tx - containingBlock()->x(), ty - containingBlock()->y()); 496 int x, int y, int tx, int ty, HitTestAction hitTestAction) 498 return m_lineBoxes.hitTest(this, request, result, x, y, tx, ty, hitTestAction); [all...] |
RenderTable.cpp | 484 void RenderTable::paint(PaintInfo& paintInfo, int tx, int ty) 486 tx += x(); 494 if (tx + leftVisibleOverflow() >= paintInfo.rect.right() + os || tx + rightVisibleOverflow() <= paintInfo.rect.x() - os) 497 bool pushedClip = pushContentsClip(paintInfo, tx, ty); 498 paintObject(paintInfo, tx, ty); 500 popContentsClip(paintInfo, paintPhase, tx, ty); 503 void RenderTable::paintObject(PaintInfo& paintInfo, int tx, int ty) 507 paintBoxDecorations(paintInfo, tx, ty); 510 paintMask(paintInfo, tx, ty) [all...] |
RenderBox.cpp | 305 void RenderBox::absoluteRects(Vector<IntRect>& rects, int tx, int ty) 307 rects.append(IntRect(tx, ty, width(), height())); 344 void RenderBox::addFocusRingRects(Vector<IntRect>& rects, int tx, int ty) 347 rects.append(IntRect(tx, ty, width(), height())); 536 bool RenderBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action) 538 tx += x(); 543 if (!child->hasLayer() && child->nodeAtPoint(request, result, xPos, yPos, tx, ty, action)) { 544 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty)); 551 if (visibleToHitTesting() && action == HitTestForeground && IntRect(tx, ty, width(), height()).contains(xPos, yPos)) { 552 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty)) [all...] |
RenderLineBoxList.cpp | 147 void RenderLineBoxList::paint(RenderBoxModelObject* renderer, RenderObject::PaintInfo& paintInfo, int tx, int ty) const 204 curr->paint(info, tx, ty); 211 flow->paintOutline(info.context, tx, ty); 218 bool RenderLineBoxList::hitTest(RenderBoxModelObject* renderer, const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction) const 241 bool inside = curr->nodeAtPoint(request, result, x, y, tx, ty); 243 renderer->updateHitTestResult(result, IntPoint(x - tx, y - ty));
|
RenderFrameSet.h | 100 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction); 101 virtual void paint(PaintInfo&, int tx, int ty);
|
RenderTextControlSingleLine.h | 61 virtual void paint(PaintInfo&, int tx, int ty); 64 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
|
RenderImage.cpp | 355 void RenderImage::paintReplaced(PaintInfo& paintInfo, int tx, int ty) 381 context->drawRect(IntRect(tx + leftBorder + leftPad, ty + topBorder + topPad, cWidth, cHeight)); 404 context->drawImage(image(), style()->colorSpace(), IntPoint(tx + imageX, ty + imageY)); 411 int ax = tx + leftBorder + leftPad; 434 paintCustomHighlight(tx - x(), ty - y(), style()->highlight(), true); 438 IntRect rect(IntPoint(tx + leftBorder + leftPad, ty + topBorder + topPad), contentSize); 443 void RenderImage::paint(PaintInfo& paintInfo, int tx, int ty) 445 RenderReplaced::paint(paintInfo, tx, ty); 514 bool RenderImage::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction) 517 bool inside = RenderReplaced::nodeAtPoint(request, tempResult, x, y, tx, ty, hitTestAction) [all...] |
SVGInlineTextBox.cpp | 294 bool SVGInlineTextBox::nodeAtPoint(const HitTestRequest&, HitTestResult& result, int x, int y, int tx, int ty) 300 renderer()->updateHitTestResult(result, IntPoint(x - tx, y - ty)); 351 void SVGInlineTextBox::paintCharacters(RenderObject::PaintInfo& paintInfo, int tx, int ty, const SVGChar& svgChar, const UChar* chars, int length, SVGTextPaintInfo& textPaintInfo) 387 paintCustomHighlight(tx, ty, styleToUse->highlight()); 391 paintCompositionBackground(paintInfo.context, tx, ty, styleToUse, font, 395 paintDocumentMarkers(paintInfo.context, tx, ty, styleToUse, font, true); 449 paintDocumentMarkers(paintInfo.context, tx, ty, styleToUse, font, false); 466 paintCompositionUnderline(paintInfo.context, tx, ty, underline); 544 void SVGInlineTextBox::paintDecoration(ETextDecoration decoration, GraphicsContext* context, int tx, int ty, int width, const SVGChar& svgChar, const SVGTextDecorationInfo& info) 574 context->addPath(pathForDecoration(decoration, fillObject, tx, ty, width)) [all...] |
RenderBlock.cpp | 3299 int tx = _tx + x(); local [all...] |
RenderListMarker.h | 52 virtual void paint(PaintInfo&, int tx, int ty);
|
RenderMenuList.h | 67 virtual IntRect controlClipRect(int tx, int ty) const;
|
RenderPath.h | 64 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
|
RenderSVGContainer.h | 56 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
|
RenderSVGRoot.h | 69 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
|
RenderWidget.h | 64 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
|
RenderTableSection.cpp | [all...] |
/external/quake/quake/src/QW/server/ |
model.c | 283 texture_t *tx, *tx2; local 314 tx = Hunk_AllocName (sizeof(texture_t) +pixels, loadname ); 315 loadmodel->textures[i] = tx; 317 memcpy (tx->name, mt->name, sizeof(tx->name)); 318 tx->width = mt->width; 319 tx->height = mt->height; 321 tx->offsets[j] = mt->offsets[j] + sizeof(texture_t) - sizeof(miptex_t); 323 memcpy ( tx+1, mt+1, pixels); 331 tx = loadmodel->textures[i] [all...] |
/external/webkit/WebCore/platform/graphics/transforms/ |
AffineTransform.cpp | 204 AffineTransform& AffineTransform::translate(double tx, double ty) 207 m_transform[4] += tx; 212 m_transform[4] += tx * m_transform[0] + ty * m_transform[2]; 213 m_transform[5] += tx * m_transform[1] + ty * m_transform[3]; 218 AffineTransform& AffineTransform::translateRight(double tx, double ty) 220 m_transform[4] += tx;
|
/system/netd/ |
ThrottleController.cpp | 173 int ThrottleController::getInterfaceTxThrottle(const char *iface, int *tx) { 174 *tx = 0;
|
CommandListener.h | 44 static int readInterfaceCounters(const char *iface, unsigned long *rx, unsigned long *tx);
|
/external/quake/quake/src/QW/client/ |
gl_model.c | 343 texture_t *tx, *tx2; local 374 tx = Hunk_AllocName (sizeof(texture_t) +pixels, loadname ); 375 loadmodel->textures[i] = tx; 377 memcpy (tx->name, mt->name, sizeof(tx->name)); 378 tx->width = mt->width; 379 tx->height = mt->height; 381 tx->offsets[j] = mt->offsets[j] + sizeof(texture_t) - sizeof(miptex_t); 383 memcpy ( tx+1, mt+1, pixels); 387 R_InitSky (tx); [all...] |