Home
last modified time | relevance | path

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

1234567

/openbsd/gnu/llvm/llvm/utils/
H A Dshuffle_select_fuzz_tester.py115 self.ty = ty # Type
207 if ty.is_float:
210 inp.append((i*ty.elt_num + j) % (1 << ty.elt_width))
220 if ty != None:
221 if ty == 'i8':
224 elif ty == 'i16':
227 elif ty == 'i32':
246 if ty == None:
285 int_zero_init = Value('zeroinitializer', ty, [0]*ty.elt_num)
286 float_zero_init = Value('zeroinitializer', ty, [0.0]*ty.elt_num)
[all …]
/openbsd/lib/libcrypto/rc4/asm/
H A Drc4-586.pl68 $ty="edx";
81 &add ($ty,$tx);
83 &and ($ty,0xff);
137 &add ($ty,$tx);
139 &movz ($ty,&LB($ty)); # (*)
188 &test ($ty,-8);
200 &and ($ty,-8);
201 &lea ($ty,&DWP(-8,$inp,$ty));
236 &lea ($ty,&DWP(-4,$inp,$ty));
261 &mov ($ty,&DWP(0,$dat,$ty,4));
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D930614-1.c1 f (double *ty) in f() argument
3 *ty = -1.0; in f()
9 double tx = 0.0, ty, d; in main() local
11 f (&ty); in main()
13 if (ty < 0) in main()
14 ty = -ty; in main()
15 d = (tx > ty) ? tx : ty; in main()
16 if (ty != d) in main()
/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DCBindingWrapping.h19 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \ argument
20 inline ty *unwrap(ref P) { \
21 return reinterpret_cast<ty*>(P); \
24 inline ref wrap(const ty *P) { \
25 return reinterpret_cast<ref>(const_cast<ty*>(P)); \
28 #define DEFINE_ISA_CONVERSION_FUNCTIONS(ty, ref) \ argument
29 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
36 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \ argument
37 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
/openbsd/games/hunt/huntd/
H A Dmakemaze.c141 int tx, ty; in dig_maze() local
149 tx = ty = 0; in dig_maze()
161 ty = y - 2; in dig_maze()
165 ty = y + 2; in dig_maze()
169 ty = y; in dig_maze()
173 ty = y; in dig_maze()
176 if (tx < 0 || ty < 0 || tx >= WIDTH || ty >= HEIGHT) in dig_maze()
178 if (Maze[ty][tx] == SPACE) in dig_maze()
180 Maze[(y + ty) / 2][(x + tx) / 2] = SPACE; in dig_maze()
181 dig_maze(tx, ty); in dig_maze()
/openbsd/usr.sbin/amd/include/
H A Dam.h175 #define FIRST(ty, q) ((ty *) ((q)->q_forw)) argument
176 #define LAST(ty, q) ((ty *) ((q)->q_back)) argument
177 #define NEXT(ty, q) ((ty *) (((qelem *) q)->q_forw)) argument
178 #define PREV(ty, q) ((ty *) (((qelem *) q)->q_back)) argument
179 #define HEAD(ty, q) ((ty *) q) argument
180 #define ITER(v, ty, q) \ argument
181 for ((v) = FIRST(ty,(q)); (v) != HEAD(ty,(q)); (v) = NEXT(ty,(v)))
326 #define ALLOC(ty) ((struct ty *) xmalloc(sizeof(struct ty))) argument
/openbsd/gnu/llvm/llvm/lib/Target/SPIRV/
H A DSPIRVInstrInfo.td92 def OpSizeOf: Op<321, (outs ID:$res), (ins TYPE:$ty, ID:$ptr), "$res = OpSizeOf $ty $ptr">;
104 "OpMemberName $ty $mem $name">;
135 "$res = OpExtInst $ty $set $inst">;
508 def OpBitReverse: Op<204, (outs ID:$r), (ins TYPE:$ty, ID:$b), "$r = OpBitReverse $ty $b">;
509 def OpBitCount: Op<205, (outs ID:$r), (ins TYPE:$ty, ID:$b), "$r = OpBitCount $ty $b">;
514 "$res = OpAny $ty $vec">;
516 "$res = OpAll $ty $vec">;
605 "$res = "#name#" $ty $ptr $sc $sem">;
672 "$res = OpGroupAll $ty $scope $pr">;
674 "$res = OpGroupAny $ty $scope $pr">;
[all …]
/openbsd/gnu/llvm/clang/utils/
H A DClangDataFormat.py99 ty = value.GetType()
100 if ty.IsPointerType() or ty.IsReferenceType():
101 return ty.GetPointeeType().GetName()
102 return ty.GetName()
109 ty = value.GetType()
110 if not (ty.IsPointerType() or
111 ty.IsReferenceType() or
/openbsd/games/hack/
H A Dhack.wizard.c151 schar tx,ty; in inrange() local
160 ty = u.uy - mtmp->my; in inrange()
161 if((!tx && abs(ty) < BOLT_LIM) || (!ty && abs(tx) < BOLT_LIM) in inrange()
162 || (abs(tx) == abs(ty) && abs(tx) < BOLT_LIM)){ in inrange()
166 buzz(-1,mtmp->mx,mtmp->my,sgn(tx),sgn(ty)); in inrange()
224 buzz(-rnd(3),mtmp->mx,mtmp->my,sgn(tx),sgn(ty)); in inrange()
H A Dhack.makemon.c220 int tx,ty; in rloc() local
228 ty = rn2(ROWNO); in rloc()
229 } while(!goodpos(tx,ty)); in rloc()
231 mtmp->my = ty; in rloc()
235 u.uy = ty; in rloc()
/openbsd/gnu/llvm/lld/COFF/
H A DDebugTypes.cpp342 for (const CVType &ty : types) { in mergeDebugT() local
616 fn(ty); in forEachTypeChecked()
629 if (isIdRecord(ty.kind())) in fillIsItemIndexFromDebugT()
637 bool isItem = isIdRecord(ty.kind()); in mergeTypeRecord()
643 size_t newSize = alignTo(ty.length(), 4); in mergeTypeRecord()
649 if (newSize != ty.length()) { in mergeTypeRecord()
664 if (ty.kind() == LF_FUNC_ID || ty.kind() == LF_MFUNC_ID) { in mergeTypeRecord()
665 bool success = ty.length() >= 12; in mergeTypeRecord()
702 size_t newSize = alignTo(ty.length(), 4); in mergeUniqueTypeRecords()
846 if (ty.kind() == LF_ENDPRECOMP) { in loadGHashes()
[all …]
/openbsd/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp751 MVT OpTy = ty(Op0); in getByteShuffle()
1608 MVT VecTy = ty(Op); in LowerHvxBuildVector()
1649 MVT VecTy = ty(Op); in LowerHvxSplatVector()
2083 MVT InpTy = ty(A); in LowerHvxFunnelShift()
2140 MVT ResTy = ty(Op), InpTy = ty(Ops[1]); in LowerHvxIntrinsic()
2402 MVT ResTy = ty(A); in emitHvxAddWithOverflow()
2479 MVT VecTy = ty(A); in emitHvxMulHsV60()
2537 MVT VecTy = ty(A); in emitHvxMulLoHiV60()
2614 MVT VecTy = ty(A); in emitHvxMulLoHiV62()
3406 if (ty(Op).getSizeInBits() != ty(Inp0).getSizeInBits()) { in LowerHvxOperationWrapper()
[all …]
/openbsd/regress/usr.bin/mandoc/mdoc/Nm/
H A Dempty.out_ascii4 NNmm--eemmppttyy - handling of empty name macros
7 NNmm--eemmppttyy
8 NNmm--eemmppttyy
11 The NNmm--eemmppttyy utility ...
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D920928-2.c5 short x,y,delta,s,w,h,fx,fy,tx,ty; local
7 h=f((ty-fy)/2.0+0.5);
8 s=(((int)((short)(tx-fx))<(int)((short)(ty-fy)))?((short)(tx-fx)):((short)(ty-fy)))%2;
H A D920428-2.c153 …long _xy; float xy; long _yx; float yx; long _yy; float yy; long _tx; float tx; long _ty; float ty; member
168 …long _xy; float xy; long _yx; float yx; long _yy; float yy; long _tx; float tx; long _ty; float ty; member
386 …loat)(1<<12 ) )) )*(1.0/(1<<12 ) ))) , (*pmat). ty = ((float)(((*pmat). ty_fixed = ((fixed)(((*pma… in gs_update_matrix_fixed()
392 …1<<12 ) )) )*(1.0/(1<<12 ) ))) , (pgs->ctm). ty = ((float)(((pgs->ctm). ty_fixed = ((fixed)(((pgs-… in gs_initmatrix()
409 …1<<12 ) )) )*(1.0/(1<<12 ) ))) , (pgs->ctm). ty = ((float)(((pgs->ctm). ty_fixed = ((fixed)(((pgs-… in gs_setmatrix()
419 pgs->ctm.ty += pt.y; in gs_translate()
420 …1<<12 ) )) )*(1.0/(1<<12 ) ))) , (pgs->ctm). ty = ((float)(((pgs->ctm). ty_fixed = ((fixed)(((pgs-… in gs_translate()
441 …1<<12 ) )) )*(1.0/(1<<12 ) ))) , (pgs->ctm). ty = ((float)(((pgs->ctm). ty_fixed = ((fixed)(((pgs-… in gs_concat()
480 pgs->ctm.ty = ((float)((pgs->ctm.ty_fixed = py)*(1.0/(1<<12 ) ))); in gs_translate_to_fixed()
/openbsd/gnu/llvm/llvm/bindings/ocaml/llvm/
H A Dllvm.mli583 (** [string_of_lltype ty] returns a string describing the type [ty]. *)
679 (** [struct_name ty] returns the name of the named structure type [ty],
712 (** [subtypes ty] returns [ty]'s subtypes *)
745 (** [element_type ty] returns the element count of the vector type [ty].
865 (** [const_null ty] returns the constant null (zero) of the type [ty].
877 (** [undef ty] returns the undefined value of the type [ty].
881 (** [poison ty] returns the poison value of the type [ty].
985 (** [const_float ty n] returns the floating point constant of type [ty] and
1056 (** [align_of ty] returns the alignof constant for the type [ty]. This is
1062 (** [size_of ty] returns the sizeof constant for the type [ty]. This is
[all …]
/openbsd/lib/libcrypto/rc4/
H A Drc4.c81 RC4_INT x, y,tx, ty; in rc4_internal() local
124 ty=d[y], \ in rc4_internal()
126 d[x]=ty, \ in rc4_internal()
127 (RC4_CHUNK)d[(tx+ty)&0xff]\ in rc4_internal()
201 d[x]=ty=d[y]; \ in rc4_internal()
203 (out) = d[(tx+ty)&0xff]^ (in); in rc4_internal()
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DLocInfoType.h37 LocInfoType(QualType ty, TypeSourceInfo *TInfo) in LocInfoType() argument
38 : Type((TypeClass)LocInfo, ty, ty->getDependence()), DeclInfo(TInfo) { in LocInfoType()
/openbsd/gnu/llvm/llvm/bindings/ocaml/debuginfo/
H A Dllvm_debuginfo.mli217 ty:Llvm.llmetadata ->
303 ty:Llvm.llmetadata ->
374 ty:Llvm.llmetadata ->
384 ty:Llvm.llmetadata ->
443 ty:Llvm.llmetadata ->
454 ty:Llvm.llmetadata ->
496 ty:Llvm.llmetadata ->
508 ty:Llvm.llmetadata ->
559 ty:Llvm.llmetadata ->
633 ty:Llvm.llmetadata ->
[all …]
H A Dllvm_debuginfo.ml205 ty:Llvm.llmetadata ->
312 ty:Llvm.llmetadata ->
320 ty:Llvm.llmetadata ->
373 ty:Llvm.llmetadata ->
383 ty:Llvm.llmetadata ->
417 ty:Llvm.llmetadata ->
428 ty:Llvm.llmetadata ->
475 ty:Llvm.llmetadata ->
548 ty:Llvm.llmetadata ->
575 ty:Llvm.llmetadata ->
[all …]
/openbsd/lib/libm/src/
H A Ds_fma.c56 double c, cc, hx, hy, p, q, tx, ty; in fma() local
162 ty = ys - hy; in fma()
165 q = hx * ty + tx * hy; in fma()
167 cc = p - c + q + tx * ty; in fma()
H A Ds_fmal.c51 long double c, cc, hx, hy, p, q, tx, ty; in fmal() local
157 ty = ys - hy; in fmal()
160 q = hx * ty + tx * hy; in fmal()
162 cc = p - c + q + tx * ty; in fmal()
/openbsd/usr.bin/rpcgen/
H A Drpc_util.c145 switch (def->def.ty.rel) { in fixit()
147 return (def->def.ty.old_type); in fixit()
149 return (fixit(def->def.ty.old_type, orig)); in fixit()
198 if (def->def_kind != DEF_TYPEDEF || def->def.ty.old_prefix != NULL) in typedefed()
223 type = def->def.ty.old_type;
224 rel = def->def.ty.rel;
/openbsd/gnu/gcc/libmudflap/
H A Dmf-impl.h342 #define DECLARE(ty, fname, ...) \ argument
343 typedef ty (*__mf_fn_ ## fname) (__VA_ARGS__); \
344 extern ty __mf_0fn_ ## fname (__VA_ARGS__);
357 #define DECLARE(ty, fname, ...) \ argument
358 extern ty __real_ ## fname (__VA_ARGS__)
/openbsd/gnu/llvm/llvm/tools/llvm-c-test/
H A Dcalc.c77 LLVMTypeRef ty = LLVMInt64Type(); in build_from_tokens() local
78 off = LLVMBuildGEP2(builder, ty, param, &stack[depth - 1], 1, ""); in build_from_tokens()
79 stack[depth - 1] = LLVMBuildLoad2(builder, ty, off, ""); in build_from_tokens()

1234567