Home
last modified time | relevance | path

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

123456

/freebsd/crypto/openssl/crypto/rc4/asm/
H A Drc4-586.pl78 $ty="edx";
88 &mov ($ty,&DWP(0,$dat,$yy,4));
90 &mov (&DWP(0,$dat,$xx,4),$ty);
91 &add ($ty,$tx);
93 &and ($ty,0xff);
100 &$func ($out,&DWP(0,$dat,$ty,4));
121 &mov ($ty,&DWP(0,$dat,$yy,4));
124 &mov (&DWP(0,$dat,$XX[0],4),$ty);
125 &add (&LB($ty),&LB($tx));
131 &pinsrw ($mm,&DWP(0,$dat,$ty,4),$j);
[all …]
/freebsd/contrib/llvm-project/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) \
/freebsd/sbin/bsdlabel/
H A Ddisktab25 :ty=floppy:se#512:nt#2:rm#300:ns#9:nc#40:\
30 :ty=floppy:se#512:nt#2:rm#300:ns#9:nc#80:\
35 :ty=floppy:se#512:nt#2:rm#360:ns#15:nc#80:\
40 :ty=floppy:se#512:nt#2:rm#300:ns#18:nc#80:\
45 :ty=floppy:se#512:nt#2:rm#300:ns#36:nc#80:\
55 :ty=floppy:se#512:nt#2:rm#300:ns#10:nc#80:\
60 :ty=floppy:se#512:nt#2:rm#300:ns#10:nc#82:\
65 :ty=floppy:se#512:nt#2:rm#300:ns#18:nc#82:\
70 :ty=floppy:se#512:nt#2:rm#300:ns#21:nc#82:\
78 :ty=floppy:se#512:nt#8:rm#300:ns#32:nc#963:\
[all …]
/freebsd/crypto/heimdal/lib/asn1/
H A Dgen_decode.c61 Der_class *cl, Der_type *ty, unsigned *tag) in find_tag() argument
66 *ty = PRIM; in find_tag()
71 *ty = PRIM; in find_tag()
78 *ty = PRIM; in find_tag()
83 *ty = PRIM; in find_tag()
88 *ty = PRIM; in find_tag()
93 *ty = PRIM; in find_tag()
98 *ty = PRIM; in find_tag()
103 *ty = PRIM; in find_tag()
108 *ty in find_tag()
571 Der_type ty; decode_type() local
[all...]
H A Dasn1_gen.c74 int ret, l, c, ty, ta; in doit() local
100 ty = der_get_type_num(type); in doit()
101 if (ty == -1) errx(1, "no valid type on line %lu", line); in doit()
110 line, (unsigned long)offset, c, ty, ta, l, in doit()
116 ty, in doit()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVInstrInfo.td109 def OpSizeOf: Op<321, (outs ID:$res), (ins TYPE:$ty, ID:$ptr), "$res = OpSizeOf $ty $ptr">;
113 …f OpExpectKHR: Op<5631, (outs ID:$res), (ins TYPE:$ty, ID:$val, ID:$expected), "$res = OpExpectKHR…
124 def OpMemberName: Op<6, (outs), (ins TYPE:$ty, i32imm:$mem, StringImm:$name, variable_ops),
125 "OpMemberName $ty $mem $name">;
147 (ins TYPE:$ty, i32imm:$mem, Decoration:$dec, StringImm:$str, variable_ops),
148 "OpMemberDecorateString $ty $mem $dec $str">;
155 def OpExtInst: Op<12, (outs ID:$res), (ins TYPE:$ty, ID:$set, Extension:$inst, variable_ops),
156 "$res = OpExtInst $ty $set $inst">;
340 (ins TYPE:$ty, ID:$sImage, ID:$uv, ImageOperand:$op, ID:$i, variable_ops),
341 "$res = OpImageSampleExplicitLod $ty $sImage $uv $op $i">;
[all …]
/freebsd/lib/msun/ld128/
H A De_rem_pio2l.h62 double tx[5],ty[3]; in __ieee754_rem_pio2l() local
125 n = __kernel_rem_pio2(tx,ty,e0,nx,3); in __ieee754_rem_pio2l()
126 t = (long double)ty[2] + ty[1]; in __ieee754_rem_pio2l()
127 r = t + ty[0]; in __ieee754_rem_pio2l()
128 w = ty[0] - (r - t); in __ieee754_rem_pio2l()
/freebsd/contrib/llvm-project/lld/COFF/
H A DDebugTypes.cpp344 for (const CVType &ty : types) { in mergeDebugT() local
351 isIdRecord(ty.kind()) ? m->ipiCounts : m->tpiCounts; in mergeDebugT()
617 forEachCodeViewRecord<CVType>(types, [fn](const CVType &ty) -> Error { in forEachTypeChecked() argument
618 fn(ty); in forEachTypeChecked()
630 forEachTypeChecked(file->debugTypes, [&](const CVType &ty) { in fillIsItemIndexFromDebugT() argument
631 if (isIdRecord(ty.kind())) in fillIsItemIndexFromDebugT()
637 void TpiSource::mergeTypeRecord(TypeIndex curIndex, CVType ty) { in mergeTypeRecord() argument
639 bool isItem = isIdRecord(ty.kind()); in mergeTypeRecord()
643 assert(ty.length() <= codeview::MaxRecordLength); in mergeTypeRecord()
645 size_t newSize = alignTo(ty.length(), 4); in mergeTypeRecord()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp541 if (ty(Vec).getVectorElementType() == ElemTy) in opCastElem()
550 return DAG.getNode(ISD::CONCAT_VECTORS, dl, typeJoin(ty(Ops)), in opJoin()
557 TypePair Tys = typeSplit(ty(Vec)); in opSplit()
740 if (ty(Idx) != MVT::i32) in getIndexInWord32()
752 MVT OpTy = ty(Op0); in getByteShuffle()
753 assert(OpTy == ty(Op1)); in getByteShuffle()
890 MVT ExtTy = ty(ExtVec); in buildHvxVectorReg()
985 SDValue DstV = DAG.getNode(ISD::OR, dl, ty(T0), {T0, T1}); in buildHvxVectorReg()
988 DAG.getBitcast(tyVector(ty(DstV), VecTy.getVectorElementType()), DstV); in buildHvxVectorReg()
995 MVT PredTy = ty(Pred in createHvxPrefixPred()
[all...]
/freebsd/lib/msun/ld80/
H A De_rem_pio2l.h74 double tx[3],ty[2]; in __ieee754_rem_pio2l() local
134 n = __kernel_rem_pio2(tx,ty,e0,nx,2); in __ieee754_rem_pio2l()
135 r = (long double)ty[0] + ty[1]; in __ieee754_rem_pio2l()
136 w = ty[1] - (r - ty[0]); in __ieee754_rem_pio2l()
/freebsd/lib/msun/src/
H A De_rem_pio2f.c47 double tx[1],ty[1]; in __ieee754_rem_pio2f() local
72 n = __kernel_rem_pio2(tx,ty,e0,1,0); in __ieee754_rem_pio2f()
73 if(hx<0) {*y = -ty[0]; return -n;} in __ieee754_rem_pio2f()
74 *y = ty[0]; return n; in __ieee754_rem_pio2f()
H A De_rem_pio2.c54 double tx[3],ty[2]; in __ieee754_rem_pio2() local
173 n = __kernel_rem_pio2(tx,ty,e0,nx,1); in __ieee754_rem_pio2()
174 if(hx<0) {y[0] = -ty[0]; y[1] = -ty[1]; return -n;} in __ieee754_rem_pio2()
175 y[0] = ty[0]; y[1] = ty[1]; return n; in __ieee754_rem_pio2()
/freebsd/contrib/bearssl/src/aead/
H A Dgcm.c91 unsigned char ty[16], tmp[16]; in br_gcm_reset() local
93 memset(ty, 0, sizeof ty); in br_gcm_reset()
94 ctx->gh(ty, ctx->h, iv, len); in br_gcm_reset()
97 ctx->gh(ty, ctx->h, tmp, 16); in br_gcm_reset()
98 memcpy(ctx->j0_1, ty, 12); in br_gcm_reset()
99 ctx->j0_2 = br_dec32be(ty + 12); in br_gcm_reset()
/freebsd/contrib/llvm-project/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()
/freebsd/usr.bin/rpcgen/
H A Drpc_util.c128 switch (def->def.ty.rel) { in fixit()
130 if (streq(def->def.ty.old_type, "opaque")) in fixit()
133 return (def->def.ty.old_type); in fixit()
136 return (fixit(def->def.ty.old_type, orig)); in fixit()
180 if (def->def_kind != DEF_TYPEDEF || def->def.ty.old_prefix != NULL) { in typedefed()
205 type = def->def.ty.old_type; in isvectordef()
206 rel = def->def.ty.rel; in isvectordef()
H A Drpc_hout.c88 !isvectordef(def->def.ty.old_type, in print_datadef()
89 def->def.ty.rel)); in print_datadef()
399 const char *old = def->def.ty.old_type; in ptypedef()
401 relation rel = def->def.ty.rel; in ptypedef()
413 if (undefined2(old, name) && def->def.ty.old_prefix) { in ptypedef()
414 s_print(prefix, "%s ", def->def.ty.old_prefix); in ptypedef()
431 def->def.ty.array_max); in ptypedef()
/freebsd/lib/libpam/modules/pam_securetty/
H A Dpam_securetty.c58 struct ttyent *ty; in pam_sm_acct_mgmt() local
87 if (tty != NULL && (ty = getttynam(tty)) != NULL && in pam_sm_acct_mgmt()
88 (ty->ty_status & TTY_SECURE) != 0) in pam_sm_acct_mgmt()
/freebsd/sys/netpfil/ipfw/test/
H A Dmylist.h31 #define list_first_entry(pL, ty, member) \ argument
32 (ty *)((char *)((pL)->next) - offsetof(ty, member))
/freebsd/crypto/openssl/crypto/rc4/
H A Drc4_enc.c31 register RC4_INT x, y, tx, ty; in RC4() local
42 d[x]=ty=d[y]; \ in RC4()
44 (out) = d[(tx+ty)&0xff]^ (in); in RC4()
/freebsd/crypto/heimdal/kdc/
H A Dkdc-replay.c183 Der_type ty; in main() local
186 &cl, &ty, &tag2, NULL); in main()
189 if (MAKE_TAG(cl, ty, 0) != clty) in main()
191 (int)MAKE_TAG(cl, ty, 0), (int)clty); in main()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyInstrMemory.td81 multiclass LoadPat<ValueType ty, SDPatternOperator kind, string Name> {
82 def : Pat<(ty (kind (AddrOps32 offset32_op:$offset, I32:$addr))),
88 def : Pat<(ty (kind (AddrOps64 offset64_op:$offset, I64:$addr))),
148 multiclass StorePat<ValueType ty, SDPatternOperator kind, string Name> {
149 def : Pat<(kind ty:$val, (AddrOps32 offset32_op:$offset, I32:$addr)),
153 ty:$val)>,
155 def : Pat<(kind ty:$val, (AddrOps64 offset64_op:$offset, I64:$addr)),
159 ty:$val)>,
H A DWebAssemblyInstrAtomics.td90 multiclass WaitPat<ValueType ty, Intrinsic kind, string inst> {
92 Pat<(i32 (kind (AddrOps32 offset32_op:$offset, I32:$addr), ty:$exp, I64:$timeout)),
96 Pat<(i32 (kind (AddrOps64 offset64_op:$offset, I64:$addr), ty:$exp, I64:$timeout)),
201 multiclass AStorePat<ValueType ty, PatFrag kind, string inst> {
202 def : Pat<(kind ty:$val, (AddrOps32 offset32_op:$offset, I32:$addr)),
205 def : Pat<(kind ty:$val, (AddrOps64 offset64_op:$offset, I64:$addr)),
338 multiclass BinRMWPat<ValueType ty, PatFrag kind, string inst> {
339 def : Pat<(ty (kind (AddrOps32 offset32_op:$offset, I32:$addr), ty:$val)),
342 def : Pat<(ty (kind (AddrOps64 offset64_op:$offset, I64:$addr), ty:$val)),
479 multiclass TerRMWPat<ValueType ty, PatFrag kind, string inst> {
[all …]
/freebsd/contrib/bearssl/src/ec/
H A Decdsa_i31_vrfy_raw.c45 unsigned char ty[(BR_MAX_EC_SIZE + 7) >> 3]; in br_ecdsa_i31_vrfy_raw() local
134 br_i31_encode(ty, nlen, t2); in br_ecdsa_i31_vrfy_raw()
148 tx, nlen, ty, nlen, cd->curve); in br_ecdsa_i31_vrfy_raw()
H A Decdsa_i15_vrfy_raw.c45 unsigned char ty[(BR_MAX_EC_SIZE + 7) >> 3]; in br_ecdsa_i15_vrfy_raw() local
135 br_i15_encode(ty, nlen, t2); in br_ecdsa_i15_vrfy_raw()
149 tx, nlen, ty, nlen, cd->curve); in br_ecdsa_i15_vrfy_raw()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DConstantInitBuilder.cpp279 ConstantAggregateBuilderBase::finishStruct(llvm::StructType *ty) { in finishStruct() argument
285 if (ty == nullptr && elts.empty()) in finishStruct()
286 ty = llvm::StructType::get(Builder.CGM.getLLVMContext(), {}, Packed); in finishStruct()
289 if (ty) { in finishStruct()
290 assert(ty->isPacked() == Packed); in finishStruct()
291 constant = llvm::ConstantStruct::get(ty, elts); in finishStruct()

123456