/external/openssl/crypto/rc4/asm/ |
D | rc4-586.pl | 68 $ty="edx"; 78 &mov ($ty,&DWP(0,$dat,$yy,4)); 80 &mov (&DWP(0,$dat,$xx,4),$ty); 81 &add ($ty,$tx); 83 &and ($ty,0xff); 90 &$func ($out,&DWP(0,$dat,$ty,4)); 111 &mov ($ty,&DWP(0,$dat,$yy,4)); 114 &mov (&DWP(0,$dat,$XX[0],4),$ty); 115 &add (&LB($ty),&LB($tx)); 121 &pinsrw ($mm,&DWP(0,$dat,$ty,4),$j); [all …]
|
/external/webkit/Source/WebCore/rendering/mathml/ |
D | RenderMathMLBlock.cpp | 78 void RenderMathMLBlock::paint(PaintInfo& info, int tx, int ty) in paint() argument 80 RenderBlock::paint(info, tx, ty); in paint() 86 ty += y(); in paint() 94 info.context->drawLine(IntPoint(tx, ty), IntPoint(tx + offsetWidth(), ty)); in paint() 95 …info.context->drawLine(IntPoint(tx + offsetWidth(), ty), IntPoint(tx + offsetWidth(), ty + offsetH… in paint() 96 …info.context->drawLine(IntPoint(tx, ty + offsetHeight()), IntPoint(tx + offsetWidth(), ty + offset… in paint() 97 info.context->drawLine(IntPoint(tx, ty), IntPoint(tx, ty + offsetHeight())); in paint() 103 … info.context->drawLine(IntPoint(tx, ty + topStart), IntPoint(tx + offsetWidth(), ty + topStart)); in paint() 109 … info.context->drawLine(IntPoint(tx, ty + baseline), IntPoint(tx + offsetWidth(), ty + baseline)); in paint()
|
D | RenderMathMLSquareRoot.cpp | 69 void RenderMathMLSquareRoot::paint(PaintInfo& info, int tx, int ty) in paint() argument 71 RenderMathMLBlock::paint(info, tx, ty); in paint() 77 ty += y(); in paint() 112 FloatPoint topStart(tx + frontWidth - topStartShift, ty); in paint() 113 …FloatPoint bottomLeft(tx + frontWidth * gRadicalBottomPointXPos , ty + maxHeight + gRadicalBasePad… in paint() 114 …FloatPoint topLeft(tx + frontWidth * gRadicalTopLeftPointXPos , ty + gRadicalTopLeftPointYPos * ma… in paint() 127 root.moveTo(FloatPoint(topStart.x() + width , ty)); in paint()
|
/external/webkit/Source/WebCore/rendering/ |
D | EllipsisBox.cpp | 32 void EllipsisBox::paint(PaintInfo& paintInfo, int tx, int ty, int lineTop, int lineBottom) in paint() argument 47 paintSelection(context, tx, ty, style, style->font()); in paint() 56 …ilingExpansion, false, style->visuallyOrdered()), IntPoint(m_x + tx, m_y + ty + style->fontMetrics… in paint() 68 …ty += m_y + style->fontMetrics().ascent() - (m_markupBox->y() + m_markupBox->renderer()->style(m_f… in paint() 69 m_markupBox->paint(paintInfo, tx, ty, lineTop, lineBottom); in paint() 73 IntRect EllipsisBox::selectionRect(int tx, int ty) in selectionRect() argument 78 IntPoint(m_x + tx, m_y + ty + root()->selectionTop()), root()->selectionHeight())); in selectionRect() 81 void EllipsisBox::paintSelection(GraphicsContext* context, int tx, int ty, RenderStyle* style, cons… in paintSelection() argument 96 context->clip(IntRect(m_x + tx, y + ty, m_logicalWidth, h)); in paintSelection() 98 IntPoint(m_x + tx, m_y + ty + y), h, c, style->colorSpace()); in paintSelection() [all …]
|
D | RenderFieldset.cpp | 131 void RenderFieldset::paintBoxDecorations(PaintInfo& paintInfo, int tx, int ty) in paintBoxDecorations() argument 140 return RenderBlock::paintBoxDecorations(paintInfo, tx, ty); in paintBoxDecorations() 148 ty += yOff; in paintBoxDecorations() 155 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Normal); in paintBoxDecorations() 157 …e()->visitedDependentColor(CSSPropertyBackgroundColor), style()->backgroundLayers(), tx, ty, w, h); in paintBoxDecorations() 158 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Inset); in paintBoxDecorations() 171 int clipTop = ty; in paintBoxDecorations() 177 graphicsContext->clipOut(IntRect(clipLeft, ty + legend->y(), clipWidth, legend->height())); in paintBoxDecorations() 180 paintBorder(paintInfo.context, tx, ty, w, h, style(), true, true); in paintBoxDecorations() 185 void RenderFieldset::paintMask(PaintInfo& paintInfo, int tx, int ty) in paintMask() argument [all …]
|
D | RenderLineBoxList.cpp | 149 …odelObject* renderer, int logicalTop, int logicalBottom, const IntRect& rect, int tx, int ty) const in rangeIntersectsRect() 162 physicalStart += ty; in rangeIntersectsRect() 174 …sectsRect(RenderBoxModelObject* renderer, const IntRect& rect, int tx, int ty, bool usePrintRect, … in anyLineIntersectsRect() argument 191 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, rect, tx, ty); in anyLineIntersectsRect() 194 …nderBoxModelObject* renderer, InlineFlowBox* box, const PaintInfo& paintInfo, int tx, int ty) const in lineIntersectsDirtyRect() 200 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, paintInfo.rect, tx, ty); in lineIntersectsDirtyRect() 203 void RenderLineBoxList::paint(RenderBoxModelObject* renderer, PaintInfo& paintInfo, int tx, int ty)… in paint() 222 if (!anyLineIntersectsRect(renderer, paintInfo.rect, tx, ty, usePrintRect, outlineSize)) in paint() 246 if (ty + bottomForPaginationCheck > v->printRect().maxY()) { in paint() 250 if (ty + bottomForPaginationCheck > v->printRect().maxY()) { in paint() [all …]
|
D | RenderListBox.h | 49 IntRect itemBoundingBoxRect(int tx, int ty, int index); 68 virtual void paintObject(PaintInfo&, int tx, int ty); 69 virtual IntRect controlClipRect(int tx, int ty) const; 71 virtual bool isPointInOverflowControl(HitTestResult&, int x, int y, int tx, int ty); 82 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty); 99 …virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitT… 135 void paintScrollbar(PaintInfo&, int tx, int ty); 136 void paintItemForeground(PaintInfo&, int tx, int ty, int listIndex); 137 void paintItemBackground(PaintInfo&, int tx, int ty, int listIndex);
|
D | RenderListBox.cpp | 251 IntRect RenderListBox::itemBoundingBoxRect(int tx, int ty, int index) in itemBoundingBoxRect() argument 254 ty + borderTop() + paddingTop() + itemHeight() * (index - m_indexOffset), in itemBoundingBoxRect() 258 void RenderListBox::paintObject(PaintInfo& paintInfo, int tx, int ty) in paintObject() argument 268 paintItemForeground(paintInfo, tx, ty, index); in paintObject() 274 RenderBlock::paintObject(paintInfo, tx, ty); in paintObject() 281 paintScrollbar(paintInfo, tx, ty); in paintObject() 285 paintScrollbar(paintInfo, tx, ty); in paintObject() 291 paintItemBackground(paintInfo, tx, ty, index); in paintObject() 301 void RenderListBox::addFocusRingRects(Vector<IntRect>& rects, int tx, int ty) in addFocusRingRects() argument 304 return RenderBlock::addFocusRingRects(rects, tx, ty); in addFocusRingRects() [all …]
|
D | RenderReplaced.cpp | 105 void RenderReplaced::paint(PaintInfo& paintInfo, int tx, int ty) in paint() argument 107 if (!shouldPaint(paintInfo, tx, ty)) in paint() 111 ty += y(); in paint() 114 paintBoxDecorations(paintInfo, tx, ty); in paint() 117 paintMask(paintInfo, tx, ty); in paint() 122 paintOutline(paintInfo.context, tx, ty, width(), height()); in paint() 139 IntRect borderRect = IntRect(tx, ty, width(), height()); in paint() 151 paintReplaced(paintInfo, tx, ty); in paint() 161 selectionPaintingRect.move(tx, ty); in paint() 166 bool RenderReplaced::shouldPaint(PaintInfo& paintInfo, int& tx, int& ty) in shouldPaint() argument [all …]
|
D | RenderScrollbarPart.cpp | 162 void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, int tx, int ty, const Int… in paintIntoRect() argument 165 setLocation(rect.x() - tx, rect.y() - ty); in paintIntoRect() 174 paint(paintInfo, tx, ty); in paintIntoRect() 176 paint(paintInfo, tx, ty); in paintIntoRect() 178 paint(paintInfo, tx, ty); in paintIntoRect() 180 paint(paintInfo, tx, ty); in paintIntoRect() 182 paint(paintInfo, tx, ty); in paintIntoRect()
|
D | RenderLineBoxList.h | 67 …lObject*, const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction) cons… 70 …bool anyLineIntersectsRect(RenderBoxModelObject*, const IntRect&, int tx, int ty, bool usePrintRec… 71 …IntersectsDirtyRect(RenderBoxModelObject*, InlineFlowBox*, const PaintInfo&, int tx, int ty) const; 72 …ct(RenderBoxModelObject*, int logicalTop, int logicalBottom, const IntRect&, int tx, int ty) const;
|
D | RenderWidget.cpp | 253 void RenderWidget::paint(PaintInfo& paintInfo, int tx, int ty) in paint() argument 255 if (!shouldPaint(paintInfo, tx, ty)) in paint() 259 ty += y(); in paint() 262 paintBoxDecorations(paintInfo, tx, ty); in paint() 265 paintMask(paintInfo, tx, ty); in paint() 274 paintCustomHighlight(tx - x(), ty - y(), style()->highlight(), true); in paint() 278 IntRect borderRect = IntRect(tx, ty, width(), height()); in paint() 295 … IntPoint paintLocation(tx + borderLeft() + paddingLeft(), ty + borderTop() + paddingTop()); in paint() 397 … HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction actio… in nodeAtPoint() argument 400 bool inside = RenderReplaced::nodeAtPoint(request, result, x, y, tx, ty, action); in nodeAtPoint()
|
D | EllipsisBox.h | 42 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom); 43 …virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, int … 45 IntRect selectionRect(int tx, int ty); 50 void paintSelection(GraphicsContext*, int tx, int ty, RenderStyle*, const Font&);
|
/external/webkit/Tools/DumpRenderTree/mac/PerlSupport/ |
D | DumpRenderTreeSupport_wrapPregenerated.c | 174 SWIG_TypeCheck(const char *c, swig_type_info *ty) { in SWIG_TypeCheck() argument 176 if (!ty) return 0; /* Void pointer */ in SWIG_TypeCheck() 177 s = ty->next; /* First element always just a name */ in SWIG_TypeCheck() 180 if (s == ty->next) return s; in SWIG_TypeCheck() 187 s->next = ty->next; in SWIG_TypeCheck() 188 if (ty->next) ty->next->prev = s; in SWIG_TypeCheck() 189 ty->next = s; in SWIG_TypeCheck() 190 s->prev = ty; in SWIG_TypeCheck() 194 } while (s && (s != ty->next)); in SWIG_TypeCheck() 202 SWIG_TypeCast(swig_type_info *ty, void *ptr) { in SWIG_TypeCast() argument [all …]
|
/external/valgrind/main/mpi/ |
D | libmpiwrap.c | 259 static void showTy ( FILE* f, MPI_Datatype ty ) in showTy() argument 261 if (ty == MPI_DATATYPE_NULL) fprintf(f,"DATATYPE_NULL"); in showTy() 262 else if (ty == MPI_BYTE) fprintf(f,"BYTE"); in showTy() 263 else if (ty == MPI_PACKED) fprintf(f,"PACKED"); in showTy() 264 else if (ty == MPI_CHAR) fprintf(f,"CHAR"); in showTy() 265 else if (ty == MPI_SHORT) fprintf(f,"SHORT"); in showTy() 266 else if (ty == MPI_INT) fprintf(f,"INT"); in showTy() 267 else if (ty == MPI_LONG) fprintf(f,"LONG"); in showTy() 268 else if (ty == MPI_FLOAT) fprintf(f,"FLOAT"); in showTy() 269 else if (ty == MPI_DOUBLE) fprintf(f,"DOUBLE"); in showTy() [all …]
|
/external/clang/include/clang/Sema/ |
D | LocInfoType.h | 38 LocInfoType(QualType ty, TypeSourceInfo *TInfo) in LocInfoType() argument 39 : Type((TypeClass)LocInfo, ty, ty->isDependentType(), in LocInfoType() 40 ty->isInstantiationDependentType(), in LocInfoType() 41 ty->isVariablyModifiedType(), in LocInfoType() 42 ty->containsUnexpandedParameterPack()), in LocInfoType()
|
/external/llvm/test/CodeGen/ARM/ |
D | umulo-32.ll | 3 %umul.ty = type { i32, i1 } 8 %tmp0 = tail call %umul.ty @llvm.umul.with.overflow.i32(i32 %a, i32 37) 9 %tmp1 = extractvalue %umul.ty %tmp0, 0 14 declare %umul.ty @llvm.umul.with.overflow.i32(i32, i32) nounwind readnone 32 %5 = call %umul.ty @llvm.umul.with.overflow.i32(i32 %4, i32 8) 33 %6 = extractvalue %umul.ty %5, 1 34 %7 = extractvalue %umul.ty %5, 0
|
/external/dropbear/libtommath/ |
D | bn_fast_s_mp_sqr.c | 45 int tx, ty, iy; in fast_s_mp_sqr() local 53 ty = MIN(a->used-1, ix); in fast_s_mp_sqr() 54 tx = ix - ty; in fast_s_mp_sqr() 58 tmpy = a->dp + ty; in fast_s_mp_sqr() 63 iy = MIN(a->used-tx, ty+1); in fast_s_mp_sqr() 69 iy = MIN(iy, (ty-tx+1)>>1); in fast_s_mp_sqr()
|
D | bn_fast_s_mp_mul_digs.c | 53 int tx, ty; in fast_s_mp_mul_digs() local 58 ty = MIN(b->used-1, ix); in fast_s_mp_mul_digs() 59 tx = ix - ty; in fast_s_mp_mul_digs() 63 tmpy = b->dp + ty; in fast_s_mp_mul_digs() 68 iy = MIN(a->used-tx, ty+1); in fast_s_mp_mul_digs()
|
D | bn_fast_s_mp_mul_high_digs.c | 45 int tx, ty, iy; in fast_s_mp_mul_high_digs() local 49 ty = MIN(b->used-1, ix); in fast_s_mp_mul_high_digs() 50 tx = ix - ty; in fast_s_mp_mul_high_digs() 54 tmpy = b->dp + ty; in fast_s_mp_mul_high_digs() 59 iy = MIN(a->used-tx, ty+1); in fast_s_mp_mul_high_digs()
|
/external/valgrind/main/VEX/priv/ |
D | guest_ppc_toIR.c | 449 static IRTemp newTemp ( IRType ty ) in newTemp() argument 451 vassert(isPlausibleIRType(ty)); in newTemp() 452 return newIRTemp( irsb->tyenv, ty ); in newTemp() 570 static IRExpr* loadBE ( IRType ty, IRExpr* addr ) in loadBE() argument 572 return IRExpr_Load(Iend_BE, ty, addr); in loadBE() 892 static IROp mkSzOp ( IRType ty, IROp op8 ) in mkSzOp() argument 895 vassert(ty == Ity_I8 || ty == Ity_I16 || in mkSzOp() 896 ty == Ity_I32 || ty == Ity_I64); in mkSzOp() 902 adj = ty==Ity_I8 ? 0 : (ty==Ity_I16 ? 1 : (ty==Ity_I32 ? 2 : 3)); in mkSzOp() 907 static Addr64 mkSzAddr ( IRType ty, Addr64 addr ) in mkSzAddr() argument [all …]
|
/external/skia/src/gpu/ |
D | GrClip.cpp | 30 GrClip::GrClip(GrClipIterator* iter, GrScalar tx, GrScalar ty, in GrClip() argument 32 this->setFromIterator(iter, tx, ty, bounds); in GrClip() 86 void GrClip::setFromIterator(GrClipIterator* iter, GrScalar tx, GrScalar ty, in setFromIterator() argument 105 if (tx || ty) { in setFromIterator() 106 e.fRect.offset(tx, ty); in setFromIterator() 126 if (tx || ty) { in setFromIterator() 127 e.fPath.offset(tx, ty); in setFromIterator()
|
/external/webkit/Source/WebCore/platform/graphics/transforms/ |
D | TranslateTransformOperation.h | 35 …static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, Operatio… in create() argument 37 return adoptRef(new TranslateTransformOperation(tx, ty, Length(0, Fixed), type)); in create() 40 …static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, const Le… in create() argument 42 return adoptRef(new TranslateTransformOperation(tx, ty, tz, type)); in create() 75 …TranslateTransformOperation(const Length& tx, const Length& ty, const Length& tz, OperationType ty… in TranslateTransformOperation() argument 77 , m_y(ty) in TranslateTransformOperation()
|
/external/valgrind/main/VEX/ |
D | test_main.c | 308 sz = sizeofIRType(data->Iex.LDle.ty); 505 static IRType shadowType ( IRType ty ); 648 static IRType shadowType ( IRType ty ) in shadowType() argument 650 switch (ty) { in shadowType() 655 case Ity_I64: return ty; in shadowType() 659 default: ppIRType(ty); in shadowType() 666 static IRExpr* definedOfType ( IRType ty ) { in definedOfType() argument 667 switch (ty) { in definedOfType() 704 static IRAtom* assignNew ( MCEnv* mce, IRType ty, IRExpr* e ) { in assignNew() argument 705 IRTemp t = newIRTemp(mce->bb->tyenv, ty); in assignNew() [all …]
|
/external/llvm/test/Object/ |
D | objdump-symbol-table.test | 10 COFF-i386: [ 0](sec 1)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .text 12 COFF-i386: [ 2](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .data 14 COFF-i386: [ 4](sec 1)(fl 0x00)(ty 200)(scl 2) (nx 0) 0x00000000 _main 15 COFF-i386: [ 5](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 0) 0x00000000 L_.str 16 COFF-i386: [ 6](sec 0)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 _puts 17 COFF-i386: [ 7](sec 0)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 _SomeOtherFunction
|