Searched refs:ty (Results 1 - 25 of 347) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/Support/
H A DCBindingWrapping.h20 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
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) \
30 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
37 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \
38 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DCBindingWrapping.h20 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
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) \
30 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
37 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \
38 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
/external/skia/include/c/
H A Dsk_matrix.h21 /** Set the matrix to translate by (tx, ty). */
22 void sk_matrix_set_translate(sk_matrix_t*, float tx, float ty);
27 void sk_matrix_pre_translate(sk_matrix_t*, float tx, float ty);
32 void sk_matrix_post_translate(sk_matrix_t*, float tx, float ty);
/external/skqp/include/c/
H A Dsk_matrix.h21 /** Set the matrix to translate by (tx, ty). */
22 void sk_matrix_set_translate(sk_matrix_t*, float tx, float ty);
27 void sk_matrix_pre_translate(sk_matrix_t*, float tx, float ty);
32 void sk_matrix_post_translate(sk_matrix_t*, float tx, float 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/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/subzero/crosstest/
H A Dvectors.h34 #define X(ty, eltty, castty) typedef eltty ty __attribute__((vector_size(16)));
44 #define X(ty, expandedty, numelements) class ty;
71 #define X(ty, eltty, castty) \
72 DECLARE_VECTOR_TYPE(ty, ty, eltty, castty, (sizeof(ty) / sizeof(eltty)))
76 #define X(ty, expandedty, numelements) \
77 DECLARE_VECTOR_TYPE(ty, expandedt
[all...]
/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/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/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/walt/pywalt/pywalt/
H A Dminimization.py45 def minimize_lsq(tx, x, ty, y, tl, min_shift, max_shift, step):
62 yl = numpy.interp(tl + shift, ty, y)
81 (tx, x, ty, y) = evparser.load_xy(fname_evtest)
84 t0 = min(tx[0], ty[0])
86 ty = ty - t0
95 best_shift_coarse = minimize_lsq(tx, x, ty, y, tl, 0, 0.2, coarse_step)
99 best_shift_fine = minimize_lsq(tx, x, ty, y, tl, lmts[0], lmts[1], fine_step)
103 debug_plot(tx, x, ty, y, tl, best_shift_fine)
108 def debug_plot(tx, x, ty,
[all...]
/external/jsoncpp/test/
H A 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/libffi/src/aarch64/
H A Dffi.c248 get_homogeneous_type (ffi_type *ty) argument
250 if (ty->type == FFI_TYPE_STRUCT && ty->elements)
254 = get_homogeneous_type (ty->elements[0]);
255 for (i =1; ty->elements[i]; i++)
261 if (ty->elements[i]->type == FFI_TYPE_STRUCT
262 && ty->elements[i]->elements)
264 iteration_type = get_homogeneous_type (ty->elements[i]);
268 iteration_type = ty->elements[i]->type;
280 return ty
290 element_count(ffi_type *ty) argument
317 is_hfa(ffi_type *ty) argument
342 is_register_candidate(ffi_type *ty) argument
397 is_v_register_candidate(ffi_type *ty) argument
556 copy_hfa_to_reg_or_stack(void *memory, ffi_type *ty, struct call_context *context, unsigned char *stack, struct arg_state *state) argument
668 ffi_type *ty = ecif->cif->arg_types[i]; local
977 ffi_type *ty = cif->arg_types[i]; local
[all...]
/external/python/cpython2/Modules/_ctypes/libffi/src/aarch64/
H A Dffi.c245 get_homogeneous_type (ffi_type *ty) argument
247 if (ty->type == FFI_TYPE_STRUCT && ty->elements)
251 = get_homogeneous_type (ty->elements[0]);
252 for (i =1; ty->elements[i]; i++)
258 if (ty->elements[i]->type == FFI_TYPE_STRUCT
259 && ty->elements[i]->elements)
261 iteration_type = get_homogeneous_type (ty->elements[i]);
265 iteration_type = ty->elements[i]->type;
277 return ty
287 element_count(ffi_type *ty) argument
314 is_hfa(ffi_type *ty) argument
339 is_register_candidate(ffi_type *ty) argument
394 is_v_register_candidate(ffi_type *ty) argument
553 copy_hfa_to_reg_or_stack(void *memory, ffi_type *ty, struct call_context *context, unsigned char *stack, struct arg_state *state) argument
665 ffi_type *ty = ecif->cif->arg_types[i]; local
966 ffi_type *ty = cif->arg_types[i]; local
[all...]
/external/python/cpython3/Modules/_ctypes/libffi/src/aarch64/
H A Dffi.c245 get_homogeneous_type (ffi_type *ty) argument
247 if (ty->type == FFI_TYPE_STRUCT && ty->elements)
251 = get_homogeneous_type (ty->elements[0]);
252 for (i =1; ty->elements[i]; i++)
258 if (ty->elements[i]->type == FFI_TYPE_STRUCT
259 && ty->elements[i]->elements)
261 iteration_type = get_homogeneous_type (ty->elements[i]);
265 iteration_type = ty->elements[i]->type;
277 return ty
287 element_count(ffi_type *ty) argument
314 is_hfa(ffi_type *ty) argument
339 is_register_candidate(ffi_type *ty) argument
394 is_v_register_candidate(ffi_type *ty) argument
553 copy_hfa_to_reg_or_stack(void *memory, ffi_type *ty, struct call_context *context, unsigned char *stack, struct arg_state *state) argument
665 ffi_type *ty = ecif->cif->arg_types[i]; local
966 ffi_type *ty = cif->arg_types[i]; local
[all...]
/external/skia/src/core/
H A DSkMatrixPriv.h50 SkScalar ty = mx.getTranslateY(); local
51 Sk4f trans(tx, ty, tx, ty);
95 const SkScalar ty = mx.getTranslateY(); local
96 Sk2s trans(tx, ty);
157 const SkScalar ty = mx.getTranslateY(); local
160 t += ty;
162 b += ty;
167 t = sy * t + ty;
169 b = sy * b + ty;
[all...]
/external/skqp/src/core/
H A DSkMatrixPriv.h50 SkScalar ty = mx.getTranslateY(); local
51 Sk4f trans(tx, ty, tx, ty);
95 const SkScalar ty = mx.getTranslateY(); local
96 Sk2s trans(tx, ty);
157 const SkScalar ty = mx.getTranslateY(); local
160 t += ty;
162 b += ty;
167 t = sy * t + ty;
169 b = sy * b + ty;
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_inlines.h54 static inline unsigned int typeSizeof(DataType ty) argument
56 switch (ty) {
81 static inline unsigned int typeSizeofLog2(DataType ty) argument
83 switch (ty) {
122 static inline bool isFloatType(DataType ty) argument
124 return (ty >= TYPE_F16 && ty <= TYPE_F64);
127 static inline bool isSignedIntType(DataType ty) argument
129 return (ty == TYPE_S8 || ty
132 isSignedType(DataType ty) argument
148 intTypeToSigned(DataType ty) argument
[all...]
/external/valgrind/none/tests/arm/
H A Dv8crypto_a.c52 //static ULong randULong ( LaneTy ty )
65 static void randV128 ( /*OUT*/V128* v, LaneTy ty )
117 static void test_##TESTNAME ( LaneTy ty ) { \
122 randV128(&block[0], ty); \
123 randV128(&block[1], ty); \
124 randV128(&block[2], ty); \
125 randV128(&block[3], ty); \
152 static void test_##TESTNAME ( LaneTy ty ) { \
157 randV128(&block[0], ty); \
158 randV128(&block[1], ty); \
[all...]
H A Dv8crypto_t.c52 //static ULong randULong ( LaneTy ty )
65 static void randV128 ( /*OUT*/V128* v, LaneTy ty )
117 static void test_##TESTNAME ( LaneTy ty ) { \
122 randV128(&block[0], ty); \
123 randV128(&block[1], ty); \
124 randV128(&block[2], ty); \
125 randV128(&block[3], ty); \
152 static void test_##TESTNAME ( LaneTy ty ) { \
157 randV128(&block[0], ty); \
158 randV128(&block[1], ty); \
[all...]
/external/clang/utils/
H A 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/skia/gm/
H A Ddrrect_small_inner.cpp28 SkScalar ty = kOuterRadius - innerRadiusY; local
33 SkRect::MakeXYWH(tx, ty, 2 * innerRadiusX, 2 * innerRadiusY));
/external/skqp/gm/
H A Ddrrect_small_inner.cpp28 SkScalar ty = kOuterRadius - innerRadiusY; local
33 SkRect::MakeXYWH(tx, ty, 2 * innerRadiusX, 2 * innerRadiusY));
/external/clang/lib/CodeGen/
H A DAddress.h88 ConstantAddress getBitCast(llvm::Type *ty) const {
89 return ConstantAddress(llvm::ConstantExpr::getBitCast(getPointer(), ty),
93 ConstantAddress getElementBitCast(llvm::Type *ty) const {
94 return getBitCast(ty->getPointerTo(getAddressSpace()));
/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];

Completed in 948 milliseconds

1234567891011>>