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

1234567

/external/llvm/include/llvm/IR/
H A DUser.h68 User(Type *ty, unsigned vty, Use *, unsigned NumOps) argument
69 : Value(ty, vty) {
H A DConstant.h47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) argument
48 : User(ty, vty, Ops, NumOps) {}
/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/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.h85 float ty = fM[5]; local
90 uv->fY = ky * xy->fX + sy * xy->fY + ty;
/external/skia/src/opts/
H A DSkMatrix_opts.h20 SkScalar ty = m.getTranslateY(); local
23 dst->fY = src->fY + ty;
27 Sk4s trans4(tx, ty, tx, ty);
48 SkScalar ty = m.getTranslateY(); local
53 dst->fY = src->fY * sy + ty;
57 Sk4s trans4(tx, ty, tx, ty);
79 SkScalar ty = m.getTranslateY(); local
86 src->fX * ky + src->fY * sy + ty);
[all...]
/external/boringssl/src/crypto/rc4/
H A Drc4.c80 uint32_t x, y, tx, ty; local
88 (x = (x + 1) & 0xff, tx = d[x], y = (tx + y) & 0xff, ty = d[y], d[y] = tx, \
89 d[x] = ty, (RC4_CHUNK)d[(tx + ty) & 0xff])
168 d[x] = ty = d[y]; \
170 (out) = d[(tx + ty) & 0xff] ^ (in);
/external/cblas/src/
H A Dcblas_cgerc.c27 float *y=(float *)Y, *yy=(float *)Y, *ty, *st; local
46 ty = y;
65 y = ty;
H A Dcblas_zgerc.c27 double *y=(double *)Y, *yy=(double *)Y, *ty, *st; local
46 ty = y;
65 y = ty;
H A Dcblas_cher2.c33 *yy=(float *)Y, *tx, *ty, *stx, *sty; local
79 ty = y;
121 y=ty;
H A Dcblas_chpr2.c33 *yy=(float *)Y, *tx, *ty, *stx, *sty; local
78 ty = y;
119 y=ty;
H A Dcblas_zher2.c33 *yy=(double *)Y, *tx, *ty, *stx, *sty; local
79 ty = y;
121 y=ty;
/external/clang/lib/ARCMigrate/
H A DTransBlockObjCVariable.cpp105 bool isImplicitStrong(QualType ty) { argument
106 if (isa<AttributedType>(ty.getTypePtr()))
108 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; // expected-warning {{dependent nested name specifier 'B<S>::' for friend class declaration is not supported}}
42 template<typename T> class B { typedef int ty; }; typedef in class:B
45 class ty { class in class:B
/external/clang/test/PCH/
H A Dcxx-templates.cpp37 Dep<A>::Ty ty; local
/external/skia/include/core/
H A DSkRSXform.h21 static SkRSXform Make(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { argument
22 SkRSXform xform = { scos, ssin, tx, ty };
27 * Initialize a new xform based on the scale, rotation (in radians), final tx,ty location
32 static SkRSXform MakeFromRadians(SkScalar scale, SkScalar radians, SkScalar tx, SkScalar ty, argument
36 return Make(c, s, tx + -c * ax + s * ay, ty + -s * ax - c * ay);
53 void set(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { argument
57 fTy = ty;
/external/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h42 explicit MachineConstantPoolValue(Type *ty) : Ty(ty) {} argument
/external/mesa3d/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/mesa3d/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...]
/external/skia/bench/
H A DRotatedRectBench.cpp97 SkScalar tx = 0, ty = 0; variable
101 canvas->translate(tx, ty);
112 ty += kRectH + 2;
113 if (ty > h) {
114 ty = 0;
/external/skia/src/image/
H A DSkImageShader.cpp24 const TileMode ty = (TileMode)buffer.readUInt(); local
31 return new SkImageShader(img, tx, ty, &matrix);
54 SkShader* SkImageShader::Create(const SkImage* image, TileMode tx, TileMode ty, argument
59 return new SkImageShader(image, tx, ty, localMatrix);
/external/skia/src/utils/
H A DSkLayer.cpp145 SkScalar ty = SkScalarMul(m_anchorPoint.fY, m_size.height()); local
146 matrix->preTranslate(tx, ty);
148 matrix->preTranslate(-tx, -ty);
/external/valgrind/memcheck/tests/vbit-test/
H A Dutil.c195 sizeof_irtype(IRType ty) argument
197 return sizeofIRType(ty);
/external/boringssl/src/crypto/ec/
H A Dec_key.c362 BIGNUM *tx, *ty; local
379 ty = BN_CTX_get(ctx);
382 !EC_POINT_get_affine_coordinates_GFp(key->group, point, tx, ty, ctx)) {
388 if (BN_cmp(x, tx) || BN_cmp(y, ty)) {
/external/clang/lib/CodeGen/
H A DCGCall.h49 CallArg(RValue rv, QualType ty, bool needscopy) argument
50 : RV(rv), Ty(ty), NeedsCopy(needscopy)

Completed in 687 milliseconds

1234567