Searched refs:ty (Results 151 - 175 of 347) sorted by relevance

1234567891011>>

/external/autotest/client/deps/nvmap_compactor/src/
H A Dnvmap_carveout_compactor.c232 static void Translate(GLfloat *result, GLfloat tx, GLfloat ty, GLfloat tz) argument
234 result[12] += (result[0] * tx + result[4] * ty + result[8] * tz);
235 result[13] += (result[1] * tx + result[5] * ty + result[9] * tz);
236 result[14] += (result[2] * tx + result[6] * ty + result[10] * tz);
237 result[15] += (result[3] * tx + result[7] * ty + result[11] * tz);
/external/clang/include/clang/AST/
H A DExpr.h2369 QualType ty, ExprValueKind VK, ExprObjectKind OK)
2370 : Expr(MemberExprClass, ty, VK, OK, base->isTypeDependent(),
2385 ValueDecl *memberdecl, SourceLocation l, QualType ty,
2387 : Expr(MemberExprClass, ty, VK, OK, base->isTypeDependent(),
2401 const TemplateArgumentListInfo *targs, QualType ty,
2650 CastExpr(StmtClass SC, QualType ty, ExprValueKind VK, const CastKind kind, argument
2652 : Expr(SC, ty, VK, OK_Ordinary,
2655 ty->isDependentType(),
2658 ty->isDependentType() || (op && op->isValueDependent()),
2659 (ty
2384 MemberExpr(Expr *base, bool isarrow, SourceLocation operatorloc, ValueDecl *memberdecl, SourceLocation l, QualType ty, ExprValueKind VK, ExprObjectKind OK) argument
2738 ImplicitCastExpr(QualType ty, CastKind kind, Expr *op, unsigned BasePathLength, ExprValueKind VK) argument
2749 ImplicitCastExpr(OnStack_t _, QualType ty, CastKind kind, Expr *op, ExprValueKind VK) argument
4317 ImplicitValueInitExpr(QualType ty) argument
4514 ExtVectorElementExpr(QualType ty, ExprValueKind VK, Expr *base, IdentifierInfo &accessor, SourceLocation loc) argument
4571 BlockExpr(BlockDecl *BD, QualType ty) argument
[all...]
/external/clang/lib/AST/
H A DTypePrinter.cpp93 void print(const Type *ty, Qualifiers qs, raw_ostream &OS,
101 void printBefore(const Type *ty, Qualifiers qs, raw_ostream &OS);
103 void printAfter(const Type *ty, Qualifiers qs, raw_ostream &OS);
1649 std::string QualType::getAsString(const Type *ty, Qualifiers qs) { argument
1652 getAsStringInternal(ty, qs, buffer, PrintingPolicy(options));
1656 void QualType::print(const Type *ty, Qualifiers qs, argument
1662 TypePrinter(policy, Indentation).print(ty, qs, OS, PH);
1665 void QualType::getAsStringInternal(const Type *ty, Qualifiers qs, argument
1670 TypePrinter(policy).print(ty, qs, StrOS, buffer);
/external/swiftshader/third_party/LLVM/include/llvm-c/
H A DCore.h1126 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
1127 inline ty *unwrap(ref P) { \
1128 return reinterpret_cast<ty*>(P); \
1131 inline ref wrap(const ty *P) { \
1132 return reinterpret_cast<ref>(const_cast<ty*>(P)); \
1135 #define DEFINE_ISA_CONVERSION_FUNCTIONS(ty, ref) \
1136 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
1143 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \
1144 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
/external/clang/lib/ARCMigrate/
H A DTransProperties.cpp348 QualType ty = props[0].PropD->getType().getUnqualifiedType(); local
352 assert(ty == I->PropD->getType().getUnqualifiedType());
355 return ty;
/external/libcups/filter/
H A Dpstops.c2741 tx, ty; /* Translation values for subpage */ local
2828 ty = 0.5 * (pagel - l);
2830 doc_printf(doc, "%.1f %.1f translate %.3f %.3f scale\n", tx, ty,
2855 ty = 0.5 * (pagel - w);
2863 ty, tx + pagew * 0.5 * x, w / bboxw, l / bboxl);
2882 ty = 0.5 * (pagew - l);
2890 tx + pagel * 0.5 * x, ty, w / bboxw, l / bboxl);
2922 ty = 0.5 * (pagel * 0.5 - l);
2925 tx + x * pagew * 0.5, ty + y * pagel * 0.5,
2965 ty
[all...]
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
H A Dllvm.ml1204 let rec string_of_lltype ty =
1206 match classify_type ty with
1207 TypeKind.Integer -> "i" ^ string_of_int (integer_bitwidth ty)
1209 (let ety = element_type ty in
1215 | _ -> (string_of_lltype (element_type ty)) ^ "*")
1218 Array.map string_of_lltype (struct_element_types ty)
1220 if is_packed ty
1223 | TypeKind.Array -> "[" ^ (string_of_int (array_length ty)) ^
1224 " x " ^ (string_of_lltype (element_type ty)) ^ "]"
1225 | TypeKind.Vector -> "<" ^ (string_of_int (vector_size ty))
[all...]
/external/clang/test/Analysis/
H A Dtaint-tester.c54 int ty = xy.y; // FIXME: This should be tainted as well. local
/external/clang/test/SemaCXX/
H A Dwarn-unused-local-typedef.cpp196 decltype(tx.t)::t ty;
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h61 unsigned SCEVTy, const SCEV *op, Type *ty);
81 const SCEV *op, Type *ty);
96 const SCEV *op, Type *ty);
111 const SCEV *op, Type *ty);
/external/llvm/lib/IR/
H A DInstruction.cpp23 Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps, argument
25 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
35 Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps, argument
37 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(nullptr) {
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_target_gm107.cpp55 TargetGM107::isOpSupported(operation op, DataType ty) const
H A Dnv50_ir.h641 virtual int print(char *, size_t, DataType ty = TYPE_NONE) const = 0;
690 virtual int print(char *, size_t, DataType ty = TYPE_NONE) const;
712 virtual int print(char *, size_t, DataType ty = TYPE_NONE) const;
715 int print(char *, size_t, Value *, Value *, DataType ty = TYPE_NONE) const;
741 ImmediateValue(const ImmediateValue *, DataType ty);
765 virtual int print(char *, size_t, DataType ty = TYPE_NONE) const;
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTVector.cpp75 VERTTYPE ty = VERTTYPEMUL(x,rhs.f[3])+VERTTYPEMUL(y,rhs.f[4])+VERTTYPEMUL(z,rhs.f[5]); local
78 y = ty;
112 VERTTYPE ty = VERTTYPEMUL(x,rhs.f[4])+VERTTYPEMUL(y,rhs.f[5])+VERTTYPEMUL(z,rhs.f[6])+VERTTYPEMUL(w,rhs.f[7]); local
116 y = ty;
/external/vulkan-validation-layers/demos/smoke/
H A Dgenerate-dispatch-table.py33 self.ty = self._get_type()
378 if cmd.ty not in commands_by_types:
379 commands_by_types[cmd.ty] = []
380 commands_by_types[cmd.ty].append([cmd, ext.guard])
/external/valgrind/VEX/priv/
H A Dhost_s390_isel.c908 IRType ty = typeOfIRExpr(env->type_env, expr); local
910 vassert(ty == Ity_I128);
1084 IRType ty = typeOfIRExpr(env->type_env, expr); local
1089 vassert(ty == Ity_I8 || ty == Ity_I16 || ty == Ity_I32 || ty == Ity_I64);
1091 size = sizeofIRType(ty); /* size of the result after evaluating EXPR */
1907 IRType ty = typeOfIRExpr(env->type_env, expr); local
1910 vassert(ty
1952 IRType ty = typeOfIRExpr(env->type_env, expr); local
2282 IRType ty = typeOfIRExpr(env->type_env, expr); local
2641 IRType ty = typeOfIRExpr(env->type_env, expr); local
2977 IRType ty = typeOfIRExpr(env->type_env, expr); local
[all...]
H A Dhost_arm_isel.c910 IRType ty = typeOfIRExpr(env->type_env,e); local
911 vassert(ty == Ity_I32);
976 IRType ty = typeOfIRExpr(env->type_env,e); local
977 vassert(ty == Ity_I32);
1030 IRType ty = typeOfIRExpr(env->type_env,e); local
1031 vassert(ty == Ity_I32);
1104 IRType ty = typeOfIRExpr(env->type_env,e); local
1105 vassert(ty == Ity_I32 || ty == Ity_I16 || ty
1160 IRType ty = typeOfIRExpr(env->type_env,e); local
1331 IRType ty = typeOfIRExpr(env->type_env,e); local
2335 IRType ty = typeOfIRExpr(env->type_env, e); local
3956 IRType ty = typeOfIRExpr(env->type_env, e); local
5510 IRType ty = typeOfIRExpr(env->type_env,e); local
5709 IRType ty = typeOfIRExpr(env->type_env,e); local
6085 IRType ty = typeOfIRTemp(env->type_env, tmp); local
6252 IRType ty = typeOfIRTemp(env->type_env, res); local
6325 IRType ty = typeOfIRTemp(env->type_env, res); local
[all...]
/external/mesa3d/src/amd/addrlib/r800/
H A Dsiaddrlib.cpp198 UINT_32 ty = y / MicroTileHeight; local
203 UINT_32 y3 = _BIT(ty,0);
204 UINT_32 y4 = _BIT(ty,1);
205 UINT_32 y5 = _BIT(ty,2);
206 UINT_32 y6 = _BIT(ty,3);
589 UINT_32 ty, ///< [in] y coord, in Tiles
602 ty0 = _BIT(ty,0);
603 ty1 = _BIT(ty,1);
809 UINT_32 ty = y / MicroTileHeight; local
874 TileCoordToMaskElementIndex(tx, ty, pTileInf
587 TileCoordToMaskElementIndex( UINT_32 tx, UINT_32 ty, AddrPipeCfg pipeConfig, UINT_32* macroShift, UINT_32* elemIdxBits ) const argument
[all...]
/external/doclava/src/com/google/doclava/
H A DConverter.java630 for (Type ty : t.asParameterizedType().typeArguments()) {
631 keyString += ty.toString() + "/";
640 for (Type ty : t.asTypeVariable().bounds()) {
641 keyString += ty.toString() + "/";
650 for (Type ty : t.asWildcardType().superBounds()) {
651 keyString += ty.toString() + "/";
655 for (Type ty : t.asWildcardType().extendsBounds()) {
656 keyString += ty.toString() + "/";
/external/freetype/src/psaux/
H A Dpsfont.c346 font->currentTransform.ty = cf2_intToFixed( 0 );
508 translation.y = transform->ty;
/external/skia/src/core/
H A DSkLatticeIter.cpp297 SkScalar ty = matrix.getTranslateY(); local
300 fDstY[i] = fDstY[i] * sy + ty;
/external/skia/tools/sk_app/win/
H A DWindow_win.cpp323 LONG ty = (ti.y / 100) - topLeft.y; local
324 eventHandled = window->onTouch(ti.dwID, state, tx, ty) || eventHandled;
/external/skqp/src/core/
H A DSkLatticeIter.cpp298 SkScalar ty = matrix.getTranslateY(); local
301 fDstY[i] = fDstY[i] * sy + ty;
/external/skqp/tools/sk_app/win/
H A DWindow_win.cpp323 LONG ty = (ti.y / 100) - rect.top; local
324 eventHandled = window->onTouch(ti.dwID, state, tx, ty) || eventHandled;
/external/valgrind/mpi/
H A Dmpiwrap_type_test.c249 do { Ty ty = (_type); \
251 sendToMyself((_commit_free), &ty, nm); \

Completed in 670 milliseconds

1234567891011>>