Home
last modified time | relevance | path

Searched refs:maxNumValues (Results 1 – 4 of 4) sorted by relevance

/dports/lang/gcc48/gcc-4.8.5/libgo/go/image/jpeg/
H A Dhuffman.go13 const maxNumValues = 256 const
27 val [maxNumValues]uint8 // the decoded values, as sorted by their encoding.
28 size [maxNumValues]int // size[i] is the number of bits to encode val[i].
29 code [maxNumValues]int // code[i] is the encoding of val[i].
110 if h.length > maxNumValues {
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libgo/go/image/jpeg/
H A Dhuffman.go13 const maxNumValues = 256 const
27 val [maxNumValues]uint8 // the decoded values, as sorted by their encoding.
28 size [maxNumValues]int // size[i] is the number of bits to encode val[i].
29 code [maxNumValues]int // code[i] is the encoding of val[i].
110 if h.length > maxNumValues {
/dports/devel/mingw32-gcc/gcc-4.8.1/libgo/go/image/jpeg/
H A Dhuffman.go13 const maxNumValues = 256 const
27 val [maxNumValues]uint8 // the decoded values, as sorted by their encoding.
28 size [maxNumValues]int // size[i] is the number of bits to encode val[i].
29 code [maxNumValues]int // code[i] is the encoding of val[i].
110 if h.length > maxNumValues {
/dports/math/vtk8/VTK-8.2.0/ThirdParty/vtkm/vtk-m/vtkm/cont/
H A DStorageBasic.cxx189 const size_t maxNumValues = std::numeric_limits<size_t>::max() / sizeOfValue; in AllocateValues() local
190 if (static_cast<vtkm::UInt64>(numberOfValues) > maxNumValues) in AllocateValues()