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

12345678910

/external/llvm/include/llvm/IR/
H A DUser.h70 User(Type *ty, unsigned vty, Use *, unsigned NumOps) argument
71 : Value(ty, vty) {
H A DConstant.h47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) argument
48 : User(ty, vty, Ops, NumOps) {}
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DUser.h76 User(Type *ty, unsigned vty, Use *, unsigned NumOps) argument
77 : Value(ty, vty) {
H A DConstant.h46 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) argument
47 : User(ty, vty, Ops, NumOps) {}
/external/skia/gm/
H A Ddrrect_small_inner.cpp28 SkScalar ty = kOuterRadius - innerRadiusY; local
33 SkRect::MakeXYWH(tx, ty, 2 * innerRadiusX, 2 * innerRadiusY));
H A Dpathmaskcache.cpp89 SkScalar ty = drawPathSet(path, SkMatrix::I()); variable
90 canvas->translate(0, ty);
95 ty = drawPathSet(path, s);
96 canvas->translate(0.f, ty);
101 ty = drawPathSet(path, r);
102 canvas->translate(0.f, ty);
/external/skqp/gm/
H A Ddrrect_small_inner.cpp28 SkScalar ty = kOuterRadius - innerRadiusY; local
33 SkRect::MakeXYWH(tx, ty, 2 * innerRadiusX, 2 * innerRadiusY));
H A Dpathmaskcache.cpp89 SkScalar ty = drawPathSet(path, SkMatrix::I()); variable
90 canvas->translate(0, ty);
95 ty = drawPathSet(path, s);
96 canvas->translate(0.f, ty);
101 ty = drawPathSet(path, r);
102 canvas->translate(0.f, ty);
/external/boringssl/src/crypto/rc4/
H A Drc4.c69 uint32_t ty = d[y]; local
70 d[x] = ty;
72 out[i] = d[(tx + ty) & 0xff] ^ in[i];
/external/clang/include/clang/AST/
H A DLocInfoType.h38 LocInfoType(QualType ty, TypeSourceInfo *TInfo) argument
39 : Type((TypeClass)LocInfo, ty, ty->isDependentType(),
40 ty->isInstantiationDependentType(), ty->isVariablyModifiedType(),
41 ty->containsUnexpandedParameterPack()),
/external/swiftshader/third_party/LLVM/include/llvm/
H A DConstant.h46 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) argument
47 : User(ty, vty, Ops, NumOps) {}
H A DUser.h50 User(Type *ty, unsigned vty, Use *OpList, unsigned NumOps) argument
51 : Value(ty, vty), OperandList(OpList), NumOperands(NumOps) {}
/external/swiftshader/third_party/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/tensorflow/tensorflow/stream_executor/
H A Dblas.cc74 string ComputationTypeString(ComputationType ty) { argument
75 switch (ty) {
87 LOG(FATAL) << "Unknown ComputationType " << static_cast<int32>(ty);
/external/turbine/java/com/google/turbine/types/
H A DErasure.java28 public static Type erase(Type ty, Function<TyVarSymbol, SourceTypeBoundClass.TyVarInfo> tenv) { argument
29 switch (ty.tyKind()) {
32 return ty;
34 return eraseClassTy((Type.ClassTy) ty);
36 return eraseArrayTy((Type.ArrayTy) ty, tenv);
38 return eraseTyVar((TyVar) ty, tenv);
40 throw new AssertionError(ty.tyKind());
45 TyVar ty, Function<TyVarSymbol, SourceTypeBoundClass.TyVarInfo> tenv) {
46 SourceTypeBoundClass.TyVarInfo info = tenv.apply(ty.sym());
57 Type.ArrayTy ty, Functio
44 eraseTyVar( TyVar ty, Function<TyVarSymbol, SourceTypeBoundClass.TyVarInfo> tenv) argument
56 eraseArrayTy( Type.ArrayTy ty, Function<TyVarSymbol, SourceTypeBoundClass.TyVarInfo> tenv) argument
61 eraseClassTy(Type.ClassTy ty) argument
[all...]
/external/turbine/java/com/google/turbine/binder/
H A DHierarchyBinder.java109 private ClassSymbol resolveClass(Tree.ClassTy ty) { argument
113 for (Tree.ClassTy curr = ty; curr != null; curr = curr.base().orNull()) {
117 LookupResult result = lookup(ty, new LookupKey(flat));
119 throw TurbineError.format(base.source(), ty.position(), ErrorKind.SYMBOL_NOT_FOUND, ty);
128 throw error(ty.position(), ErrorKind.CYCLIC_HIERARCHY, e.getMessage());
131 throw error(ty.position(), ErrorKind.SYMBOL_NOT_FOUND, bit);
/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;
/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.h22 static SkRSXform Make(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { argument
23 SkRSXform xform = { scos, ssin, tx, ty };
28 * Initialize a new xform based on the scale, rotation (in radians), final tx,ty location
33 static SkRSXform MakeFromRadians(SkScalar scale, SkScalar radians, SkScalar tx, SkScalar ty, argument
37 return Make(c, s, tx + -c * ax + s * ay, ty + -s * ax - c * ay);
54 void set(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { argument
58 fTy = ty;
/external/skia/src/gpu/
H A DGrPathUtils.h82 float ty = fM[5]; local
87 uv->fY = ky * xy->fX + sy * xy->fY + ty;
/external/skqp/include/core/
H A DSkRSXform.h22 static SkRSXform Make(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { argument
23 SkRSXform xform = { scos, ssin, tx, ty };
28 * Initialize a new xform based on the scale, rotation (in radians), final tx,ty location
33 static SkRSXform MakeFromRadians(SkScalar scale, SkScalar radians, SkScalar tx, SkScalar ty, argument
37 return Make(c, s, tx + -c * ax + s * ay, ty + -s * ax - c * ay);
54 void set(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { argument
58 fTy = ty;
/external/skqp/src/gpu/
H A DGrPathUtils.h82 float ty = fM[5]; local
87 uv->fY = ky * xy->fX + sy * xy->fY + ty;

Completed in 1471 milliseconds

12345678910