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

123456789

/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/test/Bindings/Ocaml/
H A Dexecutionengine.ml110 let ty = DataLayout.intptr_type context dl in var
111 if ty != i32_type && ty != i64_type then bomb "target_data did not work";
/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, 0, type));
41 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, double tz, OperationType type) argument
43 return adoptRef(new TranslateTransformOperation(tx, ty, tz, type));
78 TranslateTransformOperation(const Length& tx, const Length& ty, double tz, OperationType type) argument
80 , m_y(ty)
/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.h85 float ty = fM[5]; local
90 uv->fY = ky * xy->fX + sy * xy->fY + ty;
/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.h54 User(Type *ty, unsigned vty, Use *OpList, unsigned NumOps) argument
55 : Value(ty, vty), NumOperands(NumOps), OperandList(OpList) {}
/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/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/core/dom/
H A DDOMMatrix.cpp52 DOMMatrix* DOMMatrix::translateSelf(double tx, double ty, double tz) argument
54 if (!tx && !ty && !tz)
61 m_matrix.translate(tx, ty);
63 m_matrix.translate3d(tx, ty, tz);
H A DDOMMatrixReadOnly.cpp25 DOMMatrix* DOMMatrixReadOnly::translate(double tx, double ty, double tz) argument
27 return DOMMatrix::create(this)->translateSelf(tx, ty, tz);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTransformTearOff.cpp68 void SVGTransformTearOff::setTranslate(float tx, float ty, ExceptionState& exceptionState) argument
75 target()->setTranslate(tx, ty);
H A DSVGMatrixTearOff.cpp95 PassRefPtr<SVGMatrixTearOff> SVGMatrixTearOff::translate(double tx, double ty) argument
98 matrix->mutableValue()->translate(tx, ty);
H A DSVGTransform.cpp92 void SVGTransform::setTranslate(float tx, float ty) argument
98 m_matrix.translate(tx, 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/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/css/resolver/
H A DTransformBuilder.cpp164 Length ty = Length(0, Fixed); local
166 ty = convertToFloatLength(firstValue, conversionData);
172 ty = convertToFloatLength(secondValue, conversionData);
177 operations.operations().append(TranslateTransformOperation::create(tx, ty, 0, getTransformOperationType(transformValue->operationType())));
183 Length ty = Length(0, Fixed); local
188 ty = convertToFloatLength(firstValue, conversionData);
198 ty = convertToFloatLength(secondValue, conversionData);
203 operations.operations().append(TranslateTransformOperation::create(tx, ty, tz, getTransformOperationType(transformValue->operationType())));
/external/chromium_org/third_party/boringssl/src/crypto/rc4/
H A Drc4.c76 register RC4_INT x, y, tx, ty; local
114 (x = (x + 1) & 0xff, tx = d[x], y = (tx + y) & 0xff, ty = d[y], d[y] = tx, \
115 d[x] = ty, (RC4_CHUNK)d[(tx + ty) & 0xff])
257 d[x] = ty = d[y]; \
259 (out) = d[(tx + ty) & 0xff] ^ (in);
/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...]
/external/chromium_org/third_party/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;

Completed in 570 milliseconds

123456789