Home
last modified time | relevance | path

Searched refs:MaxUint (Results 1 – 20 of 20) sorted by relevance

/dports/net-im/tut/tut-0.0.17/vendor/github.com/icza/gox/mathx/
H A Dconst.go7 MaxUint = ^uint(0) const
9 MaxInt = int(MaxUint >> 1)
H A Dconst_test.go9 if MaxUint != max {
/dports/sysutils/brename/brename-2.11.1/vendor/github.com/shenwei356/util/math/
H A Dfloat.go11 const MaxUint = ^uint(0) const
13 const MaxInt = int(MaxUint >> 1)
/dports/sysutils/rush/rush-0.4.2-9-ga800565/vendor/github.com/shenwei356/util/math/
H A Dfloat.go11 const MaxUint = ^uint(0) const
13 const MaxInt = int(MaxUint >> 1)
/dports/lang/gomacro/gomacro-2.7-304-g2f4dc7c/base/
H A Dconstant.go38 MaxUint = ^uint(0) const
39 MaxInt = int(MaxUint >> 1)
H A Dx_package.go36 "MaxUint": r.ValueOf(MaxUint),
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/cznic/mathutil/
H A Dall_test.go66 MaxUintP1 uint = MaxUint
2944 {MaxUint, MaxUint, MaxUint},
2945 {MaxUint, MaxUint - 1, MaxUint},
2946 {MaxUint - 1, MaxUint, MaxUint},
2947 {MaxUint - 1, MaxUint - 1, MaxUint - 1},
2949 {MaxUint, MaxUintP1, MaxUint},
2950 {MaxUintP1, MaxUint, MaxUint},
2972 {MaxUint, MaxUint, MaxUint},
2973 {MaxUint, MaxUint - 1, MaxUint - 1},
2974 {MaxUint - 1, MaxUint, MaxUint - 1},
[all …]
H A Dmathutil.go67 MaxUint = 1<<IntBits - 1 const
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/math/
H A Dconst.go52 MaxUint = 1<<intSize - 1 const
H A Dconst_test.go14 if v := uint(MaxUint); v+1 != 0 {
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/math/
H A Dconst.go52 MaxUint = 1<<intSize - 1 const
H A Dconst_test.go14 if v := uint(MaxUint); v+1 != 0 {
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/siddontang/go/num/
H A Dcmp.go11 func MaxUint(a uint, b uint) uint { func
H A Dnum_test.go85 c = MaxUint(i1, v2.(uint))
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/siddontang/ledisdb/vendor/github.com/siddontang/go/num/
H A Dcmp.go11 func MaxUint(a uint, b uint) uint { func
/dports/net/bosh-bootloader/bosh-bootloader-7.2.12/vendor/github.com/araddon/gou/
H A Djsonhelper.go535 MaxUint = 1<<BitsPerWord - 1 // either 1<<32 - 1 or 1<<64 - 1 const
/dports/net/goreplay/goreplay-1.2.0/vendor/github.com/araddon/gou/gou-c797efecbb61/
H A Djsonhelper.go535 MaxUint = 1<<BitsPerWord - 1 // either 1<<32 - 1 or 1<<64 - 1 const
/dports/net/goreplay/goreplay-1.2.0/vendor/github.com/araddon/gou/
H A Djsonhelper.go535 MaxUint = 1<<BitsPerWord - 1 // either 1<<32 - 1 or 1<<64 - 1 const
/dports/misc/perkeep/perkeep-0.11/vendor/github.com/cznic/mathutil/
H A Dmathutil.go74 MaxUint = 1<<IntBits - 1 const
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/DebugInfo/
H A DDwarfCompileUnit.cpp97 const auto MaxUint = std::numeric_limits<unsigned>::max(); in pieceCount() local
98 bool NoOverflow = Count <= MaxUint; in pieceCount()