Searched defs:ty (Results 1 - 25 of 194) sorted by relevance

12345678

/external/clang/include/clang/Sema/
H A DLocInfoType.h38 LocInfoType(QualType ty, TypeSourceInfo *TInfo) argument
39 : Type((TypeClass)LocInfo, ty, ty->isDependentType(),
40 ty->isInstantiationDependentType(),
41 ty->isVariablyModifiedType(),
42 ty->containsUnexpandedParameterPack()),
/external/llvm/include/llvm/IR/
H A DConstant.h47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) argument
48 : User(ty, vty, Ops, NumOps) {}
H A DUser.h52 User(Type *ty, unsigned vty, Use *OpList, unsigned NumOps) argument
53 : Value(ty, vty), OperandList(OpList), NumOperands(NumOps) {}
/external/llvm/test/Bindings/Ocaml/
H A Dexecutionengine.ml107 let ty = intptr_type td in var
108 if ty != i32_type && ty != i64_type then bomb "target_data did not work";
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dapi_transform.c103 void vegaTranslate(VGfloat tx, VGfloat ty) argument
107 matrix_translate(dst, tx, ty);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPathUtils.h86 float ty = fM[5]; local
91 uv->fY = ky * xy->fX + sy * xy->fY + ty;
H A DFlingState.cpp80 float ty = fDirection.fY * dist; local
83 ty = sk_float_round2int(ty);
85 matrix->setTranslate(tx, ty);
86 // printf("---- evaluate (%g %g)\n", tx, ty);
H A DGrBitmapTextContext.cpp258 GrFixed ty = SkIntToFixed(glyph->fAtlasLocation.fY); local
266 SkFixedToFloat(texture->normalizeFixedY(ty)),
268 SkFixedToFloat(texture->normalizeFixedY(ty + height)),
/external/dropbear/libtommath/
H A Dbn_fast_s_mp_mul_digs.c53 int tx, ty; local
58 ty = MIN(b->used-1, ix);
59 tx = ix - ty;
63 tmpy = b->dp + ty;
66 while (tx++ < a->used && ty-- >= 0) { ... }
68 iy = MIN(a->used-tx, ty+1);
H A Dbn_fast_s_mp_mul_high_digs.c45 int tx, ty, iy; local
49 ty = MIN(b->used-1, ix);
50 tx = ix - ty;
54 tmpy = b->dp + ty;
57 while (tx++ < a->used && ty-- >= 0) { ... }
59 iy = MIN(a->used-tx, ty+1);
H A Dbn_fast_s_mp_sqr.c22 * (ty-tx) so that it never happens. You double all those
45 int tx, ty, iy; local
53 ty = MIN(a->used-1, ix);
54 tx = ix - ty;
58 tmpy = a->dp + ty;
61 while (tx++ < a->used && ty-- >= 0) { ... }
63 iy = MIN(a->used-tx, ty+1);
65 /* now for squaring tx can never equal ty
69 iy = MIN(iy, (ty-tx+1)>>1);
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_transform.c103 void vegaTranslate(VGfloat tx, VGfloat ty) argument
107 matrix_translate(dst, tx, ty);
/external/skia/src/gpu/
H A DGrPathUtils.h86 float ty = fM[5]; local
91 uv->fY = ky * xy->fX + sy * xy->fY + ty;
/external/chromium_org/skia/ext/
H A Dplatform_device_mac.cc105 SkScalar ty = -matrix.getTranslateY(); // y axis is flipped. local
106 transformed_matrix.setTranslateY(ty + (SkScalar)height);
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTranslateTransformOperation.h36 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, OperationType type) argument
38 return adoptRef(new TranslateTransformOperation(tx, ty, Length(0, Fixed), type));
41 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, const Length& tz, OperationType type) argument
43 return adoptRef(new TranslateTransformOperation(tx, ty, tz, type));
79 TranslateTransformOperation(const Length& tx, const Length& ty, const Length& tz, OperationType type) argument
81 , m_y(ty)
/external/chromium_org/third_party/openssl/openssl/crypto/rc4/
H A Drc4_enc.c74 register RC4_INT x,y,tx,ty; local
117 ty=d[y], \
119 d[x]=ty, \
120 (RC4_CHUNK)d[(tx+ty)&0xff]\
269 d[x]=ty=d[y]; \
271 (out) = d[(tx+ty)&0xff]^ (in);
/external/clang/lib/ARCMigrate/
H A DTransBlockObjCVariable.cpp106 bool isImplicitStrong(QualType ty) { argument
107 if (isa<AttributedType>(ty.getTypePtr()))
109 return ty.getLocalQualifiers().getObjCLifetime() == Qualifiers::OCL_Strong;
/external/clang/test/CXX/class.access/class.friend/
H A Dp3-cxx0x.cpp39 template <typename S> friend class B<S>::ty;
42 template <typename T> class B { typedef int ty; }; typedef in class:B
/external/clang/test/PCH/
H A Dcxx-templates.cpp34 Dep<A>::Ty ty; local
/external/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h41 explicit MachineConstantPoolValue(Type *ty) : Ty(ty) {} argument
/external/openssl/crypto/rc4/
H A Drc4_enc.c74 register RC4_INT x,y,tx,ty; local
117 ty=d[y], \
119 d[x]=ty, \
120 (RC4_CHUNK)d[(tx+ty)&0xff]\
269 d[x]=ty=d[y]; \
271 (out) = d[(tx+ty)&0xff]^ (in);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGMatrix.h43 SVGMatrix translate(double tx, double ty) argument
46 copy.translate(tx, ty);
H A DSVGTransform.cpp68 void SVGTransform::setTranslate(float tx, float ty) argument
74 m_matrix.translate(tx, ty);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_surface.c100 unsigned tx, ty, tw, th; local
104 &tx, &ty, &tw, &th);
111 tx + x, ty + y);
118 unsigned tx, ty, tw, th; local
122 adjust_to_tile_bounds(dstx, dsty, width, height, &tx, &ty, &tw, &th);
125 boolean contained_y = ty + y >= dsty &&
126 ty + y + TILE_SIZE <= dsty + height ?
146 tx + x, ty + y);
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_norm_tmp.h61 GLfloat tx, ty, tz; local
65 ty = ux * m4 + uy * m5 + uz * m6;
69 GLdouble len = tx*tx + ty*ty + tz*tz;
73 out[i][1] = ty * scale;
90 GLfloat tx, ty, tz; local
94 ty = ux * m4 + uy * m5 + uz * m6;
100 out[i][1] = ty * len;
128 GLfloat tx, ty, tz; local
132 ty
155 GLfloat tx, ty, tz; local
[all...]

Completed in 685 milliseconds

12345678