Home
last modified time | relevance | path

Searched refs:constant_ (Results 101 – 125 of 434) sorted by relevance

12345678910>>...18

/dports/lang/gcc10-devel/gcc-10-20211008/libgo/go/go/types/
H A Dexpr.go119 if x.mode == constant_ {
516 if x.mode == constant_ {
619 if x.mode == constant_ && y.mode == constant_ {
642 if x.mode == constant_ {
674 if y.mode == constant_ {
687 if x.mode == constant_ {
688 if y.mode == constant_ {
834 if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
845 if x.mode == constant_ && y.mode == constant_ {
892 if x.mode == constant_ {
[all …]
/dports/lang/gcc9/gcc-9.4.0/libgo/go/go/types/
H A Dexpr.go119 if x.mode == constant_ {
334 assert(x.mode == constant_)
516 if x.mode == constant_ {
621 if x.mode == constant_ && y.mode == constant_ {
644 if x.mode == constant_ {
676 if x.mode == constant_ {
677 if y.mode == constant_ {
835 if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
846 if x.mode == constant_ && y.mode == constant_ {
893 if x.mode == constant_ {
[all …]
/dports/lang/gcc9-aux/gcc-9.1.0/libgo/go/go/types/
H A Dexpr.go119 if x.mode == constant_ {
334 assert(x.mode == constant_)
516 if x.mode == constant_ {
621 if x.mode == constant_ && y.mode == constant_ {
644 if x.mode == constant_ {
676 if x.mode == constant_ {
677 if y.mode == constant_ {
835 if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
846 if x.mode == constant_ && y.mode == constant_ {
893 if x.mode == constant_ {
[all …]
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/go/types/
H A Doperand.go25 constant_ // operand is a constant; the operand's typ is a Basic type const
39 constant_: "constant",
124 case constant_:
156 if x.mode == constant_ {
219 x.mode = constant_
H A Dexpr.go91 assert(x.mode == constant_)
205 if x.mode == constant_ {
433 assert(x.mode == constant_)
646 if x.mode == constant_ {
762 if x.mode == constant_ && y.mode == constant_ {
786 if x.mode == constant_ {
805 if y.mode == constant_ {
847 if x.mode == constant_ {
848 if y.mode == constant_ {
1036 if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
[all …]
/dports/lang/gcc11/gcc-11.2.0/libgo/go/go/types/
H A Dexpr.go119 if x.mode == constant_ {
342 assert(x.mode == constant_)
649 if x.mode == constant_ && y.mode == constant_ {
672 if x.mode == constant_ {
704 if y.mode == constant_ {
717 if x.mode == constant_ {
718 if y.mode == constant_ {
868 if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
879 if x.mode == constant_ && y.mode == constant_ {
937 if x.mode != constant_ {
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libgo/go/go/types/
H A Dexpr.go119 if x.mode == constant_ {
342 assert(x.mode == constant_)
649 if x.mode == constant_ && y.mode == constant_ {
672 if x.mode == constant_ {
704 if y.mode == constant_ {
717 if x.mode == constant_ {
718 if y.mode == constant_ {
868 if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
879 if x.mode == constant_ && y.mode == constant_ {
937 if x.mode != constant_ {
[all …]
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libgo/go/go/types/
H A Dexpr.go119 if x.mode == constant_ {
342 assert(x.mode == constant_)
649 if x.mode == constant_ && y.mode == constant_ {
672 if x.mode == constant_ {
704 if y.mode == constant_ {
717 if x.mode == constant_ {
718 if y.mode == constant_ {
868 if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
879 if x.mode == constant_ && y.mode == constant_ {
937 if x.mode != constant_ {
[all …]
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/cmd/fix/
H A Dgotypes_test.go81 var _ = constant_.Kind
85 _ = constant_.MakeBool(true)
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/fix/
H A Dgotypes_test.go81 var _ = constant_.Kind
85 _ = constant_.MakeBool(true)
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/types2/
H A Doperand.go25 constant_ // operand is a constant; the operand's typ is a Basic type const
40 constant_: "constant",
136 case constant_:
168 if x.mode == constant_ {
231 x.mode = constant_
H A Dexpr.go94 assert(x.mode == constant_)
217 if x.mode == constant_ {
469 assert(x.mode == constant_)
714 if x.mode == constant_ {
810 if x.mode == constant_ && y.mode == constant_ {
834 if x.mode == constant_ {
852 if y.mode == constant_ {
879 if x.mode == constant_ {
880 if y.mode == constant_ {
1060 if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
[all …]
/dports/math/gravity/Gravity-da941e9/include/gravity/
H A Dexpr.h29 class expr: public constant_{
40 virtual shared_ptr<constant_> get_lson() const {return nullptr;}; in get_lson()
41 virtual shared_ptr<constant_> get_rson() const {return nullptr;}; in get_rson()
65 shared_ptr<constant_> _son = nullptr;
83 shared_ptr<constant_> copy()const{return make_shared<uexpr>(*this);}; in copy()
166 uexpr(OperatorType ot, shared_ptr<constant_> son){ in uexpr()
338 shared_ptr<constant_> _lson = nullptr;
339 shared_ptr<constant_> _rson = nullptr;
349 shared_ptr<constant_> get_lson() const {return _lson;}; in get_lson()
350 shared_ptr<constant_> get_rson() const {return _rson;}; in get_rson()
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libgo/go/go/types/
H A Dexpr.go119 if x.mode == constant_ {
325 assert(x.mode == constant_)
493 if x.mode == constant_ {
598 if x.mode == constant_ && y.mode == constant_ {
621 if x.mode == constant_ {
653 if x.mode == constant_ {
654 if y.mode == constant_ {
809 if x.mode == constant_ && y.mode == constant_ {
856 if x.mode == constant_ {
956 case constant_:
[all …]
/dports/lang/gnat_util/gcc-6-20180516/libgo/go/go/types/
H A Dexpr.go119 if x.mode == constant_ {
325 assert(x.mode == constant_)
493 if x.mode == constant_ {
598 if x.mode == constant_ && y.mode == constant_ {
621 if x.mode == constant_ {
653 if x.mode == constant_ {
654 if y.mode == constant_ {
809 if x.mode == constant_ && y.mode == constant_ {
856 if x.mode == constant_ {
956 case constant_:
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/go/types/
H A Dexpr.go91 assert(x.mode == constant_)
189 if x.mode == constant_ {
417 assert(x.mode == constant_)
627 if x.mode == constant_ {
740 if x.mode == constant_ && y.mode == constant_ {
764 if x.mode == constant_ {
783 if y.mode == constant_ {
825 if x.mode == constant_ {
826 if y.mode == constant_ {
989 if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llgo/third_party/gofrontend/libgo/go/go/types/
H A Dexpr.go119 if x.mode == constant_ {
327 assert(x.mode == constant_)
495 if x.mode == constant_ {
602 if x.mode == constant_ && y.mode == constant_ {
650 if x.mode == constant_ {
651 if y.mode == constant_ {
785 if x.mode == constant_ && y.mode == constant_ {
830 if x.mode == constant_ {
932 case constant_:
1118 if x.mode == constant_ {
[all …]
/dports/audio/stk/stk-4.6.2/include/
H A DAsymp.h98 StkFloat constant_; variable
106 value_ = factor_ * value_ + constant_; in tick()
/dports/graphics/openvkl/openvkl-1.1.0/openvkl/devices/cpu/volume/vdb/
H A DVdbSampler_leafHandler.ih35 handler, leafFormat, constant_##postfix, __VA_ARGS__) \
40 handler, leafFormat, constant_##postfix, __VA_ARGS__) break; \
/dports/devel/vexcl/vexcl-1.4.3/vexcl/
H A Dconstants.hpp143 struct constant_##name { \
152 vex::user_constant<constant_##name>())) \
155 vex::user_constant<constant_##name>()); \
162 const constant_##name name = {}
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/math/constants/
H A Dconstants.hpp222 template <class T> struct BOOST_JOIN(constant_, name){\
242 … constant_initializer<T, & BOOST_JOIN(constant_, name)<T>::get_from_string >::force_instantiate();\
254 …constant_initializer2<T, N, & BOOST_JOIN(constant_, name)<T>::template get_from_compute<N> >::forc…
266 …{ return detail:: BOOST_JOIN(constant_, name)<T>::get(typename construction_traits<T, Policy>::typ…
/dports/databases/xtrabackup/boost_1_59_0/boost/math/constants/
H A Dconstants.hpp222 template <class T> struct BOOST_JOIN(constant_, name){\
242 … constant_initializer<T, & BOOST_JOIN(constant_, name)<T>::get_from_string >::force_instantiate();\
254 …constant_initializer2<T, N, & BOOST_JOIN(constant_, name)<T>::template get_from_compute<N> >::forc…
266 …{ return detail:: BOOST_JOIN(constant_, name)<T>::get(typename construction_traits<T, Policy>::typ…
/dports/databases/percona57-server/boost_1_59_0/boost/math/constants/
H A Dconstants.hpp222 template <class T> struct BOOST_JOIN(constant_, name){\
242 … constant_initializer<T, & BOOST_JOIN(constant_, name)<T>::get_from_string >::force_instantiate();\
254 …constant_initializer2<T, N, & BOOST_JOIN(constant_, name)<T>::template get_from_compute<N> >::forc…
266 …{ return detail:: BOOST_JOIN(constant_, name)<T>::get(typename construction_traits<T, Policy>::typ…
/dports/databases/percona57-client/boost_1_59_0/boost/math/constants/
H A Dconstants.hpp222 template <class T> struct BOOST_JOIN(constant_, name){\
242 … constant_initializer<T, & BOOST_JOIN(constant_, name)<T>::get_from_string >::force_instantiate();\
254 …constant_initializer2<T, N, & BOOST_JOIN(constant_, name)<T>::template get_from_compute<N> >::forc…
266 …{ return detail:: BOOST_JOIN(constant_, name)<T>::get(typename construction_traits<T, Policy>::typ…
/dports/databases/mysqlwsrep57-server/boost_1_59_0/boost/math/constants/
H A Dconstants.hpp222 template <class T> struct BOOST_JOIN(constant_, name){\
242 … constant_initializer<T, & BOOST_JOIN(constant_, name)<T>::get_from_string >::force_instantiate();\
254 …constant_initializer2<T, N, & BOOST_JOIN(constant_, name)<T>::template get_from_compute<N> >::forc…
266 …{ return detail:: BOOST_JOIN(constant_, name)<T>::get(typename construction_traits<T, Policy>::typ…

12345678910>>...18