Home
last modified time | relevance | path

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

1234567

/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.td99 def OpSizeOf: Op<321, (outs ID:$res), (ins TYPE:$ty, ID:$ptr), "$res = OpSizeOf $ty $ptr">;
103 …f OpExpectKHR: Op<5631, (outs ID:$res), (ins TYPE:$ty, ID:$val, ID:$expected), "$res = OpExpectKHR…
114 def OpMemberName: Op<6, (outs), (ins TYPE:$ty, i32imm:$mem, StringImm:$name, variable_ops),
115 "OpMemberName $ty $mem $name">;
137 (ins TYPE:$ty, i32imm:$mem, Decoration:$dec, StringImm:$str, variable_ops),
138 "OpMemberDecorateString $ty $mem $dec $str">;
149 def OpExtInst: Op<12, (outs ID:$res), (ins TYPE:$ty, i32imm:$set, Extension:$inst, variable_ops),
150 "$res = OpExtInst $ty $set $inst">;
318 (ins TYPE:$ty, ID:$sImage, ID:$uv, ImageOperand:$op, ID:$i, variable_ops),
319 "$res = OpImageSampleExplicitLod $ty $sImage $uv $op $i">;
[all …]
/freebsd/contrib/llvm-project/clang/lib/CIR/Dialect/IR/
H A DCIRAttrs.cpp23 cir::IntTypeInterface ty);
26 cir::IntTypeInterface ty);
32 mlir::Type ty);
125 cir::IntTypeInterface ty) { in parseIntLiteralImpl() argument
127 const bool isSigned = ty.isSigned(); in parseIntLiteralImpl()
131 value = mlir::APInt(ty.getWidth(), ivalue, isSigned, /*implicitTrunc=*/true); in parseIntLiteralImpl()
140 cir::IntTypeInterface ty) { in parseIntLiteral() argument
141 if (ty.isSigned()) in parseIntLiteral()
142 return parseIntLiteralImpl<int64_t>(parser, value, ty); in parseIntLiteral()
143 return parseIntLiteralImpl<uint64_t>(parser, value, ty); in parseIntLiteral()
[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/clang/lib/CIR/CodeGen/
H A DCIRGenCall.h138 clang::QualType ty;
140 CallArg(RValue rv, clang::QualType ty) in CallArg()
141 : rv(rv), hasLV(false), isUsed(false), ty(ty) {} in CallArg()
143 CallArg(LValue lv, clang::QualType ty) in CallArg()
144 : lv(lv), hasLV(true), isUsed(false), ty(ty) {} in CallArg()
H A DCIRGenTypes.cpp119 bool CIRGenTypes::isRecordLayoutComplete(const Type *ty) const { in isRecordLayoutComplete()
120 const auto it = recordDeclTypes.find(ty); in isRecordLayoutComplete()
274 const Type *ty = type.getTypePtr(); in convertType() local
281 TypeCacheTy::iterator tci = typeCache.find(ty); in convertType()
289 switch (ty->getTypeClass()) { in convertType()
294 switch (cast<BuiltinType>(ty)->getKind()) { in convertType()
315 cir::IntType::get(&getMLIRContext(), astContext.getTypeSize(ty), in convertType()
331 cir::IntType::get(&getMLIRContext(), astContext.getTypeSize(ty), in convertType()
392 const auto *ct = cast<clang::ComplexType>(ty); in convertType()
400 const ReferenceType *refTy = cast<ReferenceType>(ty); in convertType()
[all …]
H A DCIRGenFunction.cpp212 void CIRGenFunction::declare(mlir::Value addrVal, const Decl *var, QualType ty, in declare() argument
222 if (ty->isReferenceType() || ty.isConstQualified()) in declare()
636 QualType ty) { in makeNaturalAlignPointeeAddrLValue() argument
641 CharUnits align = cgm.getNaturalTypeAlignment(ty, &baseInfo); in makeNaturalAlignPointeeAddrLValue()
642 return makeAddrLValue(Address(val, align), ty, baseInfo); in makeNaturalAlignPointeeAddrLValue()
646 QualType ty) { in makeNaturalAlignAddrLValue() argument
648 CharUnits alignment = cgm.getNaturalTypeAlignment(ty, &baseInfo); in makeNaturalAlignAddrLValue()
649 Address addr(val, convertTypeForMem(ty), alignment); in makeNaturalAlignAddrLValue()
651 return makeAddrLValue(addr, ty, baseInfo); in makeNaturalAlignAddrLValue()
704 QualType ty = e->getType(); in emitLValue() local
[all …]
H A DCIRGenTypes.h102 bool isRecordLayoutComplete(const clang::Type *ty) const;
104 bool isRecordBeingLaidOut(const clang::Type *ty) const { in isRecordBeingLaidOut() argument
105 return recordsBeingLaidOut.count(ty); in isRecordBeingLaidOut()
116 computeRecordLayout(const clang::RecordDecl *rd, cir::RecordType *ty);
166 bool isZeroInitializable(clang::QualType ty);
H A DCIRGenDecl.cpp28 QualType ty = d.getType(); in emitAutoVarAlloca() local
29 if (ty.getAddressSpace() != LangAS::Default) in emitAutoVarAlloca()
43 if (ty->isVariablyModifiedType()) in emitAutoVarAlloca()
47 if (!ty->isConstantSizeType()) in emitAutoVarAlloca()
51 mlir::Type allocaTy = convertTypeForMem(ty); in emitAutoVarAlloca()
54 declare(address.getPointer(), &d, ty, getLoc(d.getSourceRange()), alignment); in emitAutoVarAlloca()
274 QualType ty = d.getType(); in getOrCreateStaticVarDecl() local
275 assert(ty->isConstantSizeType() && "VLAs can't be static"); in getOrCreateStaticVarDecl()
283 mlir::Type lty = getTypes().convertTypeForMem(ty); in getOrCreateStaticVarDecl()
291 mlir::Attribute init = builder.getZeroInitAttr(convertType(ty)); in getOrCreateStaticVarDecl()
[all …]
/freebsd/contrib/llvm-project/lld/COFF/
H A DDebugTypes.cpp343 for (const CVType &ty : types) { in mergeDebugT() local
350 isIdRecord(ty.kind()) ? m->ipiCounts : m->tpiCounts; in mergeDebugT()
621 forEachCodeViewRecord<CVType>(types, [fn](const CVType &ty) -> Error { in forEachTypeChecked() argument
622 fn(ty); in forEachTypeChecked()
634 forEachTypeChecked(file->debugTypes, [&](const CVType &ty) { in fillIsItemIndexFromDebugT() argument
635 if (isIdRecord(ty.kind())) in fillIsItemIndexFromDebugT()
641 void TpiSource::mergeTypeRecord(TypeIndex curIndex, CVType ty) { in mergeTypeRecord() argument
643 bool isItem = isIdRecord(ty.kind()); in mergeTypeRecord()
647 assert(ty.length() <= codeview::MaxRecordLength); in mergeTypeRecord()
649 size_t newSize = alignTo(ty.length(), 4); in mergeTypeRecord()
[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/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp551 if (ty(Vec).getVectorElementType() == ElemTy) in opCastElem()
560 return DAG.getNode(ISD::CONCAT_VECTORS, dl, typeJoin(ty(Ops)), in opJoin()
567 TypePair Tys = typeSplit(ty(Vec)); in opSplit()
750 if (ty(Idx) != MVT::i32) in getIndexInWord32()
762 MVT OpTy = ty(Op0); in getByteShuffle()
763 assert(OpTy == ty(Op1)); in getByteShuffle()
900 MVT ExtTy = ty(ExtVec); in buildHvxVectorReg()
995 SDValue DstV = DAG.getNode(ISD::OR, dl, ty(T0), {T0, T1}); in buildHvxVectorReg()
998 DAG.getBitcast(tyVector(ty(DstV), VecTy.getVectorElementType()), DstV); in buildHvxVectorReg()
1005 MVT PredTy = ty(PredV); in createHvxPrefixPred()
[all …]
/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/llvm-project/clang/include/clang/CIR/
H A DABIArgInfo.h56 static ABIArgInfo getDirect(mlir::Type ty = nullptr) {
58 info.setCoerceToType(ty);
84 void setCoerceToType(mlir::Type ty) { in setCoerceToType() argument
86 typeData = ty; in setCoerceToType()
/freebsd/contrib/llvm-project/clang/lib/CIR/Lowering/
H A DLoweringHelpers.cpp35 template <> mlir::APInt getZeroInitFromType(mlir::Type ty) { in getZeroInitFromType() argument
36 assert(mlir::isa<cir::IntType>(ty) && "expected int type"); in getZeroInitFromType()
37 const auto intTy = mlir::cast<cir::IntType>(ty); in getZeroInitFromType()
41 template <> mlir::APFloat getZeroInitFromType(mlir::Type ty) { in getZeroInitFromType() argument
42 assert((mlir::isa<cir::SingleType, cir::DoubleType>(ty)) && in getZeroInitFromType()
45 if (ty.isF32() || mlir::isa<cir::SingleType>(ty)) in getZeroInitFromType()
48 if (ty.isF64() || mlir::isa<cir::DoubleType>(ty)) in getZeroInitFromType()
/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/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/CIR/Dialect/Builder/
H A DCIRBaseBuilder.h73 cir::ConstantOp getConstantInt(mlir::Location loc, mlir::Type ty, in getConstantInt() argument
75 return getConstant(loc, cir::IntAttr::get(ty, value)); in getConstantInt()
79 cir::ConstantOp getNullValue(mlir::Type ty, mlir::Location loc) { in getNullValue() argument
80 return getConstant(loc, getZeroInitAttr(ty)); in getNullValue()
88 mlir::TypedAttr getZeroInitAttr(mlir::Type ty) { in getZeroInitAttr() argument
89 if (mlir::isa<cir::IntType>(ty)) in getZeroInitAttr()
90 return cir::IntAttr::get(ty, 0); in getZeroInitAttr()
91 if (cir::isAnyFloatingPointType(ty)) in getZeroInitAttr()
92 return cir::FPAttr::getZero(ty); in getZeroInitAttr()
93 if (auto complexType = mlir::dyn_cast<cir::ComplexType>(ty)) in getZeroInitAttr()
[all …]
/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/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()

1234567