Home
last modified time | relevance | path

Searched refs:ty (Results 1 – 25 of 474) sorted by relevance

12345678910>>...19

/external/llvm/include/llvm/Support/
DCBindingWrapping.h20 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \ argument
21 inline ty *unwrap(ref P) { \
22 return reinterpret_cast<ty*>(P); \
25 inline ref wrap(const ty *P) { \
26 return reinterpret_cast<ref>(const_cast<ty*>(P)); \
29 #define DEFINE_ISA_CONVERSION_FUNCTIONS(ty, ref) \ argument
30 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
37 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \ argument
38 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
/external/valgrind/mpi/
Dlibmpiwrap.c259 static void showTy ( FILE* f, MPI_Datatype ty ) in showTy() argument
261 if (ty == MPI_DATATYPE_NULL) fprintf(f,"DATATYPE_NULL"); in showTy()
262 else if (ty == MPI_BYTE) fprintf(f,"BYTE"); in showTy()
263 else if (ty == MPI_PACKED) fprintf(f,"PACKED"); in showTy()
264 else if (ty == MPI_CHAR) fprintf(f,"CHAR"); in showTy()
265 else if (ty == MPI_SHORT) fprintf(f,"SHORT"); in showTy()
266 else if (ty == MPI_INT) fprintf(f,"INT"); in showTy()
267 else if (ty == MPI_LONG) fprintf(f,"LONG"); in showTy()
268 else if (ty == MPI_FLOAT) fprintf(f,"FLOAT"); in showTy()
269 else if (ty == MPI_DOUBLE) fprintf(f,"DOUBLE"); in showTy()
[all …]
/external/skia/src/core/
DSkMatrixPriv.h24 SkScalar ty = mx.getTranslateY(); in InverseMapRect() local
25 Sk4f trans(tx, ty, tx, ty); in InverseMapRect()
51 const SkScalar ty = mx.getTranslateY(); in MapPointsWithStride() local
52 Sk2s trans(tx, ty); in MapPointsWithStride()
77 const SkScalar ty = mx.getTranslateY(); in SetMappedRectFan() local
80 t += ty; in SetMappedRectFan()
82 b += ty; in SetMappedRectFan()
87 t = sy * t + ty; in SetMappedRectFan()
89 b = sy * b + ty; in SetMappedRectFan()
/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_build_util.cpp66 BuildUtil::mkOp1(operation op, DataType ty, Value *dst, Value *src) in mkOp1() argument
68 Instruction *insn = new_Instruction(func, op, ty); in mkOp1()
78 BuildUtil::mkOp2(operation op, DataType ty, Value *dst, in mkOp2() argument
81 Instruction *insn = new_Instruction(func, op, ty); in mkOp2()
92 BuildUtil::mkOp3(operation op, DataType ty, Value *dst, in mkOp3() argument
95 Instruction *insn = new_Instruction(func, op, ty); in mkOp3()
107 BuildUtil::mkLoad(DataType ty, Symbol *mem, Value *ptr) in mkLoad() argument
109 Instruction *insn = new_Instruction(func, OP_LOAD, ty); in mkLoad()
122 BuildUtil::mkStore(operation op, DataType ty, Symbol *mem, Value *ptr, in mkStore() argument
125 Instruction *insn = new_Instruction(func, op, ty); in mkStore()
[all …]
Dnv50_ir_inlines.h49 static inline unsigned int typeSizeof(DataType ty) in typeSizeof() argument
51 switch (ty) { in typeSizeof()
92 static inline bool isFloatType(DataType ty) in isFloatType() argument
94 return (ty >= TYPE_F16 && ty <= TYPE_F64); in isFloatType()
97 static inline bool isSignedIntType(DataType ty) in isSignedIntType() argument
99 return (ty == TYPE_S8 || ty == TYPE_S16 || ty == TYPE_S32); in isSignedIntType()
102 static inline bool isSignedType(DataType ty) in isSignedType() argument
104 switch (ty) { in isSignedType()
117 static inline DataType intTypeToSigned(DataType ty) in intTypeToSigned() argument
119 switch (ty) { in intTypeToSigned()
[all …]
/external/clang/include/clang/AST/
DLocInfoType.h38 LocInfoType(QualType ty, TypeSourceInfo *TInfo) in LocInfoType() argument
39 : Type((TypeClass)LocInfo, ty, ty->isDependentType(), in LocInfoType()
40 ty->isInstantiationDependentType(), ty->isVariablyModifiedType(), in LocInfoType()
41 ty->containsUnexpandedParameterPack()), in LocInfoType()
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/
Dumulo-32.ll3 %umul.ty = type { i32, i1 }
8 %tmp0 = tail call %umul.ty @llvm.umul.with.overflow.i32(i32 %a, i32 37)
9 %tmp1 = extractvalue %umul.ty %tmp0, 0
14 declare %umul.ty @llvm.umul.with.overflow.i32(i32, i32) nounwind readnone
32 %5 = call %umul.ty @llvm.umul.with.overflow.i32(i32 %4, i32 8)
33 %6 = extractvalue %umul.ty %5, 1
34 %7 = extractvalue %umul.ty %5, 0
/external/llvm/test/CodeGen/ARM/
Dumulo-32.ll3 %umul.ty = type { i32, i1 }
8 %tmp0 = tail call %umul.ty @llvm.umul.with.overflow.i32(i32 %a, i32 37)
9 %tmp1 = extractvalue %umul.ty %tmp0, 0
14 declare %umul.ty @llvm.umul.with.overflow.i32(i32, i32) nounwind readnone
32 %5 = call %umul.ty @llvm.umul.with.overflow.i32(i32 %4, i32 8)
33 %6 = extractvalue %umul.ty %5, 1
34 %7 = extractvalue %umul.ty %5, 0
/external/skia/include/core/
DSkRSXform.h22 static SkRSXform Make(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { in Make()
23 SkRSXform xform = { scos, ssin, tx, ty }; in Make()
33 static SkRSXform MakeFromRadians(SkScalar scale, SkScalar radians, SkScalar tx, SkScalar ty, in MakeFromRadians()
37 return Make(c, s, tx + -c * ax + s * ay, ty + -s * ax - c * ay); in MakeFromRadians()
54 void set(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty) { in set()
58 fTy = ty; in set()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_surface.c100 unsigned tx, ty, tw, th; in lp_resource_copy() local
104 &tx, &ty, &tw, &th); in lp_resource_copy()
111 tx + x, ty + y); in lp_resource_copy()
118 unsigned tx, ty, tw, th; in lp_resource_copy() local
122 adjust_to_tile_bounds(dstx, dsty, width, height, &tx, &ty, &tw, &th); in lp_resource_copy()
125 boolean contained_y = ty + y >= dsty && in lp_resource_copy()
126 ty + y + TILE_SIZE <= dsty + height ? in lp_resource_copy()
146 tx + x, ty + y); in lp_resource_copy()
/external/valgrind/VEX/useful/
Dtest_main.c352 sz = sizeofIRType(data->Iex.LDle.ty);
549 static IRType shadowType ( IRType ty );
692 static IRType shadowType ( IRType ty ) in shadowType() argument
694 switch (ty) { in shadowType()
699 case Ity_I64: return ty; in shadowType()
703 default: ppIRType(ty); in shadowType()
710 static IRExpr* definedOfType ( IRType ty ) { in definedOfType() argument
711 switch (ty) { in definedOfType()
748 static IRAtom* assignNew ( MCEnv* mce, IRType ty, IRExpr* e ) { in assignNew() argument
749 IRTemp t = newIRTemp(mce->bb->tyenv, ty); in assignNew()
[all …]
/external/clang/utils/
DClangDataFormat.py120 ty = value.GetType()
121 if ty.IsPointerType() or ty.IsReferenceType():
122 return ty.GetPointeeType().GetName()
123 return ty.GetName()
130 ty = value.GetType()
131 if not (ty.IsPointerType() or
132 ty.IsReferenceType() or
/external/jsoncpp/test/
Dpyjsontestrunner.py19 ty = type(value)
20 if ty is types.DictType:
27 elif ty is types.ListType:
31 elif ty is types.StringType:
33 elif ty is types.IntType:
35 elif ty is types.FloatType:
/external/mesa3d/src/mesa/math/
Dm_norm_tmp.h61 GLfloat tx, ty, tz; in TAG() local
65 ty = ux * m4 + uy * m5 + uz * m6; in TAG()
69 GLdouble len = tx*tx + ty*ty + tz*tz; in TAG()
73 out[i][1] = ty * scale; in TAG()
90 GLfloat tx, ty, tz; in TAG() local
94 ty = ux * m4 + uy * m5 + uz * m6; in TAG()
100 out[i][1] = ty * len; in TAG()
128 GLfloat tx, ty, tz; in TAG() local
132 ty = uy * m5 ; in TAG()
136 GLdouble len = tx*tx + ty*ty + tz*tz; in TAG()
[all …]
/external/valgrind/coregrind/m_debuginfo/
Dtytypes.c751 TyEnt* ty; in ML_() local
756 ty = ML_(TyEnts__index_by_cuOff)(tyents, NULL, ty_cuOff); in ML_()
759 vg_assert(ty); in ML_()
760 vg_assert(ML_(TyEnt__is_type)(ty)); in ML_()
762 switch (ty->tag) { in ML_()
784 if (!ty->Te.TyStOrUn.isStruct) goto done; in ML_()
785 fieldRs = ty->Te.TyStOrUn.fieldRs; in ML_()
787 && (ty->Te.TyStOrUn.typeR == 0)) goto done; in ML_()
834 ty = ML_(TyEnts__index_by_cuOff)(tyents, NULL, in ML_()
835 ty->Te.TyStOrUn.typeR); in ML_()
[all …]
/external/skia/gm/
Dpathmaskcache.cpp89 SkScalar ty = drawPathSet(path, SkMatrix::I()); in onDraw() local
90 canvas->translate(0, ty); in onDraw()
95 ty = drawPathSet(path, s); in onDraw()
96 canvas->translate(0.f, ty); in onDraw()
101 ty = drawPathSet(path, r); in onDraw()
102 canvas->translate(0.f, ty); in onDraw()
/external/valgrind/VEX/priv/
Dguest_ppc_toIR.c526 static IRTemp newTemp ( IRType ty ) in newTemp() argument
528 vassert(isPlausibleIRType(ty)); in newTemp()
529 return newIRTemp( irsb->tyenv, ty ); in newTemp()
658 static IRExpr* load ( IRType ty, IRExpr* addr ) in load() argument
661 return IRExpr_Load(Iend_BE, ty, addr); in load()
663 return IRExpr_Load(Iend_LE, ty, addr); in load()
1012 static IROp mkSzOp ( IRType ty, IROp op8 ) in mkSzOp() argument
1015 vassert(ty == Ity_I8 || ty == Ity_I16 || in mkSzOp()
1016 ty == Ity_I32 || ty == Ity_I64); in mkSzOp()
1022 adj = ty==Ity_I8 ? 0 : (ty==Ity_I16 ? 1 : (ty==Ity_I32 ? 2 : 3)); in mkSzOp()
[all …]
Dhost_tilegx_isel.c403 IRType ty = typeOfIRExpr(env->type_env, e); in iselWordExpr_AMode_wrk() local
405 vassert(ty == Ity_I64); in iselWordExpr_AMode_wrk()
454 IRType ty = typeOfIRExpr(env->type_env, e); in iselWordExpr_R_wrk() local
455 vassert(ty == Ity_I8 || ty == Ity_I16 || ty == Ity_I32 || in iselWordExpr_R_wrk()
456 ty == Ity_I1 || ty == Ity_I64); in iselWordExpr_R_wrk()
466 TILEGXAMode *am_addr = iselWordExpr_AMode(env, e->Iex.Load.addr, ty); in iselWordExpr_R_wrk()
472 addInstr(env, TILEGXInstr_Load(toUChar(sizeofIRType(ty)), in iselWordExpr_R_wrk()
600 if (ty == Ity_I8 || ty == Ity_I16) in iselWordExpr_R_wrk()
602 if (ty == Ity_I64) { in iselWordExpr_R_wrk()
1023 if (ty == Ity_I8 || ty == Ity_I16 || ty == Ity_I32 in iselWordExpr_R_wrk()
[all …]
Dguest_x86_toIR.c319 static IRTemp newTemp ( IRType ty ) in newTemp() argument
321 vassert(isPlausibleIRType(ty)); in newTemp()
322 return newIRTemp( irsb->tyenv, ty ); in newTemp()
550 IRType ty = typeOfIRExpr(irsb->tyenv, e); in putIReg() local
552 case 1: vassert(ty == Ity_I8); break; in putIReg()
553 case 2: vassert(ty == Ity_I16); break; in putIReg()
554 case 4: vassert(ty == Ity_I32); break; in putIReg()
685 static IRExpr* mkU ( IRType ty, UInt i ) in mkU() argument
687 if (ty == Ity_I8) return mkU8(i); in mkU()
688 if (ty == Ity_I16) return mkU16(i); in mkU()
[all …]
/external/ImageMagick/Magick++/lib/
DOptions.cpp795 affine.ty=0.0; in transformOrigin()
798 affine.ty=ty_; in transformOrigin()
804 _drawInfo->affine.tx=current.sx*affine.tx+current.ry*affine.ty+current.tx; in transformOrigin()
805 _drawInfo->affine.ty=current.rx*affine.tx+current.sy*affine.ty+current.ty; in transformOrigin()
815 _drawInfo->affine.ty=0.0; in transformReset()
829 affine.ty=0.0; in transformRotation()
840 _drawInfo->affine.tx=current.sx*affine.tx+current.ry*affine.ty+current.tx; in transformRotation()
841 _drawInfo->affine.ty=current.rx*affine.tx+current.sy*affine.ty+current.ty; in transformRotation()
855 affine.ty=0.0; in transformScale()
864 _drawInfo->affine.tx=current.sx*affine.tx+current.ry*affine.ty+current.tx; in transformScale()
[all …]
/external/icu/icu4c/source/data/locales/
Ddsb.txt1172 dn{"tyźeń"}
1174 "-1"{"slědny tyźeń"}
1175 "0"{"ten tyźeń"}
1176 "1"{"pśiducy tyźeń"}
1180 few{"za {0} tyźenje"}
1181 one{"za {0} tyźeń"}
1182 other{"za {0} tyźenjow"}
1183 two{"za {0} tyźenja"}
1186 few{"pśed {0} tyźenjami"}
1187 one{"pśed {0} tyźenjom"}
[all …]
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
Dllvm.mli51 (** The kind of an [lltype], the result of [classify_type ty]. See the
372 (** [classify_type ty] returns the {!TypeKind.t} corresponding to the type [ty].
376 (** [type_is_sized ty] returns whether the type has a size or not.
381 (** [type_context ty] returns the {!llcontext} corresponding to the type [ty].
385 (** [string_of_lltype ty] returns a string describing the type [ty]. *)
414 (** [integer_bitwidth c ty] returns the number of bits in the integer type [ty]
482 (** [struct_name ty] returns the name of the named structure type [ty],
491 (** [struct_set_body ty elts ispacked] sets the body of the named struct [ty]
511 (** [array_type ty n] returns the array type containing [n] elements of type
512 [ty]. See the method [llvm::ArrayType::get]. *)
[all …]
/external/llvm/test/Object/
Dobjdump-symbol-table.test12 COFF-i386: [ 0](sec 1)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .text
14 COFF-i386: [ 2](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .data
16 COFF-i386: [ 4](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000000 _main
17 COFF-i386: [ 5](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 0) 0x00000000 L_.str
18 COFF-i386: [ 6](sec 0)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 _puts
19 COFF-i386: [ 7](sec 0)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 _SomeOtherFunction
/external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
DImagePanel.java118 int ty = getHeight()/2 - th/2; in paintComponent() local
119 gg.drawImage(image, tx, ty, tx + tw, ty + th, x, y, x + width, y + width, null); in paintComponent()
124 int ty = 0; in paintComponent() local
125 gg.drawImage(image, tx, ty, tx + tw, ty + th, x, y, x + width, y + width, null); in paintComponent()
/external/swiftshader/third_party/LLVM/include/llvm-c/
DExecutionEngine.h135 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \ argument
136 inline ty *unwrap(ref P) { \
137 return reinterpret_cast<ty*>(P); \
140 inline ref wrap(const ty *P) { \
141 return reinterpret_cast<ref>(const_cast<ty*>(P)); \

12345678910>>...19