Home
last modified time | relevance | path

Searched refs:IntegerType (Results 101 – 125 of 5668) sorted by relevance

12345678910>>...227

/dports/databases/percona57-client/boost_1_59_0/libs/integer/doc/gcd/
H A Dmath-gcd.qbk21 template < typename IntegerType >
23 template < typename IntegerType >
26 template < typename IntegerType >
27 IntegerType gcd( IntegerType const &a, IntegerType const &b );
28 template < typename IntegerType >
29 IntegerType lcm( IntegerType const &a, IntegerType const &b );
47 template < typename IntegerType >
79 template < typename IntegerType >
112 template < typename IntegerType >
113 IntegerType boost::math::gcd( IntegerType const &a, IntegerType const &b );
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/integer/doc/gcd/
H A Dmath-gcd.qbk21 template < typename IntegerType >
23 template < typename IntegerType >
26 template < typename IntegerType >
27 IntegerType gcd( IntegerType const &a, IntegerType const &b );
28 template < typename IntegerType >
29 IntegerType lcm( IntegerType const &a, IntegerType const &b );
47 template < typename IntegerType >
79 template < typename IntegerType >
112 template < typename IntegerType >
113 IntegerType boost::math::gcd( IntegerType const &a, IntegerType const &b );
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/math/doc/gcd/
H A Dmath-gcd.qbk21 template < typename IntegerType >
23 template < typename IntegerType >
26 template < typename IntegerType >
27 IntegerType gcd( IntegerType const &a, IntegerType const &b );
28 template < typename IntegerType >
29 IntegerType lcm( IntegerType const &a, IntegerType const &b );
47 template < typename IntegerType >
79 template < typename IntegerType >
112 template < typename IntegerType >
113 IntegerType boost::math::gcd( IntegerType const &a, IntegerType const &b );
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/mlir/unittests/IR/
H A DAttributeTest.cpp32 IntegerType boolTy = IntegerType::get(1, &context); in TEST()
57 IntegerType boolTy = IntegerType::get(1, &context); in TEST()
80 IntegerType boolTy = IntegerType::get(1, &context); in TEST()
93 IntegerType intTy = IntegerType::get(intWidth, &context); in TEST()
101 IntegerType intTy = IntegerType::get(32, &context); in TEST()
109 IntegerType intTy = IntegerType::get(85, &context); in TEST()
/dports/devel/jna/jna-5.7.0/src/com/sun/jna/
H A DIntegerType.java41 public abstract class IntegerType extends Number implements NativeMapped { class
51 public IntegerType(int size) { in IntegerType() method in IntegerType
56 public IntegerType(int size, boolean unsigned) { in IntegerType() method in IntegerType
61 public IntegerType(int size, long value) { in IntegerType() method in IntegerType
66 public IntegerType(int size, long value, boolean unsigned) { in IntegerType() method in IntegerType
127 IntegerType number = Klass.newInstance(getClass()); in fromNative()
159 return rhs instanceof IntegerType in equals()
160 && number.equals(((IntegerType)rhs).number); in equals()
187 public static <T extends IntegerType> int compare(T v1, T v2) { in compare()
210 public static int compare(IntegerType v1, long v2) { in compare()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/shark/
H A DsharkContext.hpp69 llvm::IntegerType* _bit_type;
70 llvm::IntegerType* _jbyte_type;
71 llvm::IntegerType* _jshort_type;
72 llvm::IntegerType* _jint_type;
73 llvm::IntegerType* _jlong_type;
81 llvm::IntegerType* bit_type() const { in bit_type()
84 llvm::IntegerType* jbyte_type() const { in jbyte_type()
87 llvm::IntegerType* jshort_type() const { in jshort_type()
90 llvm::IntegerType* jint_type() const { in jint_type()
93 llvm::IntegerType* jlong_type() const { in jlong_type()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/shark/
H A DsharkContext.hpp69 llvm::IntegerType* _bit_type;
70 llvm::IntegerType* _jbyte_type;
71 llvm::IntegerType* _jshort_type;
72 llvm::IntegerType* _jint_type;
73 llvm::IntegerType* _jlong_type;
81 llvm::IntegerType* bit_type() const { in bit_type()
84 llvm::IntegerType* jbyte_type() const { in jbyte_type()
87 llvm::IntegerType* jshort_type() const { in jshort_type()
90 llvm::IntegerType* jint_type() const { in jint_type()
93 llvm::IntegerType* jlong_type() const { in jlong_type()
[all …]
/dports/security/afl++/AFLplusplus-3.14c/instrumentation/
H A Dcmplog-instructions-pass.cc110 IntegerType *Int8Ty = IntegerType::getInt8Ty(C); in writePrefs()
111 IntegerType *Int16Ty = IntegerType::getInt16Ty(C); in writePrefs()
112 IntegerType *Int32Ty = IntegerType::getInt32Ty(C); in writePrefs()
113 IntegerType *Int64Ty = IntegerType::getInt64Ty(C); in writePrefs()
114 IntegerType *Int128Ty = IntegerType::getInt128Ty(C); in writePrefs()
278 IntegerType * intTyOp0 = NULL; in writePrefs()
279 IntegerType * intTyOp1 = NULL; in writePrefs()
350 intTyOp0 = dyn_cast<IntegerType>(op0->getType()); in writePrefs()
351 intTyOp1 = dyn_cast<IntegerType>(op1->getType()); in writePrefs()
407 IRB.CreateIntCast(op0_i, IntegerType::get(C, cast_size), false); in writePrefs()
[all …]
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/lib/include/uhdlib/utils/
H A Dmath.hpp38 template <typename IntegerType>
39 std::pair<IntegerType, IntegerType> rational_approximation( in rational_approximation()
40 const double f, const IntegerType maximum_denominator, const double max_error) in rational_approximation()
42 static constexpr IntegerType MIN_DENOM = 1; in rational_approximation()
45 UHD_ASSERT_THROW(maximum_denominator <= std::numeric_limits<IntegerType>::max()); in rational_approximation()
94 return {uhd::narrow<IntegerType>(num), uhd::narrow<IntegerType>(denom)}; in rational_approximation()
/dports/math/py-or-tools/or-tools-9.2/ortools/graph/
H A Diterators.h103 template <typename IntegerType> in setcharvdc()
105 : public std::iterator<std::input_iterator_tag, IntegerType> { in setcharvdc()
107 explicit IntegerRangeIterator(IntegerType value) : index_(value) {} in setcharvdc()
121 IntegerType operator*() const { return index_; } in setcharvdc()
133 IntegerType index_; in setcharvdc()
145 template <typename IntegerType> in setcharvdc()
146 class IntegerRange : public BeginEndWrapper<IntegerRangeIterator<IntegerType>> { in setcharvdc()
148 IntegerRange(IntegerType begin, IntegerType end) in setcharvdc()
149 : BeginEndWrapper<IntegerRangeIterator<IntegerType>>( in setcharvdc()
150 IntegerRangeIterator<IntegerType>(begin), in setcharvdc()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/unittests/IR/
H A DAttributeTest.cpp36 IntegerType boolTy = IntegerType::get(1, &context); in TEST()
61 IntegerType boolTy = IntegerType::get(1, &context); in TEST()
84 IntegerType boolTy = IntegerType::get(1, &context); in TEST()
97 IntegerType intTy = IntegerType::get(intWidth, &context); in TEST()
105 IntegerType intTy = IntegerType::get(32, &context); in TEST()
113 IntegerType intTy = IntegerType::get(85, &context); in TEST()
176 ComplexType complexType = ComplexType::get(IntegerType::get(64, &context)); in TEST()
190 ComplexType complexType = ComplexType::get(IntegerType::get(64, &context)); in TEST()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/unittests/IR/
H A DAttributeTest.cpp36 IntegerType boolTy = IntegerType::get(&context, 1); in TEST()
61 IntegerType boolTy = IntegerType::get(&context, 1); in TEST()
84 IntegerType boolTy = IntegerType::get(&context, 1); in TEST()
97 IntegerType intTy = IntegerType::get(&context, intWidth); in TEST()
105 IntegerType intTy = IntegerType::get(&context, 32); in TEST()
113 IntegerType intTy = IntegerType::get(&context, 85); in TEST()
176 ComplexType complexType = ComplexType::get(IntegerType::get(&context, 64)); in TEST()
190 ComplexType complexType = ComplexType::get(IntegerType::get(&context, 64)); in TEST()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/unittests/IR/
H A DAttributeTest.cpp36 IntegerType boolTy = IntegerType::get(1, &context); in TEST()
61 IntegerType boolTy = IntegerType::get(1, &context); in TEST()
84 IntegerType boolTy = IntegerType::get(1, &context); in TEST()
97 IntegerType intTy = IntegerType::get(intWidth, &context); in TEST()
105 IntegerType intTy = IntegerType::get(32, &context); in TEST()
113 IntegerType intTy = IntegerType::get(85, &context); in TEST()
176 ComplexType complexType = ComplexType::get(IntegerType::get(64, &context)); in TEST()
190 ComplexType complexType = ComplexType::get(IntegerType::get(64, &context)); in TEST()
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/unittests/IR/
H A DAttributeTest.cpp36 IntegerType boolTy = IntegerType::get(&context, 1); in TEST()
61 IntegerType boolTy = IntegerType::get(&context, 1); in TEST()
84 IntegerType boolTy = IntegerType::get(&context, 1); in TEST()
97 IntegerType intTy = IntegerType::get(&context, intWidth); in TEST()
105 IntegerType intTy = IntegerType::get(&context, 32); in TEST()
113 IntegerType intTy = IntegerType::get(&context, 85); in TEST()
176 ComplexType complexType = ComplexType::get(IntegerType::get(&context, 64)); in TEST()
190 ComplexType complexType = ComplexType::get(IntegerType::get(&context, 64)); in TEST()
/dports/devel/spark/spark-2.1.1/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/json/
H A DJsonSuite.scala128 checkDataType(NullType, IntegerType, IntegerType)
133 checkDataType(NullType, ArrayType(IntegerType), ArrayType(IntegerType))
148 checkDataType(IntegerType, IntegerType, IntegerType)
153 checkDataType(IntegerType, ArrayType(IntegerType), StringType)
184 checkDataType(ArrayType(IntegerType), ArrayType(IntegerType), ArrayType(IntegerType))
189 ArrayType(IntegerType, true), ArrayType(IntegerType), ArrayType(IntegerType, true))
191 ArrayType(IntegerType, true), ArrayType(IntegerType, false), ArrayType(IntegerType, true))
193 ArrayType(IntegerType, true), ArrayType(IntegerType, true), ArrayType(IntegerType, true))
195 ArrayType(IntegerType, false), ArrayType(IntegerType), ArrayType(IntegerType, true))
197 ArrayType(IntegerType, false), ArrayType(IntegerType, false), ArrayType(IntegerType, false))
[all …]
/dports/devel/boost-docs/boost_1_72_0/boost/mpl/math/
H A Drational_c.hpp22 typename IntegerType
23 , IntegerType N
24 , IntegerType D = 1
28 BOOST_STATIC_CONSTANT(IntegerType, numerator = N);
29 BOOST_STATIC_CONSTANT(IntegerType, denominator = D);
31 typedef rational_c<IntegerType,N,D> type;
/dports/devel/hyperscan/boost_1_75_0/boost/mpl/math/
H A Drational_c.hpp22 typename IntegerType
23 , IntegerType N
24 , IntegerType D = 1
28 BOOST_STATIC_CONSTANT(IntegerType, numerator = N);
29 BOOST_STATIC_CONSTANT(IntegerType, denominator = D);
31 typedef rational_c<IntegerType,N,D> type;
/dports/devel/boost-python-libs/boost_1_72_0/boost/mpl/math/
H A Drational_c.hpp22 typename IntegerType
23 , IntegerType N
24 , IntegerType D = 1
28 BOOST_STATIC_CONSTANT(IntegerType, numerator = N);
29 BOOST_STATIC_CONSTANT(IntegerType, denominator = D);
31 typedef rational_c<IntegerType,N,D> type;
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/mpl/math/
H A Drational_c.hpp22 typename IntegerType
23 , IntegerType N
24 , IntegerType D = 1
28 BOOST_STATIC_CONSTANT(IntegerType, numerator = N);
29 BOOST_STATIC_CONSTANT(IntegerType, denominator = D);
31 typedef rational_c<IntegerType,N,D> type;
/dports/devel/R-cran-BH/BH/inst/include/boost/mpl/math/
H A Drational_c.hpp22 typename IntegerType
23 , IntegerType N
24 , IntegerType D = 1
28 BOOST_STATIC_CONSTANT(IntegerType, numerator = N);
29 BOOST_STATIC_CONSTANT(IntegerType, denominator = D);
31 typedef rational_c<IntegerType,N,D> type;
/dports/games/frogatto/frogatto-1.3.1/MacOSJet/boost/include/boost/mpl/math/
H A Drational_c.hpp22 typename IntegerType
23 , IntegerType N
24 , IntegerType D = 1
28 BOOST_STATIC_CONSTANT(IntegerType, numerator = N);
29 BOOST_STATIC_CONSTANT(IntegerType, denominator = D);
31 typedef rational_c<IntegerType,N,D> type;
/dports/databases/p5-Tie-LevelDB/Tie-LevelDB-0.07/boost_1_47/boost/mpl/math/
H A Drational_c.hpp22 typename IntegerType
23 , IntegerType N
24 , IntegerType D = 1
28 BOOST_STATIC_CONSTANT(IntegerType, numerator = N);
29 BOOST_STATIC_CONSTANT(IntegerType, denominator = D);
31 typedef rational_c<IntegerType,N,D> type;
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/mpl/math/
H A Drational_c.hpp22 typename IntegerType
23 , IntegerType N
24 , IntegerType D = 1
28 BOOST_STATIC_CONSTANT(IntegerType, numerator = N);
29 BOOST_STATIC_CONSTANT(IntegerType, denominator = D);
31 typedef rational_c<IntegerType,N,D> type;
/dports/databases/percona57-server/boost_1_59_0/boost/mpl/math/
H A Drational_c.hpp22 typename IntegerType
23 , IntegerType N
24 , IntegerType D = 1
28 BOOST_STATIC_CONSTANT(IntegerType, numerator = N);
29 BOOST_STATIC_CONSTANT(IntegerType, denominator = D);
31 typedef rational_c<IntegerType,N,D> type;
/dports/databases/xtrabackup/boost_1_59_0/boost/mpl/math/
H A Drational_c.hpp22 typename IntegerType
23 , IntegerType N
24 , IntegerType D = 1
28 BOOST_STATIC_CONSTANT(IntegerType, numerator = N);
29 BOOST_STATIC_CONSTANT(IntegerType, denominator = D);
31 typedef rational_c<IntegerType,N,D> type;

12345678910>>...227