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

1234

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCBindingWrapping.h19 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
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) \
29 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
36 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \
37 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DLocInfoType.h37 LocInfoType(QualType ty, TypeSourceInfo *TInfo) argument
38 : Type((TypeClass)LocInfo, ty, ty->getDependence()), DeclInfo(TInfo) {
/freebsd-13-stable/crypto/openssl/crypto/rc4/asm/
H A Drc4-586.pl79 $ty="edx";
89 &mov ($ty,&DWP(0,$dat,$yy,4));
91 &mov (&DWP(0,$dat,$xx,4),$ty);
92 &add ($ty,$tx);
94 &and ($ty,0xff);
101 &$func ($out,&DWP(0,$dat,$ty,4));
122 &mov ($ty,&DWP(0,$dat,$yy,4));
125 &mov (&DWP(0,$dat,$XX[0],4),$ty);
126 &add (&LB($ty),&LB($tx));
132 &pinsrw ($mm,&DWP(0,$dat,$ty,
[all...]
/freebsd-13-stable/lib/msun/src/
H A De_rem_pio2f.c50 double tx[1],ty[1]; local
75 n = __kernel_rem_pio2(tx,ty,e0,1,0);
76 if(hx<0) {*y = -ty[0]; return -n;}
77 *y = ty[0]; return n;
H A De_rem_pio2.c58 double tx[3],ty[2]; local
177 n = __kernel_rem_pio2(tx,ty,e0,nx,1);
178 if(hx<0) {y[0] = -ty[0]; y[1] = -ty[1]; return -n;}
179 y[0] = ty[0]; y[1] = ty[1]; return n;
/freebsd-13-stable/lib/msun/ld128/
H A De_rem_pio2l.h66 double tx[5],ty[3]; local
129 n = __kernel_rem_pio2(tx,ty,e0,nx,3);
130 t = (long double)ty[2] + ty[1];
131 r = t + ty[0];
132 w = ty[0] - (r - t);
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DAddress.h87 ConstantAddress getBitCast(llvm::Type *ty) const {
88 return ConstantAddress(llvm::ConstantExpr::getBitCast(getPointer(), ty),
92 ConstantAddress getElementBitCast(llvm::Type *ty) const {
93 return getBitCast(ty->getPointerTo(getAddressSpace()));
H A DConstantInitBuilder.cpp280 ConstantAggregateBuilderBase::finishStruct(llvm::StructType *ty) { argument
286 if (ty == nullptr && elts.empty())
287 ty = llvm::StructType::get(Builder.CGM.getLLVMContext(), {}, Packed);
290 if (ty) {
291 assert(ty->isPacked() == Packed);
292 constant = llvm::ConstantStruct::get(ty, elts);
/freebsd-13-stable/crypto/openssl/crypto/rc4/
H A Drc4_enc.c25 register RC4_INT x, y, tx, ty; local
36 d[x]=ty=d[y]; \
38 (out) = d[(tx+ty)&0xff]^ (in);
/freebsd-13-stable/lib/libpam/modules/pam_securetty/
H A Dpam_securetty.c61 struct ttyent *ty; local
90 if (tty != NULL && (ty = getttynam(tty)) != NULL &&
91 (ty->ty_status & TTY_SECURE) != 0)
/freebsd-13-stable/sys/netpfil/ipfw/test/
H A Dmylist.h32 #define list_first_entry(pL, ty, member) \
33 (ty *)((char *)((pL)->next) - offsetof(ty, member))
/freebsd-13-stable/crypto/heimdal/lib/asn1/
H A Dgen_decode.c61 Der_class *cl, Der_type *ty, unsigned *tag)
66 *ty = PRIM;
71 *ty = PRIM;
78 *ty = PRIM;
83 *ty = PRIM;
88 *ty = PRIM;
93 *ty = PRIM;
98 *ty = PRIM;
103 *ty = PRIM;
108 *ty
60 find_tag(const Type *t, Der_class *cl, Der_type *ty, unsigned *tag) argument
571 Der_type ty; local
[all...]
H A Dasn1_gen.c74 int ret, l, c, ty, ta; local
100 ty = der_get_type_num(type);
101 if (ty == -1) errx(1, "no valid type on line %lu", line);
110 line, (unsigned long)offset, c, ty, ta, l,
116 ty,
/freebsd-13-stable/lib/msun/ld80/
H A De_rem_pio2l.h78 double tx[3],ty[2]; local
138 n = __kernel_rem_pio2(tx,ty,e0,nx,2);
139 r = (long double)ty[0] + ty[1];
140 w = ty[1] - (r - ty[0]);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstant.h43 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) argument
44 : User(ty, vty, Ops, NumOps) {}
/freebsd-13-stable/contrib/ntp/lib/isc/include/isc/
H A Devent.h62 #define ISC_EVENT_INIT(event, sz, at, ta, ty, ac, ar, sn, df, da) \
67 (event)->ev_type = (ty); \
/freebsd-13-stable/contrib/bearssl/src/aead/
H A Dgcm.c91 unsigned char ty[16], tmp[16]; local
93 memset(ty, 0, sizeof ty);
94 ctx->gh(ty, ctx->h, iv, len);
97 ctx->gh(ty, ctx->h, tmp, 16);
98 memcpy(ctx->j0_1, ty, 12);
99 ctx->j0_2 = br_dec32be(ty + 12);
/freebsd-13-stable/contrib/bearssl/src/ec/
H A Decdsa_i15_vrfy_raw.c45 unsigned char ty[(BR_MAX_EC_SIZE + 7) >> 3]; local
132 * t2, encoded in ty.
135 br_i15_encode(ty, nlen, t2);
149 tx, nlen, ty, nlen, cd->curve);
H A Decdsa_i31_vrfy_raw.c45 unsigned char ty[(BR_MAX_EC_SIZE + 7) >> 3]; local
131 * t2, encoded in ty.
134 br_i31_encode(ty, nlen, t2);
148 tx, nlen, ty, nlen, cd->curve);
/freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransBlockObjCVariable.cpp104 bool isImplicitStrong(QualType ty) { argument
105 if (isa<AttributedType>(ty.getTypePtr()))
107 return ty.getLocalQualifiers().getObjCLifetime() == Qualifiers::OCL_Strong;
/freebsd-13-stable/crypto/heimdal/kdc/
H A Dkdc-replay.c183 Der_type ty; local
186 &cl, &ty, &tag2, NULL);
187 if (MAKE_TAG(cl, ty, 0) != clty)
189 (int)MAKE_TAG(cl, ty, 0), (int)clty);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h41 explicit MachineConstantPoolValue(Type *ty) : Ty(ty) {} argument
/freebsd-13-stable/usr.bin/rpcgen/
H A Drpc_util.c138 switch (def->def.ty.rel) {
140 if (streq(def->def.ty.old_type, "opaque"))
143 return (def->def.ty.old_type);
146 return (fixit(def->def.ty.old_type, orig));
190 if (def->def_kind != DEF_TYPEDEF || def->def.ty.old_prefix != NULL) {
215 type = def->def.ty.old_type;
216 rel = def->def.ty.rel;
H A Drpc_hout.c98 !isvectordef(def->def.ty.old_type,
99 def->def.ty.rel));
409 const char *old = def->def.ty.old_type;
411 relation rel = def->def.ty.rel;
423 if (undefined2(old, name) && def->def.ty.old_prefix) {
424 s_print(prefix, "%s ", def->def.ty.old_prefix);
441 def->def.ty.array_max);
/freebsd-13-stable/usr.sbin/ppp/
H A Dfsm.h177 #define INC_FSM_OPT(ty, length, o) \
179 (o)->hdr.id = (ty); \

Completed in 326 milliseconds

1234