Searched refs:Int (Results 1 - 25 of 104) sorted by relevance

12345

/freebsd-11-stable/contrib/gcclibs/libdecnumber/
H A DdecUtility.h36 extern void decDensePackCoeff (const decNumber *, uByte *, Int, Int);
37 extern void decDenseUnpackCoeff (const uByte *, Int, decNumber *, Int, Int);
H A DdecNumber.c190 #define BADINT (Int)0x80000000 /* most-negative Int; error indicator */
196 #define eInt Int /* extended integer */
221 static void decApplyRound (decNumber *, decContext *, Int, uInt *);
222 static Int decCompare (const decNumber * lhs, const decNumber * rhs);
226 Int *, uInt *);
229 static void decFinalize (decNumber *, decContext *, Int *, uInt *);
230 static Int decGetDigits (const Unit *, Int);
232 static Int decGetIn
[all...]
H A DdecUtility.c76 decDensePackCoeff (const decNumber * dn, uByte * bytes, Int len, Int shift)
78 Int cut; /* work */
79 Int n; /* output bunch counter */
80 Int digits = dn->digits; /* digit countdown */
142 Int j; /* digit-in-bunch count */
224 decDenseUnpackCoeff (const uByte * bytes, Int len, decNumber * dn,
225 Int bunches, Int odd)
228 Int
[all...]
H A Ddecimal128.c79 Int pad = 0; /* coefficient pad digits */
90 Int ae = dn->exponent + dn->digits - 1; /* adjusted exponent */
237 Int bunches = DECIMAL128_Pmax / 3; /* coefficient full bunches to convert */
238 Int odd = 0; /* assume MSD is 0 (no odd bunch) */
336 Int i, j;
H A Ddecimal32.c79 Int pad = 0; /* coefficient pad digits */
90 Int ae = dn->exponent + dn->digits - 1; /* adjusted exponent */
234 Int bunches = DECIMAL32_Pmax / 3; /* coefficient full bunches to convert */
235 Int odd = 0; /* assume MSD is 0 (no odd bunch) */
327 Int i, j;
H A Ddecimal64.c79 Int pad = 0; /* coefficient pad digits */
90 Int ae = dn->exponent + dn->digits - 1; /* adjusted exponent */
233 Int bunches = DECIMAL64_Pmax / 3; /* coefficient full bunches to convert */
234 Int odd = 0; /* assume MSD is 0 (no odd bunch) */
327 Int i, j;
H A DdecNumberLocal.h49 #define Int int32_t macro
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIntervalIterator.h72 inline void addNodeToInterval(Interval *Int, BasicBlock *BB) { argument
73 Int->Nodes.push_back(BB);
82 inline void addNodeToInterval(Interval *Int, Interval *I) { argument
83 // Add all of the nodes in I as new nodes in Int.
84 Int->Nodes.insert(Int->Nodes.end(), I->Nodes.begin(), I->Nodes.end());
181 Interval *Int = new Interval(Header);
186 ProcessNode(Int, getSourceGraphNode(OrigContainer, *I));
188 IntStack.push_back(std::make_pair(Int, succ_begin(Int)));
200 ProcessNode(Interval *Int, NodeTy *Node) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/WindowsResource/
H A DResourceScriptTokenList.h17 TOKEN(Int) // Integer (decimal, octal or hexadecimal).
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAtomicOrdering.h44 template <typename Int> inline bool isValidAtomicOrderingCABI(Int I) {
45 return (Int)AtomicOrderingCABI::relaxed <= I &&
46 I <= (Int)AtomicOrderingCABI::seq_cst;
74 template <typename Int> inline bool isValidAtomicOrdering(Int I) {
75 return static_cast<Int>(AtomicOrdering::NotAtomic) <= I &&
76 I <= static_cast<Int>(AtomicOrdering::SequentiallyConsistent);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackReader.h23 /// case msgpack::Type::Int:
24 // // Use Obj.Int
44 /// being divided into a signed Int and unsigned UInt variant in order to map
49 Int, member in class:llvm::msgpack::Type
78 /// Value for \c Type::Int.
79 int64_t Int; member in union:llvm::msgpack::Object::__anon1747
94 Object() : Kind(Type::Int), Int(0) {}
H A DMsgPackDocument.h55 int64_t Int; member in union:llvm::msgpack::DocNode::__anon1746
79 assert(getKind() == Type::Int);
80 return Int;
99 assert(getKind() == Type::Int);
100 return Int;
157 case Type::Int:
158 return Lhs.Int < Rhs.Int;
274 /// Create an Int node associated with this Document.
276 auto N = DocNode(&KindAndDocs[size_t(Type::Int)]);
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DContinuousRangeMap.h36 template <typename Int, typename V, unsigned InitialCapacity>
39 using value_type = std::pair<Int, V>;
51 bool operator ()(const_reference L, Int R) const {
54 bool operator ()(Int L, const_reference R) const {
57 bool operator ()(Int L, Int R) const {
93 iterator find(Int K) {
102 const_iterator find(Int K) const {
/freebsd-11-stable/usr.bin/truss/
H A Dsyscalls.c82 .args = { { Int, 0 }, { Acltype, 1 }, { Ptr, 2 } } },
88 .args = { { Int, 0 }, { Acltype, 1 } } },
94 .args = { { Int, 0 }, { Acltype, 1 }, { Ptr, 2 } } },
100 .args = { { Int, 0 }, { Acltype, 1 }, { Ptr, 2 } } },
106 .args = { { Int, 0 }, { Int, 1 }, { CapRights | OUT, 2 } } },
108 .args = { { Name | OUT, 0 }, { Int, 1 } } },
113 .args = { { Int, 0 }, { Sockaddr | OUT, 1 }, { Ptr | OUT, 2 } } },
117 .args = { { Int, 0 }, { Sockaddr | IN, 1 }, { Socklent, 2 } } },
119 .args = { { Atfd, 0 }, { Int,
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DIntervalPartition.cpp67 void IntervalPartition::updatePredecessors(Interval *Int) { argument
68 BasicBlock *Header = Int->getHeaderNode();
69 for (BasicBlock *Successor : Int->Successors)
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp312 const llvm::APSInt &Int,
315 const llvm::APSInt &Int,
318 const llvm::APSInt &Int,
321 const llvm::APSInt &Int,
324 const llvm::APSInt &Int,
555 const llvm::APSInt &Int,
559 if (AdjustmentType.testInRange(Int, true) != APSIntType::RTR_Within)
562 llvm::APSInt Lower = AdjustmentType.convert(Int) - Adjustment;
567 // [Int-Adjustment+1, Int
554 assumeSymNE(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
574 assumeSymEQ(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
588 getSymLTRange(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
617 assumeSymLT(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
624 getSymGTRange(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
653 assumeSymGT(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
660 getSymGERange(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
689 assumeSymGE(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
696 getSymLERange( llvm::function_ref<RangeSet()> RS, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
724 getSymLERange(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
[all...]
H A DRangedConstraintManager.cpp122 const llvm::APSInt &Int) {
131 if (Int == 0 && (Op == BO_EQ || Op == BO_NE)) {
152 APSIntType ComparisonType = std::max(WraparoundType, APSIntType(Int));
153 llvm::APSInt ConvertedInt = ComparisonType.convert(Int);
119 assumeSymRel(ProgramStateRef State, SymbolRef Sym, BinaryOperator::Opcode Op, const llvm::APSInt &Int) argument
/freebsd-11-stable/stand/pc98/btx/btx/
H A Dbtx.S71 .set V86_ADDR,0x4 # Int number/address
317 intx00: push $0x0 # Int 0x0: #DE
319 push $0x1 # Int 0x1: #DB
321 push $0x3 # Int 0x3: #BP
323 push $0x4 # Int 0x4: #OF
325 push $0x5 # Int 0x5: #BR
327 push $0x6 # Int 0x6: #UD
329 push $0x7 # Int 0x7: #NM
331 push $0x8 # Int 0x8: #DF
333 push $0xa # Int
[all...]
/freebsd-11-stable/stand/i386/btx/btx/
H A Dbtx.S73 .set V86_ADDR,0x4 # Int number/address
315 intx00: push $0x0 # Int 0x0: #DE
317 push $0x1 # Int 0x1: #DB
319 push $0x3 # Int 0x3: #BP
321 push $0x4 # Int 0x4: #OF
323 push $0x5 # Int 0x5: #BR
325 push $0x6 # Int 0x6: #UD
327 push $0x7 # Int 0x7: #NM
329 push $0x8 # Int 0x8: #DF
331 push $0xa # Int
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackDocumentYAML.cpp48 case msgpack::Type::Int:
49 OS << Int; local
122 if (N.getKind() == msgpack::Type::UInt && getKind() == msgpack::Type::Int)
124 if (N.getKind() == msgpack::Type::Int && getKind() == msgpack::Type::UInt)
130 case msgpack::Type::Int:
188 case Type::Int:
H A DMsgPackReader.cpp47 Obj.Kind = Type::Int;
50 Obj.Kind = Type::Int;
53 Obj.Kind = Type::Int;
56 Obj.Kind = Type::Int;
145 Obj.Kind = Type::Int;
149 Obj.Int = I;
194 "Invalid Int with insufficient payload",
196 Obj.Int = static_cast<int64_t>(endian::read<T, Endianness>(Current));
204 "Invalid Int with insufficient payload",
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h54 int64_t Int; member in union:llvm::DbgValueLoc::__anon1684
69 Constant.Int = i;
93 int64_t getInt() const { return Constant.Int; }
198 return A.Constant.Int == B.Constant.Int;
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp267 return "Int" + utostr(Bits) + "Ty";
1474 const ACLEIntrinsic &Int = *kv.second; local
1479 if (Polymorphic && !Int.polymorphic())
1481 if (!Polymorphic && Int.polymorphicOnly())
1495 raw_ostream &OS = parts[(Int.requiresFloat() ? Float : 0) |
1501 Polymorphic ? Int.shortName() : Int.fullName();
1508 std::string RetTypeName = Int.returnType()->cName();
1513 for (const Type *ArgTypePtr : Int.argTypes())
1567 << "__clang_arm_mve_alias(__builtin_arm_mve_" << Int
1624 const ACLEIntrinsic &Int = *kv.second; local
1632 const ACLEIntrinsic &Int = *kv.second; local
1650 const ACLEIntrinsic &Int = *kv.second; local
1688 const ACLEIntrinsic *Int; member in struct:__anon961::Result::OutputIntrinsic
1716 const ACLEIntrinsic &Int = *kv.second; local
1787 const ACLEIntrinsic *Int = OI_prelim.Int; local
1849 const ACLEIntrinsic &Int = *kv.second; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DPatternInit.cpp52 auto *Int = llvm::ConstantInt::get(IntTy, IntValue);
53 return llvm::ConstantExpr::getIntToPtr(Int, PtrTy);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyBuiltinDumper.cpp48 case PDB_BuiltinType::Int:

Completed in 210 milliseconds

12345