HomeSort by relevance Sort by last modified time
    Searched refs:ty (Results 226 - 250 of 344) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/src/tls/
libtommath.c 2446 int tx, ty; local
3275 int tx, ty, iy; local
    [all...]
  /external/dropbear/
loginrec.c 689 register struct ttyent *ty; local
694 while ((struct ttyent *)0 != (ty = getttyent())) {
696 if (!strncmp(ty->ty_name, ut->ut_line, sizeof(ut->ut_line)))
701 if((struct ttyent *)0 == ty) {
    [all...]
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 544 const Scalar ty = Scalar(2)*this->y(); local
547 const Scalar twy = ty*this->w();
550 const Scalar txy = ty*this->x();
552 const Scalar tyy = ty*this->y();
  /external/openssh/
loginrec.c 849 struct ttyent *ty; local
853 while (NULL != (ty = getttyent())) {
855 if (!strncmp(ty->ty_name, ut->ut_line, sizeof(ut->ut_line)))
860 if (NULL == ty) {
    [all...]
  /external/skia/legacy/src/core/
SkBitmapProcShader.cpp 12 bool SkBitmapProcShader::CanDo(const SkBitmap& bm, TileMode tx, TileMode ty) {
18 // if (tx == ty && (kClamp_TileMode == tx || kRepeat_TileMode == tx))
  /external/webkit/Source/WebCore/rendering/
RenderView.cpp 174 void RenderView::paint(PaintInfo& paintInfo, int tx, int ty)
178 paintObject(paintInfo, tx, ty);
331 void RenderView::absoluteRects(Vector<IntRect>& rects, int tx, int ty)
333 rects.append(IntRect(tx, ty, m_layer->width(), m_layer->height()));
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Matrix_Delegate.java 600 float ty, sy = dst.height() / src.height(); local
613 ty = dst.top - src.top * sy;
630 ty += diff;
637 d.mValues[5] = ty;
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 788 * @param ty how many pixels to translate vertically
792 private boolean translate(float tx, float ty) {
825 Math.min(maxBottom - mTranslateRect.top, ty));
831 translateY = Math.max(maxBottom - b, Math.min(maxTop - t, ty));
839 return (translateX == tx) && (translateY == ty);
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 293 static char ClassifyType(StringRef ty, bool &quad, bool &poly, bool &usgn) {
297 if (ty[off] == 'Q') {
303 if (ty[off] == 'P') {
309 if (ty[off] == 'U') {
315 return ty[off];
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
debuginfo.c 3384 TyEnt* ty; local
3675 TyEnt* ty; local
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 58 const Type *Ty = QT.getTypePtr();
60 Ty = QT->getPointeeType().getTypePtr();
62 Ty = cast<ArrayType>(QT)->getElementType().getTypePtr();
65 CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
87 Expr *initializer, QualType ty,
90 : Expr(CXXNewExprClass, ty, VK_RValue, OK_Ordinary,
91 ty->isDependentType(), ty->isDependentType(),
92 ty->isInstantiationDependentType(),
93 ty->containsUnexpandedParameterPack())
    [all...]
  /external/opencv/cvaux/src/
cvscanlines.cpp 1906 int tx, ty; local
    [all...]
  /external/webkit/Source/WebCore/editing/
SelectionController.cpp     [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h 37 TerminatorInst(Type *Ty, Instruction::TermOps iType,
40 : Instruction(Ty, iType, Ops, NumOps, InsertBefore) {}
42 TerminatorInst(Type *Ty, Instruction::TermOps iType,
44 : Instruction(Ty, iType, Ops, NumOps, InsertAtEnd) {}
93 UnaryInstruction(Type *Ty, unsigned iType, Value *V,
95 : Instruction(Ty, iType, &Op<0>(), 1, IB) {
98 UnaryInstruction(Type *Ty, unsigned iType, Value *V, BasicBlock *IAE)
99 : Instruction(Ty, iType, &Op<0>(), 1, IAE) {
142 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
144 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
    [all...]
  /external/llvm/lib/IR/
Value.cpp 39 static inline Type *checkType(Type *Ty) {
40 assert(Ty && "Value defined with a null type: Error!");
41 return const_cast<Type*>(Ty);
44 Value::Value(Type *ty, unsigned scid)
46 SubclassOptionalData(0), SubclassData(0), VTy((Type*)checkType(ty)),
429 Type *Ty = *GTI++;
431 if (isa<StructType>(Ty))
440 ArrayType *ATy = dyn_cast<ArrayType>(Ty);
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 589 public void translate(double tx, double ty)
591 graphics.translate(tx, ty);
  /external/skia/legacy/src/utils/
SkMatrix44.cpp 116 void SkMatrix44::setTranslate(SkMScalar tx, SkMScalar ty, SkMScalar tz) {
119 fMat[3][1] = ty;
  /external/valgrind/main/drd/
drd_load_store.c 644 sizeofIRType(data->Iex.Load.ty));
647 sizeofIRType(data->Iex.Load.ty));
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 388 void GraphicsContext::translate(float tx, float ty)
393 gc->Translate(tx, ty);
  /external/clang/include/clang/AST/
TypeLoc.h 41 // The correctness of this relies on the property that, for Type *Ty,
42 // QualType(Ty, 0).getAsOpaquePtr() == (void*) Ty
43 const void *Ty;
81 TypeLoc() : Ty(0), Data(0) { }
82 TypeLoc(QualType ty, void *opaqueData)
83 : Ty(ty.getAsOpaquePtr()), Data(opaqueData) { }
84 TypeLoc(const Type *ty, void *opaqueData)
85 : Ty(ty), Data(opaqueData) {
    [all...]
  /external/dropbear/libtommath/pre_gen/
mpi.c 433 int tx, ty; local
438 ty = MIN(b->used-1, ix);
439 tx = ix - ty;
443 tmpy = b->dp + ty;
446 while (tx++ < a->used && ty-- >= 0) { ... }
448 iy = MIN(a->used-tx, ty+1);
536 int tx, ty, iy; local
540 ty = MIN(b->used-1, ix);
541 tx = ix - ty;
545 tmpy = b->dp + ty;
638 int tx, ty, iy; local
    [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c 594 transstr ty; local
596 trans2utf(env, 1, 0, ctype, &ty);
598 ty.jstr);
604 (*env)->DeleteLocalRef(env, ty.jstr);
625 transstr ty; local
628 cols[i + ncol], &ty);
630 ty.jstr);
636 (*env)->DeleteLocalRef(env, ty.jstr);
660 transstr ty; local
663 cols[i + ncol], &ty);
712 transstr ty; local
    [all...]
  /external/skia/src/core/
SkBitmapProcShader.cpp 13 bool SkBitmapProcShader::CanDo(const SkBitmap& bm, TileMode tx, TileMode ty) {
19 // if (tx == ty && (kClamp_TileMode == tx || kRepeat_TileMode == tx))
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.h 120 void translate(float tx, float ty);
  /external/clang/lib/Analysis/
UninitializedValues.cpp 39 QualType ty = vd->getType(); local
40 return ty->isScalarType() || ty->isVectorType();

Completed in 1422 milliseconds

1 2 3 4 5 6 7 8 91011>>