SYMBOL INDEX (18496 symbols across 1304 files) FILE: go/archive/archive.go type Archiver (line 29) | type Archiver interface FILE: go/archive/option/file_info.go type FileInfo (line 29) | type FileInfo struct method String (line 34) | func (e *FileInfo) String() string { type ExtractMsg (line 43) | type ExtractMsg struct method String (line 48) | func (e *ExtractMsg) String() string { FILE: go/archive/zip/zip.go type Zip (line 40) | type Zip struct method Extract (line 43) | func (z Zip) Extract(srcFile, destDir string) ([]*option.FileInfo, err... method ExtractStream (line 70) | func (z Zip) ExtractStream( method extractAndWriteFile (line 117) | func (z Zip) extractAndWriteFile( FILE: go/archive/zip/zip_test.go function TestExtractZip (line 30) | func TestExtractZip(t *testing.T) { FILE: go/bytes/bytes.go function Truncate (line 29) | func Truncate(s []byte, n int) []byte { function Encode (line 41) | func Encode[T any](m T) []byte { function Decode (line 56) | func Decode[T any](b []byte) T { FILE: go/bytes/bytes_test.go function TestEncodeAndDecode (line 12) | func TestEncodeAndDecode(t *testing.T) { FILE: go/client/client.go type Client (line 28) | type Client struct method logf (line 43) | func (c *Client) logf(format string, args ...interface{}) { function New (line 36) | func New(options ...ClientOption) *Client { FILE: go/client/client.options.go function WithClientOptionPath (line 24) | func WithClientOptionPath(path string) ClientOption { FILE: go/client/client_options.go type ClientOption (line 25) | type ClientOption interface type EmptyClientOption (line 33) | type EmptyClientOption struct method apply (line 35) | func (EmptyClientOption) apply(*Client) {} type ClientOptionFunc (line 39) | type ClientOptionFunc method apply (line 41) | func (f ClientOptionFunc) apply(do *Client) { function _ClientOptionWithDefault (line 46) | func _ClientOptionWithDefault() ClientOption { method ApplyOptions (line 51) | func (o *Client) ApplyOptions(options ...ClientOption) *Client { FILE: go/client/client_test.go function TestNew (line 31) | func TestNew(t *testing.T) { FILE: go/container/heap/heap.go constant closedMsg (line 31) | closedMsg = "heap is closed" type LessFunc (line 35) | type LessFunc type KeyFunc (line 39) | type KeyFunc type heapItem (line 41) | type heapItem struct type itemKeyValue (line 46) | type itemKeyValue struct type heapData (line 53) | type heapData struct method Less (line 75) | func (h *heapData) Less(i, j int) bool { method Len (line 91) | func (h *heapData) Len() int { return len(h.queue) } method Swap (line 95) | func (h *heapData) Swap(i, j int) { method Push (line 104) | func (h *heapData) Push(kv interface{}) { method Pop (line 112) | func (h *heapData) Pop() interface{} { type Heap (line 126) | type Heap struct method Close (line 141) | func (h *Heap) Close() { method Add (line 150) | func (h *Heap) Add(obj interface{}) error { method BulkAdd (line 170) | func (h *Heap) BulkAdd(list []interface{}) error { method AddIfNotPresent (line 195) | func (h *Heap) AddIfNotPresent(obj interface{}) error { method AddIfHeapOrder (line 210) | func (h *Heap) AddIfHeapOrder(obj interface{}) error { method addIfNotPresentLocked (line 231) | func (h *Heap) addIfNotPresentLocked(key string, obj interface{}) { method Update (line 240) | func (h *Heap) Update(obj interface{}) error { method Delete (line 245) | func (h *Heap) Delete(obj interface{}) error { method Pop (line 258) | func (h *Heap) Pop() (interface{}, error) { method List (line 279) | func (h *Heap) List() []interface{} { method ListKeys (line 291) | func (h *Heap) ListKeys() []string { method Get (line 303) | func (h *Heap) Get(obj interface{}) (interface{}, bool) { method GetByKey (line 309) | func (h *Heap) GetByKey(key string) (interface{}, bool) { method IsClosed (line 320) | func (h *Heap) IsClosed() bool { function NewHeap (line 330) | func NewHeap(keyFn KeyFunc, lessFn LessFunc) *Heap { FILE: go/container/heap/heap_test.go function testHeapObjectKeyFunc (line 31) | func testHeapObjectKeyFunc(obj interface{}) string { type testHeapObject (line 35) | type testHeapObject struct function mkHeapObj (line 40) | func mkHeapObj(name string, val interface{}) testHeapObject { function compareInts (line 45) | func compareInts(val1 interface{}, val2 interface{}) bool { function TestHeapBasic (line 52) | func TestHeapBasic(t *testing.T) { function TestHeap_Get (line 91) | func TestHeap_Get(t *testing.T) { function TestHeap_GetByKey (line 111) | func TestHeap_GetByKey(t *testing.T) { type Student (line 129) | type Student struct function testStudentObjectKeyFunc (line 135) | func testStudentObjectKeyFunc(obj interface{}) string { function compareStudentScore (line 140) | func compareStudentScore(val1 interface{}, val2 interface{}) bool { function TestMaxHeap (line 146) | func TestMaxHeap(t *testing.T) { FILE: go/container/set/set.go type Set (line 30) | type Set function New (line 32) | func New[T comparable](items ...T) Set[T] { method Insert (line 40) | func (s Set[T]) Insert(items ...T) Set[T] { method Delete (line 49) | func (s Set[T]) Delete(items ...T) Set[T] { method Has (line 57) | func (s Set[T]) Has(item T) bool { method HasAll (line 63) | func (s Set[T]) HasAll(items ...T) bool { method HasAny (line 73) | func (s Set[T]) HasAny(items ...T) bool { method Difference (line 88) | func (s Set[T]) Difference(s2 Set[T]) Set[T] { method Union (line 104) | func (s1 Set[T]) Union(s2 Set[T]) Set[T] { method Intersection (line 120) | func (s1 Set[T]) Intersection(s2 Set[T]) Set[T] { method IsSuperset (line 139) | func (s1 Set[T]) IsSuperset(s2 Set[T]) bool { method Equal (line 151) | func (s1 Set[T]) Equal(s2 Set[T]) bool { type sortableSliceOfT (line 155) | type sortableSliceOfT method Len (line 157) | func (s sortableSliceOfT[T]) Len() int { return len(s) } method Less (line 158) | func (s sortableSliceOfT[T]) Less(i, j int) bool { return lessT(s[i], s[... method Swap (line 159) | func (s sortableSliceOfT[T]) Swap(i, j int) { s[i], s[j] = s[j], s[... method List (line 162) | func (s Set[T]) List() []T { method UnsortedList (line 172) | func (s Set[T]) UnsortedList() []T { method PopAny (line 181) | func (s Set[T]) PopAny() (T, bool) { method Len (line 191) | func (s Set[T]) Len() int { type LesserT (line 195) | type LesserT interface function lessT (line 199) | func lessT[T comparable](lhs, rhs T) bool { FILE: go/container/set/set.interface.go type Object (line 31) | type Object method Insert (line 53) | func (s Object) Insert(items ...interface{}) Object { method Delete (line 61) | func (s Object) Delete(items ...interface{}) Object { method Has (line 69) | func (s Object) Has(item interface{}) bool { method HasAll (line 75) | func (s Object) HasAll(items ...interface{}) bool { method HasAny (line 85) | func (s Object) HasAny(items ...interface{}) bool { method Difference (line 100) | func (s Object) Difference(s2 Object) Object { method Union (line 116) | func (s1 Object) Union(s2 Object) Object { method Intersection (line 132) | func (s1 Object) Intersection(s2 Object) Object { method IsSuperset (line 151) | func (s1 Object) IsSuperset(s2 Object) bool { method Equal (line 163) | func (s1 Object) Equal(s2 Object) bool { method List (line 174) | func (s Object) List() []interface{} { method UnsortedList (line 184) | func (s Object) UnsortedList() []interface{} { method PopAny (line 193) | func (s Object) PopAny() (interface{}, bool) { method Len (line 203) | func (s Object) Len() int { function NewObject (line 34) | func NewObject(items ...interface{}) Object { function KeySet (line 42) | func KeySet(theMap interface{}) Object { type sortableSliceOfObject (line 167) | type sortableSliceOfObject method Len (line 169) | func (s sortableSliceOfObject) Len() int { return len(s) } method Less (line 170) | func (s sortableSliceOfObject) Less(i, j int) bool { return lessObject... method Swap (line 171) | func (s sortableSliceOfObject) Swap(i, j int) { s[i], s[j] = s[j]... type Lesser (line 207) | type Lesser interface function lessObject (line 308) | func lessObject(lhs, rhs interface{}) bool { FILE: go/container/set/set_interface_test.go function TestSetInsert (line 30) | func TestSetInsert(t *testing.T) { function TestSetEquals (line 58) | func TestSetEquals(t *testing.T) { function TestSetUnion (line 74) | func TestSetUnion(t *testing.T) { function TestSetIntersection (line 119) | func TestSetIntersection(t *testing.T) { FILE: go/container/set/set_string.go type Empty (line 29) | type Empty struct type String (line 32) | type String method Insert (line 54) | func (s String) Insert(items ...string) String { method Delete (line 62) | func (s String) Delete(items ...string) String { method Has (line 70) | func (s String) Has(item string) bool { method HasAll (line 76) | func (s String) HasAll(items ...string) bool { method HasAny (line 86) | func (s String) HasAny(items ...string) bool { method Difference (line 101) | func (s String) Difference(s2 String) String { method Union (line 117) | func (s1 String) Union(s2 String) String { method Intersection (line 133) | func (s1 String) Intersection(s2 String) String { method IsSuperset (line 152) | func (s1 String) IsSuperset(s2 String) bool { method Equal (line 164) | func (s1 String) Equal(s2 String) bool { method List (line 175) | func (s String) List() []string { method UnsortedList (line 185) | func (s String) UnsortedList() []string { method PopAny (line 194) | func (s String) PopAny() (string, bool) { method Len (line 204) | func (s String) Len() int { function NewString (line 35) | func NewString(items ...string) String { function StringKeySet (line 43) | func StringKeySet(theMap interface{}) String { type sortableSliceOfString (line 168) | type sortableSliceOfString method Len (line 170) | func (s sortableSliceOfString) Len() int { return len(s) } method Less (line 171) | func (s sortableSliceOfString) Less(i, j int) bool { return lessString... method Swap (line 172) | func (s sortableSliceOfString) Swap(i, j int) { s[i], s[j] = s[j]... function lessString (line 208) | func lessString(lhs, rhs string) bool { FILE: go/container/set/set_string_test.go function TestStringSetInsert (line 30) | func TestStringSetInsert(t *testing.T) { function TestStringSetEquals (line 58) | func TestStringSetEquals(t *testing.T) { function TestStringSetUnion (line 74) | func TestStringSetUnion(t *testing.T) { function TestStringSetIntersection (line 119) | func TestStringSetIntersection(t *testing.T) { FILE: go/container/set/set_test.go function TestGenericSetNew (line 9) | func TestGenericSetNew(t *testing.T) { function TestGenericSetInsert (line 15) | func TestGenericSetInsert(t *testing.T) { function TestGenericSetEquals (line 43) | func TestGenericSetEquals(t *testing.T) { function TestGenericSetUnion (line 59) | func TestGenericSetUnion(t *testing.T) { FILE: go/container/workqueue/queue.go type Interface (line 28) | type Interface interface function NewQueue (line 37) | func NewQueue() *Type { type Type (line 48) | type Type struct method Add (line 91) | func (q *Type) Add(item interface{}) { method Len (line 110) | func (q *Type) Len() int { method Get (line 116) | func (q *Type) Get() (item interface{}, shutdown bool) { method Done (line 138) | func (q *Type) Done(item interface{}) { method ShutDown (line 153) | func (q *Type) ShutDown() { method ShutDownWithDrain (line 167) | func (q *Type) ShutDownWithDrain() { method isProcessing (line 177) | func (q *Type) isProcessing() bool { method waitForProcessing (line 185) | func (q *Type) waitForProcessing() { method setDrain (line 198) | func (q *Type) setDrain(shouldDrain bool) { method shouldDrain (line 204) | func (q *Type) shouldDrain() bool { method shutdown (line 210) | func (q *Type) shutdown() { method ShuttingDown (line 217) | func (q *Type) ShuttingDown() bool { type empty (line 69) | type empty struct type t (line 70) | type t interface type set (line 71) | type set method has (line 73) | func (s set) has(item t) bool { method insert (line 78) | func (s set) insert(item t) { method delete (line 82) | func (s set) delete(item t) { method len (line 86) | func (s set) len() int { FILE: go/container/workqueue/queue_test.go function TestBasic (line 32) | func TestBasic(t *testing.T) { function TestReinsert (line 93) | func TestReinsert(t *testing.T) { FILE: go/context/context.go constant DefaultHTTPRequestIDKey (line 33) | DefaultHTTPRequestIDKey = "X-Request-ID" constant DefaultHTTPTraceIDKey (line 34) | DefaultHTTPTraceIDKey = "X-Traceid" function WithTimeout (line 37) | func WithTimeout(ctx context.Context, timeout time.Duration) (context.Co... function ExtractStringFromContext (line 45) | func ExtractStringFromContext(ctx context.Context, key string) string { function ExtractIntegerFromContext (line 53) | func ExtractIntegerFromContext(ctx context.Context, key string) (int64, ... function ExtractFromContext (line 67) | func ExtractFromContext(ctx context.Context, key string) string { function UpdateContext (line 84) | func UpdateContext(ctx context.Context, key string, values map[string]in... function SetPairContext (line 96) | func SetPairContext(ctx context.Context, key, value string) context.Cont... function AppendContext (line 100) | func AppendContext(ctx context.Context, key string, values ...string) co... function WithContextRequestId (line 106) | func WithContextRequestId(ctx context.Context, id string) context.Context { function ExtractRequestIDFromContext (line 110) | func ExtractRequestIDFromContext(ctx context.Context) string { function ExtractTraceIDFromContext (line 119) | func ExtractTraceIDFromContext(ctx context.Context) string { FILE: go/context/context_test.go function withField (line 33) | func withField(ctx context.Context) { function TestContext (line 38) | func TestContext(t *testing.T) { function doA (line 45) | func doA(ctx context.Context) { function doB (line 65) | func doB(ctx context.Context) { function TestContextTimeout (line 85) | func TestContextTimeout(t *testing.T) { function TestExtractIntegerFromContext (line 91) | func TestExtractIntegerFromContext(t *testing.T) { function TestExtractStringFromContext (line 125) | func TestExtractStringFromContext(t *testing.T) { FILE: go/crypto/aes/aes_cbc.go function AesCbcEncrypt (line 34) | func AesCbcEncrypt(plainText, key []byte) ([]byte, error) { function AesCbcDecrypt (line 56) | func AesCbcDecrypt(cipherText, key []byte) ([]byte, error) { function pad (line 82) | func pad(plainText []byte, blockSize int) []byte { function unpad (line 89) | func unpad(plainText []byte) ([]byte, error) { FILE: go/crypto/aes/aes_cbc_test.go function TestAesCbcEncryptDecrypt (line 37) | func TestAesCbcEncryptDecrypt(t *testing.T) { function TestAesCbcDecrypt (line 67) | func TestAesCbcDecrypt(t *testing.T) { FILE: go/crypto/md5/md5.go function SumBytes (line 34) | func SumBytes(b []byte) string { function SumString (line 40) | func SumString(s string) string { function SumReader (line 44) | func SumReader(r io.Reader) (string, error) { function SumReaderN (line 53) | func SumReaderN(r io.Reader, n int64) (string, error) { function SumReaderAt (line 62) | func SumReaderAt(r io.ReaderAt, offset, length int64) (string, error) { function SumFile (line 92) | func SumFile(fileName string) (string, error) { function SumFileAt (line 102) | func SumFileAt(fileName string, offset int64, length int64) (string, err... FILE: go/crypto/md5/md5_test.go function TestMd5File (line 34) | func TestMd5File(t *testing.T) { function TestMd5FileAt (line 57) | func TestMd5FileAt(t *testing.T) { FILE: go/crypto/sha256/sha256.go function SumBytes (line 34) | func SumBytes(b []byte) string { function SumString (line 40) | func SumString(s string) string { function SumReader (line 44) | func SumReader(r io.Reader) (string, error) { function SumReaderN (line 53) | func SumReaderN(r io.Reader, n int64) (string, error) { function SumReaderAt (line 62) | func SumReaderAt(r io.ReaderAt, offset, length int64) (string, error) { function SumFile (line 92) | func SumFile(fileName string) (string, error) { function SumFileAt (line 102) | func SumFileAt(fileName string, offset int64, length int64) (string, err... FILE: go/crypto/sha256/sha256_test.go function TestSha256File (line 34) | func TestSha256File(t *testing.T) { function TestSha256FileAt (line 57) | func TestSha256FileAt(t *testing.T) { FILE: go/encoding/base64/base64.go function EncodeString (line 29) | func EncodeString(v string) string { function DecodeString (line 33) | func DecodeString(v string) (string, error) { function EncodeURL (line 42) | func EncodeURL(v string) string { function DecodeURL (line 46) | func DecodeURL(v string) (string, error) { FILE: go/encoding/base64/base64_test.go function TestString (line 34) | func TestString(t *testing.T) { function TestURL (line 76) | func TestURL(t *testing.T) { function TestDecodeString (line 105) | func TestDecodeString(t *testing.T) { function TestDecodeFile (line 136) | func TestDecodeFile(t *testing.T) { FILE: go/encoding/hash/hash.go function HashCode (line 26) | func HashCode(s string) uint32 { FILE: go/encoding/hash/hash_test.go function TestHashCode (line 31) | func TestHashCode(t *testing.T) { FILE: go/encoding/jwt/jwt.go function ParsePayload (line 42) | func ParsePayload(token string) (map[string]interface{}, error) { function GetClaimString (line 76) | func GetClaimString(claims map[string]interface{}, key string) string { function GetClaimFloat64 (line 89) | func GetClaimFloat64(claims map[string]interface{}, key string) float64 { function padBase64 (line 101) | func padBase64(s string) string { FILE: go/encoding/jwt/jwt_test.go function TestParsePayload (line 28) | func TestParsePayload(t *testing.T) { function TestGetClaimString (line 80) | func TestGetClaimString(t *testing.T) { function TestGetClaimFloat64 (line 100) | func TestGetClaimFloat64(t *testing.T) { FILE: go/encoding/protojson/decode.go type Unmarshaler (line 29) | type Unmarshaler struct function Unmarshal (line 34) | func Unmarshal(data []byte, pb proto.Message, options ...UnmarshalerOpti... FILE: go/encoding/protojson/decode.option.go function WithUnMashalAllowPartial (line 25) | func WithUnMashalAllowPartial(allowPartial bool) UnmarshalerOption { function WithUnmashalDiscardUnknown (line 32) | func WithUnmashalDiscardUnknown(discardUnknown bool) UnmarshalerOption { FILE: go/encoding/protojson/decode_option.go type UnmarshalerOption (line 25) | type UnmarshalerOption interface type EmptyUnmarshalerOption (line 33) | type EmptyUnmarshalerOption struct method apply (line 35) | func (EmptyUnmarshalerOption) apply(*Unmarshaler) {} type UnmarshalerOptionFunc (line 39) | type UnmarshalerOptionFunc method apply (line 41) | func (f UnmarshalerOptionFunc) apply(do *Unmarshaler) { function _UnmarshalerOptionWithDefault (line 46) | func _UnmarshalerOptionWithDefault() UnmarshalerOption { method ApplyOptions (line 51) | func (o *Unmarshaler) ApplyOptions(options ...UnmarshalerOption) *Unmars... FILE: go/encoding/protojson/encode.go type Marshaler (line 29) | type Marshaler struct function Marshal (line 34) | func Marshal(pb proto.Message, options ...MarshalerOption) ([]byte, erro... FILE: go/encoding/protojson/encode.option.go function WithMashalMultiline (line 24) | func WithMashalMultiline(multiline bool) MarshalerOption { function WithMashalUseProtoNames (line 30) | func WithMashalUseProtoNames(useProtoNames bool) MarshalerOption { function WithMashalUseEnumNumbers (line 36) | func WithMashalUseEnumNumbers(useEnumNumbers bool) MarshalerOption { function WithMashalEmitUnpopulated (line 42) | func WithMashalEmitUnpopulated(emitUnpopulated bool) MarshalerOption { FILE: go/encoding/protojson/encode_option.go type MarshalerOption (line 25) | type MarshalerOption interface type EmptyMarshalerOption (line 33) | type EmptyMarshalerOption struct method apply (line 35) | func (EmptyMarshalerOption) apply(*Marshaler) {} type MarshalerOptionFunc (line 39) | type MarshalerOptionFunc method apply (line 41) | func (f MarshalerOptionFunc) apply(do *Marshaler) { function _MarshalerOptionWithDefault (line 46) | func _MarshalerOptionWithDefault() MarshalerOption { method ApplyOptions (line 51) | func (o *Marshaler) ApplyOptions(options ...MarshalerOption) *Marshaler { FILE: go/encoding/protojson/protojson_test.go function TestMarshal (line 32) | func TestMarshal(t *testing.T) { FILE: go/encoding/protojson/testdata/date.pb.go constant _ (line 40) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 42) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type DateRequest (line 45) | type DateRequest struct method Reset (line 53) | func (x *DateRequest) Reset() { method String (line 62) | func (x *DateRequest) String() string { method ProtoMessage (line 66) | func (*DateRequest) ProtoMessage() {} method ProtoReflect (line 68) | func (x *DateRequest) ProtoReflect() protoreflect.Message { method Descriptor (line 81) | func (*DateRequest) Descriptor() ([]byte, []int) { method GetRequestId (line 85) | func (x *DateRequest) GetRequestId() string { type DateResponse (line 92) | type DateResponse struct method Reset (line 101) | func (x *DateResponse) Reset() { method String (line 110) | func (x *DateResponse) String() string { method ProtoMessage (line 114) | func (*DateResponse) ProtoMessage() {} method ProtoReflect (line 116) | func (x *DateResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 129) | func (*DateResponse) Descriptor() ([]byte, []int) { method GetRequestId (line 133) | func (x *DateResponse) GetRequestId() string { method GetDate (line 140) | func (x *DateResponse) GetDate() string { function file_go_encoding_protojson_testdata_date_proto_rawDescGZIP (line 175) | func file_go_encoding_protojson_testdata_date_proto_rawDescGZIP() []byte { function init (line 195) | func init() { file_go_encoding_protojson_testdata_date_proto_init() } function file_go_encoding_protojson_testdata_date_proto_init (line 196) | func file_go_encoding_protojson_testdata_date_proto_init() { FILE: go/errors/error.grpc.go function FromError (line 35) | func FromError(err error) (s *status.Status, ok bool) { function ErrorToCodeString (line 51) | func ErrorToCodeString(err error) string { function ErrorToString (line 74) | func ErrorToString(err error) string { function ErrorToCode (line 86) | func ErrorToCode(err error) codes.Code { function Errorf (line 99) | func Errorf(code interface{}, format string, a ...interface{}) error { function Errore (line 134) | func Errore(errlist ...error) error { FILE: go/errors/errors.go type Aggregate (line 28) | type Aggregate interface function NewAggregate (line 39) | func NewAggregate(errlist []error) Aggregate { type aggregate (line 59) | type aggregate method Error (line 62) | func (agg aggregate) Error() string { method Is (line 82) | func (agg aggregate) Is(target error) bool { method visit (line 88) | func (agg aggregate) visit(f func(err error) bool) bool { method Errors (line 112) | func (agg aggregate) Errors() []error { FILE: go/errors/errors_test.go function TestError (line 32) | func TestError(t *testing.T) { function TestErrorIs (line 44) | func TestErrorIs(t *testing.T) { function TestErrore (line 81) | func TestErrore(t *testing.T) { FILE: go/errors/handler.go function HandleError (line 50) | func HandleError(err error) { function ErrorChain (line 61) | func ErrorChain(handlers ...func(err error, handled bool) (error, bool))... FILE: go/filesystem/filesystem.go type Filesystem (line 31) | type Filesystem interface type File (line 51) | type File interface FILE: go/filesystem/mountpoint.go type DeviceNumber (line 50) | type DeviceNumber method String (line 52) | func (num DeviceNumber) String() string { function getNumberOfContainingDevice (line 58) | func getNumberOfContainingDevice(path string) (DeviceNumber, error) { function filesystemLacksMainMountError (line 66) | func filesystemLacksMainMountError(deviceNumber DeviceNumber) error { type Mount (line 74) | type Mount struct function FindMount (line 83) | func FindMount(path string) (*Mount, error) { function loadMountInfo (line 139) | func loadMountInfo() error { function readMountInfo (line 155) | func readMountInfo(r io.Reader) error { function parseMountInfoLine (line 207) | func parseMountInfoLine(line string) *Mount { function newDeviceNumberFromString (line 244) | func newDeviceNumberFromString(str string) (DeviceNumber, error) { function unescapeString (line 256) | func unescapeString(str string) string { function getDeviceName (line 275) | func getDeviceName(num DeviceNumber) string { type mountpointTreeNode (line 283) | type mountpointTreeNode struct function addUncontainedSubtreesRecursive (line 289) | func addUncontainedSubtreesRecursive(dst map[string]bool, function findMainMount (line 299) | func findMainMount(filesystemMounts []*Mount) *Mount { FILE: go/flag/flag.go constant usageFmt (line 35) | usageFmt = "Usage:\n %s\n" type NamedFlagSets (line 39) | type NamedFlagSets struct method FlagSet (line 50) | func (nfs *NamedFlagSets) FlagSet(name string) *pflag.FlagSet { function PrintSections (line 68) | func PrintSections(w io.Writer, fss NamedFlagSets, cols int) { function SetUsageAndHelpFunc (line 100) | func SetUsageAndHelpFunc(cmd *cobra.Command, fss NamedFlagSets, cols int) { FILE: go/idgen/id_gen.go constant Epoch (line 29) | Epoch int64 = 1704067200000 constant workerIDBits (line 32) | workerIDBits = 10 constant sequenceBits (line 33) | sequenceBits = 12 constant maxWorkerID (line 36) | maxWorkerID = -1 ^ (-1 << workerIDBits) constant maxSequence (line 37) | maxSequence = -1 ^ (-1 << sequenceBits) constant workerIDShift (line 40) | workerIDShift = sequenceBits constant timestampShift (line 41) | timestampShift = sequenceBits + workerIDBits type Generator (line 53) | type Generator struct method NextID (line 86) | func (g *Generator) NextID() (uint64, error) { method MustNextID (line 121) | func (g *Generator) MustNextID() uint64 { method currentMillis (line 130) | func (g *Generator) currentMillis() int64 { method waitNextMillis (line 135) | func (g *Generator) waitNextMillis(lastTimestamp int64) int64 { function NewGenerator (line 62) | func NewGenerator(workerID int64) (*Generator, error) { function MustNewGenerator (line 76) | func MustNewGenerator(workerID int64) *Generator { function ParseID (line 144) | func ParseID(id uint64) (timestamp int64, workerID int64, sequence int64) { function GetTimestamp (line 152) | func GetTimestamp(id uint64) time.Time { function GetWorkerID (line 158) | func GetWorkerID(id uint64) int64 { function GetSequence (line 164) | func GetSequence(id uint64) int64 { function GenerateUint64FromUUID (line 170) | func GenerateUint64FromUUID() uint64 { function UUIDToUint64XOR (line 176) | func UUIDToUint64XOR(id uuid.UUID) uint64 { FILE: go/idgen/id_gen_test.go function TestNewGenerator (line 10) | func TestNewGenerator(t *testing.T) { function TestMustNewGenerator (line 51) | func TestMustNewGenerator(t *testing.T) { function TestNextID (line 77) | func TestNextID(t *testing.T) { function TestMustNextID (line 102) | func TestMustNextID(t *testing.T) { function TestIDUniqueness (line 118) | func TestIDUniqueness(t *testing.T) { function TestWorkerIDInGeneratedID (line 137) | func TestWorkerIDInGeneratedID(t *testing.T) { function TestParseID (line 154) | func TestParseID(t *testing.T) { function TestGetTimestamp (line 182) | func TestGetTimestamp(t *testing.T) { function TestSequenceOverflow (line 199) | func TestSequenceOverflow(t *testing.T) { function TestConcurrentGeneration (line 225) | func TestConcurrentGeneration(t *testing.T) { function TestMultipleGenerators (line 279) | func TestMultipleGenerators(t *testing.T) { function TestConcurrentSameWorker (line 318) | func TestConcurrentSameWorker(t *testing.T) { function BenchmarkNextID (line 365) | func BenchmarkNextID(b *testing.B) { function BenchmarkNextIDParallel (line 375) | func BenchmarkNextIDParallel(b *testing.B) { function BenchmarkParseID (line 387) | func BenchmarkParseID(b *testing.B) { function formatWorkerID (line 398) | func formatWorkerID(workerID int64) string { FILE: go/idgen/wk_id_gen.go type WorkerIDGenerator (line 13) | type WorkerIDGenerator struct method GenerateWorkerID (line 22) | func (w *WorkerIDGenerator) GenerateWorkerID() (int64, error) { method fromEnv (line 47) | func (w *WorkerIDGenerator) fromEnv() (int64, bool) { method fromIP (line 65) | func (w *WorkerIDGenerator) fromIP() (int64, bool) { method fromMAC (line 86) | func (w *WorkerIDGenerator) fromMAC() (int64, bool) { method fromHostname (line 110) | func (w *WorkerIDGenerator) fromHostname() (int64, bool) { method GetMachineInfo (line 123) | func (w *WorkerIDGenerator) GetMachineInfo() map[string]string { method getIPAddresses (line 153) | func (w *WorkerIDGenerator) getIPAddresses() []string { method getMACAddresses (line 172) | func (w *WorkerIDGenerator) getMACAddresses() []string { function NewWorkerIDGenerator (line 16) | func NewWorkerIDGenerator() *WorkerIDGenerator { function GenerateFromIP (line 189) | func GenerateFromIP(ip string) (int64, error) { function GenerateFromMAC (line 206) | func GenerateFromMAC(mac string) (int64, error) { function GenerateFromString (line 222) | func GenerateFromString(s string) int64 { function AutoGenerator (line 230) | func AutoGenerator() (*Generator, error) { function MustAutoGenerator (line 246) | func MustAutoGenerator() *Generator { FILE: go/idgen/wk_id_gen_test.go function TestGenerateWorkerID (line 9) | func TestGenerateWorkerID(t *testing.T) { function TestFromEnv (line 25) | func TestFromEnv(t *testing.T) { function TestGenerateFromIP (line 62) | func TestGenerateFromIP(t *testing.T) { function TestGenerateFromMAC (line 97) | func TestGenerateFromMAC(t *testing.T) { function TestGenerateFromString (line 131) | func TestGenerateFromString(t *testing.T) { function TestGenerateFromStringConsistency (line 155) | func TestGenerateFromStringConsistency(t *testing.T) { function TestGenerateFromStringUniqueness (line 171) | func TestGenerateFromStringUniqueness(t *testing.T) { function TestAutoGenerator (line 200) | func TestAutoGenerator(t *testing.T) { function TestMustAutoGenerator (line 224) | func TestMustAutoGenerator(t *testing.T) { function TestGetMachineInfo (line 245) | func TestGetMachineInfo(t *testing.T) { function TestWorkerIDRange (line 260) | func TestWorkerIDRange(t *testing.T) { function TestEnvironmentPriority (line 280) | func TestEnvironmentPriority(t *testing.T) { function BenchmarkGenerateWorkerID (line 301) | func BenchmarkGenerateWorkerID(b *testing.B) { function BenchmarkGenerateFromString (line 311) | func BenchmarkGenerateFromString(b *testing.B) { function BenchmarkGenerateFromIP (line 321) | func BenchmarkGenerateFromIP(b *testing.B) { function BenchmarkAutoGenerator (line 331) | func BenchmarkAutoGenerator(b *testing.B) { FILE: go/io/copy.go type Mode (line 37) | type Mode constant Content (line 41) | Content Mode = iota constant Hardlink (line 43) | Hardlink function CopyAll (line 46) | func CopyAll(src, dst string) (err error) { function CopyDir (line 59) | func CopyDir(srcDir, dstDir string, copyMode Mode) (err error) { function CopyRegular (line 77) | func CopyRegular(srcPath, dstPath string, fileInfo os.FileInfo) error { function legacyCopy (line 102) | func legacyCopy(srcFile io.Reader, dstFile io.Writer) error { function CopyFile (line 108) | func CopyFile(src, dst string) (err error) { function copyFileContents (line 169) | func copyFileContents(src, dst string) (err error) { FILE: go/io/copy_darwin.go function CopyPath (line 26) | func CopyPath(srcPath, dstPath string, f os.FileInfo, copyMode Mode) err... function doCopyWithFileClone (line 30) | func doCopyWithFileClone(srcFile, dstFile *os.File) error { function doCopyWithFileRange (line 34) | func doCopyWithFileRange(srcFile, dstFile *os.File, fileinfo os.FileInfo... FILE: go/io/copy_linux.go function CopyPath (line 34) | func CopyPath(srcPath, dstPath string, f os.FileInfo, copyMode Mode) err... function doCopyWithFileClone (line 108) | func doCopyWithFileClone(srcFile, dstFile *os.File) error { function doCopyWithFileRange (line 112) | func doCopyWithFileRange(srcFile, dstFile *os.File, fileinfo os.FileInfo... FILE: go/io/copy_test.go function TestCopyDir (line 41) | func TestCopyDir(t *testing.T) { function TestCopyFile (line 88) | func TestCopyFile(t *testing.T) { function TestCopyAll (line 127) | func TestCopyAll(t *testing.T) { function randomMode (line 154) | func randomMode(baseMode int) os.FileMode { function populateSrcDir (line 161) | func populateSrcDir(t *testing.T, srcDir string, remainingDepth int) { FILE: go/io/io.go function ReadFileLines (line 35) | func ReadFileLines(filepath string) ([]string, error) { function ReadLines (line 53) | func ReadLines(byteArray []byte) []string { function ReadLineAt (line 67) | func ReadLineAt(readIndex int, byteArray []byte) ([]byte, int) { function ReadFile (line 118) | func ReadFile(filePath string) ([]byte, error) { function WriteFile (line 127) | func WriteFile(filePath string, content []byte, appended bool) error { function WriteFileLines (line 148) | func WriteFileLines(filePath string, lines []string, appended bool) (err... function WriteFileLine (line 172) | func WriteFileLine(filePath string, words []string, appended bool) (err ... function WriteLine (line 193) | func WriteLine(buf *bytes.Buffer, words ...string) error { function WriteBytesLine (line 215) | func WriteBytesLine(buf *bytes.Buffer, bytes []byte) error { function WriteBytesAt (line 229) | func WriteBytesAt(filepath string, bytes []byte, offset int64) error { function WriteReader (line 248) | func WriteReader(filepath string, r io.Reader) error { function WriteReaderAt (line 260) | func WriteReaderAt(filepath string, r io.Reader, offset, length int64) e... FILE: go/io/io_test.go function TestWriteFile (line 38) | func TestWriteFile(t *testing.T) { function TestWriteReadLine (line 63) | func TestWriteReadLine(t *testing.T) { function TestWriteReadFileLine (line 109) | func TestWriteReadFileLine(t *testing.T) { function TestWriteFileLines (line 165) | func TestWriteFileLines(t *testing.T) { function TestWriteAtOneThread (line 214) | func TestWriteAtOneThread(t *testing.T) { function TestWriteAtMutilThreads (line 255) | func TestWriteAtMutilThreads(t *testing.T) { function TestWriteReaderAtOneThread (line 300) | func TestWriteReaderAtOneThread(t *testing.T) { FILE: go/math/exp/exp.go constant PRECISION (line 30) | PRECISION = 1e-6 function Max (line 32) | func Max[T constraints.Ordered](s ...T) T { function Min (line 46) | func Min[T constraints.Ordered](s ...T) T { function Value (line 60) | func Value[T constraints.Ordered](v, min, max T) T { function Equal (line 71) | func Equal[T float32 | float64](a, b T) bool { function Sum (line 75) | func Sum[T constraints.Ordered](t ...T) T { FILE: go/math/exp/exp_test.go function TestMax (line 31) | func TestMax(t *testing.T) { function TestEqual (line 61) | func TestEqual(t *testing.T) { FILE: go/math/math.go function CountOne (line 26) | func CountOne[T constraints.Integer](n T) int32 { FILE: go/math/math_test.go function TestCountOne (line 31) | func TestCountOne(t *testing.T) { FILE: go/math/rand/rand.go function Int (line 38) | func Int() int { function Int31n (line 45) | func Int31n(n int32) int32 { function Uint32 (line 52) | func Uint32() uint32 { function Int63n (line 59) | func Int63n(n int64) int64 { function Intn (line 66) | func Intn(n int) int { function Float32 (line 73) | func Float32() float32 { function Float64 (line 80) | func Float64() float64 { function Uint64 (line 87) | func Uint64() uint64 { function Read (line 94) | func Read(p []byte) (n int, err error) { function RangeInt (line 101) | func RangeInt(min, max int) (int, error) { function RangeString (line 109) | func RangeString(n int) string { FILE: go/math/rand/rand_test.go function TestRand (line 36) | func TestRand(t *testing.T) { function TestRangeInt (line 51) | func TestRangeInt(t *testing.T) { function TestRead (line 81) | func TestRead(t *testing.T) { function TestRangeString (line 107) | func TestRangeString(t *testing.T) { FILE: go/net/grpc/example/data.pb.go constant _ (line 20) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 22) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type NowRequest (line 25) | type NowRequest struct method Reset (line 35) | func (x *NowRequest) Reset() { method String (line 42) | func (x *NowRequest) String() string { method ProtoMessage (line 46) | func (*NowRequest) ProtoMessage() {} method ProtoReflect (line 48) | func (x *NowRequest) ProtoReflect() protoreflect.Message { method Descriptor (line 61) | func (*NowRequest) Descriptor() ([]byte, []int) { method GetRequestId (line 65) | func (x *NowRequest) GetRequestId() string { type NowResponse (line 72) | type NowResponse struct method Reset (line 80) | func (x *NowResponse) Reset() { method String (line 87) | func (x *NowResponse) String() string { method ProtoMessage (line 91) | func (*NowResponse) ProtoMessage() {} method ProtoReflect (line 93) | func (x *NowResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 106) | func (*NowResponse) Descriptor() ([]byte, []int) { method GetRequestId (line 110) | func (x *NowResponse) GetRequestId() string { method GetDate (line 117) | func (x *NowResponse) GetDate() string { type NowErrorRequest (line 124) | type NowErrorRequest struct method Reset (line 131) | func (x *NowErrorRequest) Reset() { method String (line 138) | func (x *NowErrorRequest) String() string { method ProtoMessage (line 142) | func (*NowErrorRequest) ProtoMessage() {} method ProtoReflect (line 144) | func (x *NowErrorRequest) ProtoReflect() protoreflect.Message { method Descriptor (line 157) | func (*NowErrorRequest) Descriptor() ([]byte, []int) { method GetRequestId (line 161) | func (x *NowErrorRequest) GetRequestId() string { type NowErrorResponse (line 168) | type NowErrorResponse struct method Reset (line 176) | func (x *NowErrorResponse) Reset() { method String (line 183) | func (x *NowErrorResponse) String() string { method ProtoMessage (line 187) | func (*NowErrorResponse) ProtoMessage() {} method ProtoReflect (line 189) | func (x *NowErrorResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 202) | func (*NowErrorResponse) Descriptor() ([]byte, []int) { method GetRequestId (line 206) | func (x *NowErrorResponse) GetRequestId() string { method GetDate (line 213) | func (x *NowErrorResponse) GetDate() string { constant file_go_net_grpc_example_data_proto_rawDesc (line 222) | file_go_net_grpc_example_data_proto_rawDesc = "" + function file_go_net_grpc_example_data_proto_rawDescGZIP (line 249) | func file_go_net_grpc_example_data_proto_rawDescGZIP() []byte { function init (line 275) | func init() { file_go_net_grpc_example_data_proto_init() } function file_go_net_grpc_example_data_proto_init (line 276) | func file_go_net_grpc_example_data_proto_init() { FILE: go/net/grpc/example/data.repository.go type Repository (line 9) | type Repository struct method Now (line 13) | func (r *Repository) Now(ctx context.Context, req *NowRequest) (resp *... FILE: go/net/grpc/example/data.repository_test.go function TestNow (line 16) | func TestNow(t *testing.T) { FILE: go/net/grpc/example/data_grpc.pb.go constant _ (line 19) | _ = grpc.SupportPackageIsVersion9 constant SeaDateService_Now_FullMethodName (line 22) | SeaDateService_Now_FullMethodName = "/sea.api.seadate.SeaDateServic... constant SeaDateService_NowError_FullMethodName (line 23) | SeaDateService_NowError_FullMethodName = "/sea.api.seadate.SeaDateServic... type SeaDateServiceClient (line 29) | type SeaDateServiceClient interface type seaDateServiceClient (line 35) | type seaDateServiceClient struct method Now (line 43) | func (c *seaDateServiceClient) Now(ctx context.Context, in *NowRequest... method NowError (line 53) | func (c *seaDateServiceClient) NowError(ctx context.Context, in *NowEr... function NewSeaDateServiceClient (line 39) | func NewSeaDateServiceClient(cc grpc.ClientConnInterface) SeaDateService... type SeaDateServiceServer (line 66) | type SeaDateServiceServer interface type UnimplementedSeaDateServiceServer (line 78) | type UnimplementedSeaDateServiceServer struct method Now (line 80) | func (UnimplementedSeaDateServiceServer) Now(context.Context, *NowRequ... method NowError (line 83) | func (UnimplementedSeaDateServiceServer) NowError(context.Context, *No... method mustEmbedUnimplementedSeaDateServiceServer (line 86) | func (UnimplementedSeaDateServiceServer) mustEmbedUnimplementedSeaDate... method testEmbeddedByValue (line 87) | func (UnimplementedSeaDateServiceServer) testEmbeddedByValue() ... type UnsafeSeaDateServiceServer (line 92) | type UnsafeSeaDateServiceServer interface function RegisterSeaDateServiceServer (line 96) | func RegisterSeaDateServiceServer(s grpc.ServiceRegistrar, srv SeaDateSe... function _SeaDateService_Now_Handler (line 107) | func _SeaDateService_Now_Handler(srv interface{}, ctx context.Context, d... function _SeaDateService_NowError_Handler (line 125) | func _SeaDateService_NowError_Handler(srv interface{}, ctx context.Conte... FILE: go/net/grpc/grpc_client.go constant defaultMaxMsgSize (line 38) | defaultMaxMsgSize = math.MaxInt32 constant defaultCallTimeout (line 40) | defaultCallTimeout = 3 * time.Second constant defaultKeepaliveTime (line 42) | defaultKeepaliveTime = 10 * time.Second constant defaultKeepaliveTimeout (line 44) | defaultKeepaliveTimeout = 3 * time.Second type connPoolEntry (line 48) | type connPoolEntry struct type GrpcClient (line 59) | type GrpcClient struct method setDefaults (line 93) | func (g *GrpcClient) setDefaults() { method buildDialOptions (line 109) | func (g *GrpcClient) buildDialOptions() []grpc.DialOption { method Conn (line 121) | func (g *GrpcClient) Conn() *grpc.ClientConn { method CallTimeout (line 126) | func (g *GrpcClient) CallTimeout() time.Duration { method Close (line 131) | func (g *GrpcClient) Close() error { type grpcClientOptions (line 65) | type grpcClientOptions struct function NewGrpcClient (line 77) | func NewGrpcClient(addr string, options ...GrpcClientOption) (*GrpcClien... function ClientDialOptions (line 139) | func ClientDialOptions( function GetGrpcClientConn (line 192) | func GetGrpcClientConn(addr string, opts ...grpc.DialOption) (*grpc.Clie... function isConnAvailable (line 236) | func isConnAvailable(state connectivity.State) bool { function CloseGrpcClientConn (line 246) | func CloseGrpcClientConn(addr string) error { function CloseAllGrpcClientConns (line 259) | func CloseAllGrpcClientConns() error { FILE: go/net/grpc/grpc_client.option.go function WithMaxMsgSize (line 27) | func WithMaxMsgSize(maxMsgSize int) GrpcClientOption { function WithCallTimeout (line 34) | func WithCallTimeout(timeout time.Duration) GrpcClientOption { function WithKeepaliveTime (line 41) | func WithKeepaliveTime(keepaliveTime time.Duration) GrpcClientOption { function WithKeepaliveTimeout (line 48) | func WithKeepaliveTimeout(keepaliveTimeout time.Duration) GrpcClientOpti... function WithDisablePrintMethods (line 55) | func WithDisablePrintMethods(methods ...string) GrpcClientOption { FILE: go/net/grpc/grpc_client.repository.factory.go type FactoryConfigFunc (line 34) | type FactoryConfigFunc type FactoryConfig (line 36) | type FactoryConfig struct method ApplyOptions (line 49) | func (fc *FactoryConfig[T]) ApplyOptions(configFuncs ...FactoryConfigFun... method Validate (line 61) | func (fc FactoryConfig[T]) Validate() error { type Repository (line 69) | type Repository struct method NewConnect (line 84) | func (r *Repository[T]) NewConnect(ctx context.Context) (client T, conn ... method Close (line 105) | func (r *Repository[T]) Close(conn *grpc.ClientConn) (err error) { function newRepository (line 109) | func newRepository[T any](ctx context.Context, fc FactoryConfig[T]) (Rep... type Factory (line 129) | type Factory struct function NewFactory (line 133) | func NewFactory[T any](fc FactoryConfig[T], configFuncs ...FactoryConfig... method NewClient (line 147) | func (f Factory[T]) NewClient(ctx context.Context) (Repository[T], error) { FILE: go/net/grpc/grpc_client.repository.go method Call (line 32) | func (r *Repository[T]) Call(ctx context.Context, f func(ctx context.Con... FILE: go/net/grpc/grpc_client_option.go type GrpcClientOption (line 25) | type GrpcClientOption interface type EmptyGrpcClientOption (line 33) | type EmptyGrpcClientOption struct method apply (line 35) | func (EmptyGrpcClientOption) apply(*GrpcClient) {} type GrpcClientOptionFunc (line 39) | type GrpcClientOptionFunc method apply (line 41) | func (f GrpcClientOptionFunc) apply(do *GrpcClient) { method ApplyOptions (line 45) | func (o *GrpcClient) ApplyOptions(options ...GrpcClientOption) *GrpcClie... FILE: go/net/grpc/grpc_client_test.go function TestGetGrpcClientConn (line 31) | func TestGetGrpcClientConn(t *testing.T) { function TestNewGrpcClient (line 45) | func TestNewGrpcClient(t *testing.T) { FILE: go/net/grpc/grpc_stats.handler.go type statHandler (line 31) | type statHandler struct method TagRPC (line 37) | func (h *statHandler) TagRPC(ctx context.Context, info *stats.RPCTagIn... method HandleRPC (line 42) | func (h *statHandler) HandleRPC(ctx context.Context, s stats.RPCStats) { method TagConn (line 59) | func (s *statHandler) TagConn(ctx context.Context, info *stats.ConnTag... method HandleConn (line 66) | func (s *statHandler) HandleConn(context.Context, stats.ConnStats) { FILE: go/net/grpc/ip.go function GetIPFromContext (line 36) | func GetIPFromContext(ctx context.Context) (net.IP, error) { FILE: go/net/http/clone.go function CloneURLValues (line 33) | func CloneURLValues(v url.Values) url.Values function CloneURL (line 36) | func CloneURL(u *url.URL) *url.URL function CloneMultipartForm (line 39) | func CloneMultipartForm(f *multipart.Form) *multipart.Form function CloneMultipartFileHeader (line 42) | func CloneMultipartFileHeader(fh *multipart.FileHeader) *multipart.FileH... function CloneOrMakeHeader (line 47) | func CloneOrMakeHeader(hdr http.Header) http.Header FILE: go/net/http/example/data.pb.go constant _ (line 19) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 21) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type NowRequest (line 24) | type NowRequest struct method Reset (line 32) | func (x *NowRequest) Reset() { method String (line 41) | func (x *NowRequest) String() string { method ProtoMessage (line 45) | func (*NowRequest) ProtoMessage() {} method ProtoReflect (line 47) | func (x *NowRequest) ProtoReflect() protoreflect.Message { method Descriptor (line 60) | func (*NowRequest) Descriptor() ([]byte, []int) { method GetRequestId (line 64) | func (x *NowRequest) GetRequestId() string { type NowResponse (line 71) | type NowResponse struct method Reset (line 80) | func (x *NowResponse) Reset() { method String (line 89) | func (x *NowResponse) String() string { method ProtoMessage (line 93) | func (*NowResponse) ProtoMessage() {} method ProtoReflect (line 95) | func (x *NowResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 108) | func (*NowResponse) Descriptor() ([]byte, []int) { method GetRequestId (line 112) | func (x *NowResponse) GetRequestId() string { method GetDate (line 119) | func (x *NowResponse) GetDate() string { function file_go_net_grpc_example_data_proto_rawDescGZIP (line 157) | func file_go_net_grpc_example_data_proto_rawDescGZIP() []byte { function init (line 179) | func init() { file_go_net_grpc_example_data_proto_init() } function file_go_net_grpc_example_data_proto_init (line 180) | func file_go_net_grpc_example_data_proto_init() { FILE: go/net/http/example/http_client.repository_test.go function TestNowPbJson (line 13) | func TestNowPbJson(t *testing.T) { function TestNowPb (line 44) | func TestNowPb(t *testing.T) { FILE: go/net/http/http_client.do.go method get (line 33) | func (c *Client) get(ctx context.Context, url string) (*http.Response, e... method post (line 37) | func (c *Client) post(ctx context.Context, url string, contentType strin... method put (line 44) | func (c *Client) put(ctx context.Context, url string, contentType string... method HttpDo (line 51) | func (c *Client) HttpDo(ctx context.Context, method string, url string, ... method Do (line 77) | func (c *Client) Do(ctx context.Context, req *http.Request) (*http.Respo... FILE: go/net/http/http_client.go type Client (line 38) | type Client struct method Get (line 174) | func (c *Client) Get(ctx context.Context, url string) ([]byte, error) { method Post (line 189) | func (c *Client) Post( method Put (line 199) | func (c *Client) Put( method PostJson (line 209) | func (c *Client) PostJson( method PostPb (line 219) | func (c *Client) PostPb( method PostJsonWithAuthorize (line 229) | func (c *Client) PostJsonWithAuthorize( method PostReader (line 240) | func (c *Client) PostReader( method PutReader (line 250) | func (c *Client) PutReader( method HttpReader (line 260) | func (c *Client) HttpReader( method logf (line 284) | func (c *Client) logf(format string, args ...interface{}) { function NewClient (line 86) | func NewClient(options ...ClientOption) (*Client, error) { FILE: go/net/http/http_client.option.go function WithTimeout (line 29) | func WithTimeout(timeout time.Duration) ClientOption { function WithResonseHeaderTimeout (line 35) | func WithResonseHeaderTimeout(responseHeaderTimeout time.Duration) Clien... function WithMaxIdleConns (line 42) | func WithMaxIdleConns(maxIdleConns int) ClientOption { function WithIdleConnTimeout (line 48) | func WithIdleConnTimeout(idleConnTimeout time.Duration) ClientOption { function WithDisableKeepAlives (line 54) | func WithDisableKeepAlives(disableKeepAlives bool) ClientOption { function WithProxyURL (line 61) | func WithProxyURL(proxyURL string) ClientOption { function WithTargetHost (line 69) | func WithTargetHost(target string) ClientOption { function WithProxyHost (line 76) | func WithProxyHost(target string) ClientOption { function WithLogger (line 83) | func WithLogger(l *log.Logger) ClientOption { FILE: go/net/http/http_client.repository.factory.go type FactoryConfigFunc (line 33) | type FactoryConfigFunc type FactoryConfig (line 35) | type FactoryConfig struct method ApplyOptions (line 44) | func (fc *FactoryConfig) ApplyOptions(configFuncs ...FactoryConfigFunc... method Validate (line 56) | func (fc FactoryConfig) Validate() error { type ProtoMessage (line 64) | type ProtoMessage interface type Repository (line 68) | type Repository struct function newRepository (line 79) | func newRepository[REQ any, RESP any](ctx context.Context, fc FactoryCon... type Factory (line 92) | type Factory struct function NewFactory (line 96) | func NewFactory[REQ any, RESP any](fc FactoryConfig, configFuncs ...Fact... method NewClient (line 110) | func (f Factory[REQ, RESP]) NewClient(ctx context.Context) (*Repository[... FILE: go/net/http/http_client.repository.go method PostPbJson (line 36) | func (r *Repository[REQ, RESP]) PostPbJson(ctx context.Context, req *REQ... method PostPbJsonWithUrl (line 40) | func (r *Repository[REQ, RESP]) PostPbJsonWithUrl(ctx context.Context, u... method PostPb (line 94) | func (r *Repository[REQ, RESP]) PostPb(ctx context.Context, req *REQ) (r... FILE: go/net/http/http_client_option.go type ClientOption (line 25) | type ClientOption interface type EmptyClientOption (line 33) | type EmptyClientOption struct method apply (line 35) | func (EmptyClientOption) apply(*Client) {} type ClientOptionFunc (line 39) | type ClientOptionFunc method apply (line 41) | func (f ClientOptionFunc) apply(do *Client) { function _ClientOptionWithDefault (line 46) | func _ClientOptionWithDefault() ClientOption { method ApplyOptions (line 51) | func (o *Client) ApplyOptions(options ...ClientOption) *Client { FILE: go/net/http/http_client_proxy.go function RequestWithTargetHost (line 30) | func RequestWithTargetHost(req *http.Request, target string) error { function NewClientWithTargetHost (line 45) | func NewClientWithTargetHost(target string, opts ...ClientOption) *Client { FILE: go/net/http/http_client_test.go function TestHttpClientGet (line 33) | func TestHttpClientGet(t *testing.T) { function TestHttpClientGetWithProxy (line 67) | func TestHttpClientGetWithProxy(t *testing.T) { function TestHttpClientPost (line 98) | func TestHttpClientPost(t *testing.T) { FILE: go/net/http/http_error.go function ErrorFromHttp (line 29) | func ErrorFromHttp(code int) error { FILE: go/net/http/http_handler_chain.option.go type HandlerChainOption (line 25) | type HandlerChainOption interface type EmptyHandlerChainOption (line 33) | type EmptyHandlerChainOption struct method apply (line 35) | func (EmptyHandlerChainOption) apply(*HandlerChain) {} type HandlerChainOptionFunc (line 39) | type HandlerChainOptionFunc method apply (line 41) | func (f HandlerChainOptionFunc) apply(do *HandlerChain) { function _HandlerChainOptionWithDefault (line 46) | func _HandlerChainOptionWithDefault() HandlerChainOption { method ApplyOptions (line 51) | func (o *HandlerChain) ApplyOptions(options ...HandlerChainOption) *Hand... FILE: go/net/http/http_handler_interceptor.go type HandlerInterceptor (line 30) | type HandlerInterceptor struct function NewHandlerInterceptor (line 35) | func NewHandlerInterceptor(opts ...HandlerInterceptorOption) *HandlerInt... type HandlerChain (line 41) | type HandlerChain struct method WrapH (line 56) | func (c *HandlerChain) WrapH(next http.Handler) http.Handler { function NewHandlerChain (line 49) | func NewHandlerChain(opts ...HandlerChainOption) *HandlerChain { FILE: go/net/http/http_handler_interceptor.option.go type HandlerInterceptorOption (line 25) | type HandlerInterceptorOption interface type EmptyHandlerInterceptorOption (line 33) | type EmptyHandlerInterceptorOption struct method apply (line 35) | func (EmptyHandlerInterceptorOption) apply(*HandlerInterceptor) {} type HandlerInterceptorOptionFunc (line 39) | type HandlerInterceptorOptionFunc method apply (line 41) | func (f HandlerInterceptorOptionFunc) apply(do *HandlerInterceptor) { function _HandlerInterceptorOptionWithDefault (line 46) | func _HandlerInterceptorOptionWithDefault() HandlerInterceptorOption { method ApplyOptions (line 51) | func (o *HandlerInterceptor) ApplyOptions(options ...HandlerInterceptorO... FILE: go/net/http/http_host_context.go type hostContextKey (line 32) | type hostContextKey struct type Host (line 34) | type Host struct function FromContextHost (line 41) | func FromContextHost(ctx context.Context) *Host { function WithContextHost (line 46) | func WithContextHost(ctx context.Context, host *Host) context.Context { function ParseTargetUrl (line 53) | func ParseTargetUrl(host string) (*url.URL, error) { FILE: go/net/http/http_proxy_context.go type proxyContextKey (line 32) | type proxyContextKey struct type Proxy (line 34) | type Proxy struct function FromContextProxy (line 41) | func FromContextProxy(ctx context.Context) *Proxy { function WithContextProxy (line 46) | func WithContextProxy(ctx context.Context, proxy *Proxy) context.Context { function ParseProxyUrl (line 53) | func ParseProxyUrl(proxy string) (*url.URL, error) { FILE: go/net/http/http_request_id.go constant DefaultHTTPRequestIDKey (line 33) | DefaultHTTPRequestIDKey = "X-Request-ID" constant DefaultHTTPTraceIDKey (line 34) | DefaultHTTPTraceIDKey = "X-Traceid" function ExtractRequestIdHTTPAndContext (line 37) | func ExtractRequestIdHTTPAndContext(r *http.Request) string { function ExtractTraceIdHTTPAndContext (line 41) | func ExtractTraceIdHTTPAndContext(r *http.Request) string { function ExtractHTTPAndContext (line 45) | func ExtractHTTPAndContext(r *http.Request, key string) string { function ExtractFromHTTP (line 53) | func ExtractFromHTTP(r *http.Request, key string) string { function SetPairContext (line 98) | func SetPairContext(r *http.Request, key, value string) *http.Request { function SetRequestIdContext (line 105) | func SetRequestIdContext(r *http.Request, requestID string) *http.Request { function SetTraceIdContext (line 109) | func SetTraceIdContext(r *http.Request, traceID string) *http.Request { FILE: go/net/http/http_round_trip.go type RoundTripFunc (line 26) | type RoundTripFunc method RoundTrip (line 28) | func (f RoundTripFunc) RoundTrip(req *http.Request) (resp *http.Respon... FILE: go/net/http/http_transport.host.go function RequestWithContextTargetHost (line 31) | func RequestWithContextTargetHost(req *http.Request, target *Host) *http... function TargetHostFuncFromContext (line 38) | func TargetHostFuncFromContext(req *http.Request) error { function RoundTripperWithTarget (line 67) | func RoundTripperWithTarget(rt http.RoundTripper) http.RoundTripper { FILE: go/net/http/http_transport.proxy.go function RequestWithContextProxy (line 35) | func RequestWithContextProxy(req *http.Request, proxy *Proxy) *http.Requ... function ProxyFuncFromContextOrEnvironment (line 42) | func ProxyFuncFromContextOrEnvironment(req *http.Request) (*url.URL, err... FILE: go/net/http/ip.go function GetIPFromRequest (line 33) | func GetIPFromRequest(r *http.Request) (net.IP, error) { FILE: go/net/http/response_writer.go type ResponseWriterWrapper (line 31) | type ResponseWriterWrapper struct method Write (line 44) | func (rww *ResponseWriterWrapper) Write(buf []byte) (int, error) { method Header (line 50) | func (rww *ResponseWriterWrapper) Header() http.Header { method WriteHeader (line 55) | func (rww *ResponseWriterWrapper) WriteHeader(statusCode int) { method BodyBytes (line 62) | func (rww *ResponseWriterWrapper) BodyBytes() []byte { method StatusCode (line 67) | func (rww *ResponseWriterWrapper) StatusCode() int { method String (line 72) | func (rww *ResponseWriterWrapper) String() string { function NewResponseWriterWrapper (line 37) | func NewResponseWriterWrapper(w http.ResponseWriter) *ResponseWriterWrap... FILE: go/net/ip.go function scoreAddr (line 44) | func scoreAddr(iface net.Interface, addr net.Addr) (int, net.IP) { function GetHostIP (line 69) | func GetHostIP() (net.IP, error) { function GetLocalFirstIP (line 101) | func GetLocalFirstIP() (string, error) { function GetLocalIPs (line 113) | func GetLocalIPs() ([]string, error) { function GetLocalAddrs (line 130) | func GetLocalAddrs() ([]*net.IPNet, error) { function IsIPv4 (line 148) | func IsIPv4(netIP net.IP) bool { function IsIPv4String (line 152) | func IsIPv4String(ip string) bool { function LookupHostIPv4 (line 157) | func LookupHostIPv4(host string) (addrs []string, err error) { function LookupHostIPv4WithContext (line 161) | func LookupHostIPv4WithContext(ctx context.Context, host string) (addrs ... function SplitHostIntPort (line 177) | func SplitHostIntPort(s string) (string, int, error) { function ParseTarget (line 198) | func ParseTarget(target, defaultPort string) (host, port string, err err... function GetServerName (line 227) | func GetServerName() string { function GetServerId (line 237) | func GetServerId() uint32 { FILE: go/net/ip_test.go function TestGetLocalAddrs (line 32) | func TestGetLocalAddrs(t *testing.T) { function TestGetLocalIPs (line 41) | func TestGetLocalIPs(t *testing.T) { function TestGetLocalFirstIP (line 50) | func TestGetLocalFirstIP(t *testing.T) { function TestGetHostIP (line 59) | func TestGetHostIP(t *testing.T) { function TestIsIPv4String (line 68) | func TestIsIPv4String(t *testing.T) { function TestLookupHost (line 74) | func TestLookupHost(t *testing.T) { function TestLookupHostIPv4 (line 83) | func TestLookupHostIPv4(t *testing.T) { function TestGetServerName (line 92) | func TestGetServerName(t *testing.T) { FILE: go/net/mac.go function GetLocalFirstMac (line 29) | func GetLocalFirstMac() (string, error) { function GetLocalMacs (line 51) | func GetLocalMacs() ([]string, error) { FILE: go/net/mac_test.go function TestGetLocalMacs (line 30) | func TestGetLocalMacs(t *testing.T) { function TestGetLocalFirstMac (line 39) | func TestGetLocalFirstMac(t *testing.T) { FILE: go/net/parse.go function ParseIP (line 31) | func ParseIP(s string) net.IP { function parseIPv4 (line 44) | func parseIPv4(s string) net.IP { function parseIPv6 (line 83) | func parseIPv6(s string) (ip net.IP) { constant big (line 184) | big = 0xFFFFFF function dtoi (line 188) | func dtoi(s string) (n int, i int, ok bool) { function xtoi (line 204) | func xtoi(s string) (n int, i int, ok bool) { FILE: go/net/resolver/build.go type Address (line 35) | type Address struct type State (line 54) | type State struct type ClientConn (line 66) | type ClientConn interface type ResolverBuildOptions (line 75) | type ResolverBuildOptions struct type Builder (line 96) | type Builder interface FILE: go/net/resolver/build.option.go function WithBuildDialer (line 29) | func WithBuildDialer(dialer func(context.Context, string) (net.Conn, err... FILE: go/net/resolver/build_option.go type ResolverBuildOption (line 25) | type ResolverBuildOption interface type EmptyResolverBuildOption (line 33) | type EmptyResolverBuildOption struct method apply (line 35) | func (EmptyResolverBuildOption) apply(*ResolverBuildOptions) {} type ResolverBuildOptionFunc (line 39) | type ResolverBuildOptionFunc method apply (line 41) | func (f ResolverBuildOptionFunc) apply(do *ResolverBuildOptions) { function _ResolverBuildOptionWithDefault (line 46) | func _ResolverBuildOptionWithDefault() ResolverBuildOption { method ApplyOptions (line 51) | func (o *ResolverBuildOptions) ApplyOptions(options ...ResolverBuildOpti... FILE: go/net/resolver/dns/dns_resolver.go function init (line 48) | func init() { constant defaultPort (line 53) | defaultPort = "443" constant defaultDNSSvrPort (line 54) | defaultDNSSvrPort = "53" function NewBuilder (line 86) | func NewBuilder(opts ...dnsBuilderOption) resolver.Builder { type dnsBuilder (line 96) | type dnsBuilder struct method Build (line 103) | func (b *dnsBuilder) Build(target resolver.Target, opts ...resolver.Re... method Scheme (line 150) | func (b *dnsBuilder) Scheme() string { type netResolver (line 154) | type netResolver interface type deadResolver (line 161) | type deadResolver struct method ResolveOne (line 165) | func (d deadResolver) ResolveOne(opts ...resolver.ResolveOneOption) (r... method ResolveAll (line 185) | func (d deadResolver) ResolveAll(opts ...resolver.ResolveAllOption) ([... method ResolveNow (line 217) | func (deadResolver) ResolveNow(opts ...resolver.ResolveNowOption) {} method Close (line 219) | func (deadResolver) Close() {} type dnsResolver (line 222) | type dnsResolver struct method ResolveOne (line 242) | func (d *dnsResolver) ResolveOne(opts ...resolver.ResolveOneOption) (r... method ResolveAll (line 262) | func (d *dnsResolver) ResolveAll(opts ...resolver.ResolveAllOption) ([... method ResolveNow (line 300) | func (d *dnsResolver) ResolveNow(opts ...resolver.ResolveNowOption) { method Close (line 308) | func (d *dnsResolver) Close() { method watcher (line 313) | func (d *dnsResolver) watcher() { method lookupSRV (line 354) | func (d *dnsResolver) lookupSRV() ([]resolver.Address, error) { method lookupHost (line 400) | func (d *dnsResolver) lookupHost() ([]resolver.Address, error) { function handleDNSError (line 387) | func handleDNSError(err error, lookupType string) error { function formatIP (line 421) | func formatIP(addr string) (addrIP string, ok bool) { FILE: go/net/resolver/dns/dns_resolver_builder.option.go function WithSyncInterval (line 28) | func WithSyncInterval(syncInterval time.Duration) dnsBuilderOption { FILE: go/net/resolver/dns/dns_resolver_builder_option.go type dnsBuilderOption (line 25) | type dnsBuilderOption interface type EmptydnsBuilderOption (line 33) | type EmptydnsBuilderOption struct method apply (line 35) | func (EmptydnsBuilderOption) apply(*dnsBuilder) {} type dnsBuilderOptionFunc (line 39) | type dnsBuilderOptionFunc method apply (line 41) | func (f dnsBuilderOptionFunc) apply(do *dnsBuilder) { function _dnsBuilderOptionWithDefault (line 46) | func _dnsBuilderOptionWithDefault() dnsBuilderOption { method ApplyOptions (line 51) | func (o *dnsBuilder) ApplyOptions(options ...dnsBuilderOption) *dnsBuild... FILE: go/net/resolver/passthrough/passthrough.go constant scheme (line 28) | scheme = "passthrough" type passthroughBuilder (line 30) | type passthroughBuilder struct method Build (line 32) | func (*passthroughBuilder) Build(target resolver.Target, opts ...resol... method Scheme (line 41) | func (*passthroughBuilder) Scheme() string { type passthroughResolver (line 45) | type passthroughResolver struct method ResolveOne (line 49) | func (r *passthroughResolver) ResolveOne(opts ...resolver.ResolveOneOp... method ResolveAll (line 53) | func (r *passthroughResolver) ResolveAll(opts ...resolver.ResolveAllOp... method ResolveNow (line 57) | func (r *passthroughResolver) ResolveNow(opts ...resolver.ResolveNowOp... method Close (line 59) | func (*passthroughResolver) Close() {} function init (line 61) | func init() { FILE: go/net/resolver/register.reslover.go function Register (line 41) | func Register(b Builder) { function Get (line 57) | func Get(scheme string) Builder { function GetDefault (line 67) | func GetDefault() Builder { function getResolver (line 77) | func getResolver(target string) Resolver { function setResolver (line 87) | func setResolver(target string, r Resolver) { function SetDefaultScheme (line 106) | func SetDefaultScheme(scheme string) { function GetDefaultScheme (line 111) | func GetDefaultScheme() string { FILE: go/net/resolver/resolve.all.option.go function WithIPTypeForResolveAll (line 24) | func WithIPTypeForResolveAll(ipType Resolver_IPType) ResolveAllOptionFunc { FILE: go/net/resolver/resolve.all_option.go type ResolveAllOption (line 25) | type ResolveAllOption interface type EmptyResolveAllOption (line 33) | type EmptyResolveAllOption struct method apply (line 35) | func (EmptyResolveAllOption) apply(*ResolveAllOptions) {} type ResolveAllOptionFunc (line 39) | type ResolveAllOptionFunc method apply (line 41) | func (f ResolveAllOptionFunc) apply(do *ResolveAllOptions) { function _ResolveAllOptionWithDefault (line 46) | func _ResolveAllOptionWithDefault() ResolveAllOption { method ApplyOptions (line 51) | func (o *ResolveAllOptions) ApplyOptions(options ...ResolveAllOption) *R... FILE: go/net/resolver/resolve.now_option.go type ResolveNowOption (line 25) | type ResolveNowOption interface type EmptyResolveNowOption (line 33) | type EmptyResolveNowOption struct method apply (line 35) | func (EmptyResolveNowOption) apply(*ResolveNowOptions) {} type ResolveNowOptionFunc (line 39) | type ResolveNowOptionFunc method apply (line 41) | func (f ResolveNowOptionFunc) apply(do *ResolveNowOptions) { function _ResolveNowOptionWithDefault (line 46) | func _ResolveNowOptionWithDefault() ResolveNowOption { method ApplyOptions (line 51) | func (o *ResolveNowOptions) ApplyOptions(options ...ResolveNowOption) *R... FILE: go/net/resolver/resolve.one.option.go function WithPickMode (line 24) | func WithPickMode(mode Resolver_PickMode) ResolveOneOptionFunc { function WithIPTypeForResolverOne (line 30) | func WithIPTypeForResolverOne(ipType Resolver_IPType) ResolveOneOptionFu... FILE: go/net/resolver/resolve.one_option.go type ResolveOneOption (line 25) | type ResolveOneOption interface type EmptyResolveOneOption (line 33) | type EmptyResolveOneOption struct method apply (line 35) | func (EmptyResolveOneOption) apply(*ResolveOneOptions) {} type ResolveOneOptionFunc (line 39) | type ResolveOneOptionFunc method apply (line 41) | func (f ResolveOneOptionFunc) apply(do *ResolveOneOptions) { function _ResolveOneOptionWithDefault (line 46) | func _ResolveOneOptionWithDefault() ResolveOneOption { method ApplyOptions (line 51) | func (o *ResolveOneOptions) ApplyOptions(options ...ResolveOneOption) *R... FILE: go/net/resolver/resolve/resolve.go function ResolveOne (line 33) | func ResolveOne(ctx context.Context, target string, opts ...resolver.Res... function ResolveAll (line 41) | func ResolveAll(ctx context.Context, target string, opts ...resolver.Res... FILE: go/net/resolver/resolver.go type ResolveNowOptions (line 31) | type ResolveNowOptions struct type Resolver (line 35) | type Resolver interface type Resolver_PickMode (line 50) | type Resolver_PickMode constant Resolver_pick_mode_random (line 53) | Resolver_pick_mode_random Resolver_PickMode = 0 constant Resolver_pick_mode_first (line 54) | Resolver_pick_mode_first Resolver_PickMode = 1 type Resolver_IPType (line 57) | type Resolver_IPType constant Resolver_ip_type_all (line 60) | Resolver_ip_type_all Resolver_IPType = 0 constant Resolver_ip_type_v4 (line 61) | Resolver_ip_type_v4 Resolver_IPType = 1 constant Resolver_ip_type_v6 (line 62) | Resolver_ip_type_v6 Resolver_IPType = 2 type ResolveOneOptions (line 65) | type ResolveOneOptions struct type ResolveAllOptions (line 70) | type ResolveAllOptions struct function GetResolver (line 74) | func GetResolver(ctx context.Context, target string, opts ...ResolverBui... FILE: go/net/resolver/resolver_test.go function TestResolveOne (line 37) | func TestResolveOne(t *testing.T) { function TestResolveAll (line 81) | func TestResolveAll(t *testing.T) { FILE: go/net/resolver/target.go type Target (line 46) | type Target struct function ParseTarget (line 57) | func ParseTarget(target string) (Target, error) { FILE: go/net/resolver/unix/unix.go constant unixScheme (line 30) | unixScheme = "unix" constant unixAbstractScheme (line 31) | unixAbstractScheme = "unix-abstract" type builder (line 33) | type builder struct method Build (line 37) | func (b *builder) Build(target resolver.Target, opts ...resolver.Resol... method Scheme (line 55) | func (b *builder) Scheme() string { type nopResolver (line 59) | type nopResolver struct method ResolveOne (line 63) | func (*nopResolver) ResolveOne(opts ...resolver.ResolveOneOption) (res... method ResolveAll (line 67) | func (*nopResolver) ResolveAll(opts ...resolver.ResolveAllOption) ([]r... method ResolveNow (line 71) | func (*nopResolver) ResolveNow(opts ...resolver.ResolveNowOption) {} method Close (line 73) | func (*nopResolver) Close() {} function init (line 75) | func init() { FILE: go/net/url/url.go type Client (line 33) | type Client struct method Encode (line 52) | func (c *Client) Encode(data interface{}) (string, error) { method encode (line 71) | func (c *Client) encode(rv reflect.Value) (string, error) { method build (line 80) | func (c *Client) build( method appendKeyValue (line 157) | func (c *Client) appendKeyValue(key string, rv reflect.Value, parentKi... function New (line 43) | func New(ctx context.Context, options ...ClientOption) (*Client, error) { function isEmptyValue (line 181) | func isEmptyValue(v reflect.Value) bool { function repackArrayQueryKey (line 205) | func repackArrayQueryKey(key string) string { FILE: go/net/url/url.resolve.go function ResolveWithTarget (line 31) | func ResolveWithTarget(ctx context.Context, u *url.URL, target string) (... FILE: go/net/url/url_codec.go type UrlCodec (line 26) | type UrlCodec interface type DefaultUrlCodec (line 32) | type DefaultUrlCodec struct method Escape (line 34) | func (u DefaultUrlCodec) Escape(s string) string { method UnEscape (line 38) | func (u DefaultUrlCodec) UnEscape(s string) (string, error) { FILE: go/net/url/url_option.go type ClientOption (line 25) | type ClientOption interface type EmptyClientOption (line 33) | type EmptyClientOption struct method apply (line 35) | func (EmptyClientOption) apply(*Client) {} type ClientOptionFunc (line 39) | type ClientOptionFunc method apply (line 41) | func (f ClientOptionFunc) apply(do *Client) { function _ClientOptionWithDefault (line 46) | func _ClientOptionWithDefault() ClientOption { method ApplyOptions (line 51) | func (o *Client) ApplyOptions(options ...ClientOption) *Client { FILE: go/net/url/url_test.go function TestUrlEncode (line 32) | func TestUrlEncode(t *testing.T) { FILE: go/net/url/value.go type Value (line 54) | type Value interface type boolValue (line 59) | type boolValue struct method Encode (line 61) | func (e boolValue) Encode(value reflect.Value) string { type intValue (line 68) | type intValue struct method Encode (line 70) | func (e intValue) Encode(value reflect.Value) string { type uintValue (line 74) | type uintValue struct method Encode (line 76) | func (e uintValue) Encode(value reflect.Value) string { type floatValue (line 80) | type floatValue struct method Encode (line 82) | func (e floatValue) Encode(value reflect.Value) string { type stringValue (line 86) | type stringValue struct method Encode (line 88) | func (e stringValue) Encode(value reflect.Value) string { function getEncoder (line 92) | func getEncoder(kind reflect.Kind) Value { FILE: go/os/env.go function GetEnvAsStringOrFallback (line 34) | func GetEnvAsStringOrFallback(key, defaultValue string) string { function GetEnvAsIntOrFallback (line 43) | func GetEnvAsIntOrFallback(key string, defaultValue int) (int, error) { function GetEnvAsFloat64OrFallback (line 56) | func GetEnvAsFloat64OrFallback(key string, defaultValue float64) (float6... FILE: go/os/env_test.go function TestGetEnvAsStringOrFallback (line 33) | func TestGetEnvAsStringOrFallback(t *testing.T) { function TestUUID (line 49) | func TestUUID(t *testing.T) { function TestGetEnvAsIntOrFallback (line 54) | func TestGetEnvAsIntOrFallback(t *testing.T) { function TestGetEnvAsFloat64OrFallback (line 90) | func TestGetEnvAsFloat64OrFallback(t *testing.T) { FILE: go/os/exec/exec.go type CommandBuilder (line 35) | type CommandBuilder struct method Exec (line 53) | func (c *CommandBuilder) Exec(cmdName string, function NewCommandBuilder (line 43) | func NewCommandBuilder( function Exec (line 60) | func Exec( FILE: go/os/exec/exec.options.go function WithTimeout (line 27) | func WithTimeout(timeout time.Duration) CommandBuilderOption { FILE: go/os/exec/exec_options.go type CommandBuilderOption (line 26) | type CommandBuilderOption interface type EmptyCommandBuilderOption (line 34) | type EmptyCommandBuilderOption struct method apply (line 36) | func (EmptyCommandBuilderOption) apply(*CommandBuilder) {} type CommandBuilderOptionFunc (line 40) | type CommandBuilderOptionFunc method apply (line 42) | func (f CommandBuilderOptionFunc) apply(do *CommandBuilder) { function _CommandBuilderOptionWithDefault (line 47) | func _CommandBuilderOptionWithDefault() CommandBuilderOption { method ApplyOptions (line 53) | func (o *CommandBuilder) ApplyOptions( FILE: go/os/exec/exec_test.go function TestExec (line 32) | func TestExec(t *testing.T) { function TestExecTimeout (line 42) | func TestExecTimeout(t *testing.T) { FILE: go/os/file.go function PathExist (line 31) | func PathExist(path string) (bool, error) { function IsDir (line 43) | func IsDir(path string) (bool, error) { function IsHidden (line 52) | func IsHidden(path string) (bool, error) { function MakeDirAll (line 75) | func MakeDirAll(name string) error { function MakeDir (line 79) | func MakeDir(name string) error { function MakeTempDirAll (line 85) | func MakeTempDirAll(name, pattern string) (string, error) { function OpenAll (line 97) | func OpenAll(path string, flag int, perm os.FileMode) (*os.File, error) { function OpenFile (line 118) | func OpenFile(path string, appended bool) (file *os.File, err error) { function SameFile (line 130) | func SameFile(fi1, fi2 string) bool { function SymLink (line 144) | func SymLink(oldname, newname string) error { function ReadDirNames (line 197) | func ReadDirNames(path string, filterHiddenFile bool) ([]string, error) { function ReadDirSubDirNames (line 230) | func ReadDirSubDirNames(path string, filterHiddenFile bool) ([]string, e... function ReadDirFileNames (line 249) | func ReadDirFileNames(path string, filterHiddenFile bool) ([]string, err... FILE: go/os/file_test.go function TestOpenAll (line 37) | func TestOpenAll(t *testing.T) { function TestSameFile (line 70) | func TestSameFile(t *testing.T) { function TestSymLink (line 98) | func TestSymLink(t *testing.T) { function TestPath (line 128) | func TestPath(t *testing.T) { function TestReadDirNames (line 139) | func TestReadDirNames(t *testing.T) { function TestReadSubDirs (line 150) | func TestReadSubDirs(t *testing.T) { function TestReadDirFileNames (line 160) | func TestReadDirFileNames(t *testing.T) { function TestMakeTempDirAll (line 171) | func TestMakeTempDirAll(t *testing.T) { FILE: go/os/getwd.go function Getwd (line 26) | func Getwd() (string, error) { FILE: go/os/getwd_test.go function TestGetwd (line 31) | func TestGetwd(t *testing.T) { FILE: go/os/proc.go function GetPidsByName (line 35) | func GetPidsByName( function GetProcIdWithRand (line 62) | func GetProcIdWithRand() string { function GetProcId (line 67) | func GetProcId() string { FILE: go/os/proc_darwin.go function ExistPid (line 27) | func ExistPid(pid int) bool { FILE: go/os/proc_linux.go function ExistPid (line 31) | func ExistPid(pid int) bool { FILE: go/os/proc_test.go function TestGetPidsByName (line 31) | func TestGetPidsByName(t *testing.T) { function TestExistPid (line 41) | func TestExistPid(t *testing.T) { FILE: go/os/remove_file.go function RemoveBatch (line 31) | func RemoveBatch(filenames []string) error { function RemoveWithGlob (line 43) | func RemoveWithGlob(pattern string) error { FILE: go/os/term/term.go function TerminalSize (line 34) | func TerminalSize(w io.Writer) (int, int, error) { FILE: go/os/value.go function GetValueOrFallback (line 3) | func GetValueOrFallback[T comparable](v, defaultValue T) T { FILE: go/os/value_test.go function TestGetOrFallback (line 31) | func TestGetOrFallback(t *testing.T) { FILE: go/path/filepath/match.go function Glob (line 29) | func Glob(pattern string) (matches []string, err error) { FILE: go/path/filepath/path.go function GetParentRelPath (line 29) | func GetParentRelPath(filePath string) string { function GetParentRelDir (line 35) | func GetParentRelDir(filePath string) string { function LastChar (line 40) | func LastChar(str string) uint8 { function JoinPaths (line 50) | func JoinPaths(rootPath, relativePath string) (string, error) { function CanonicalizePath (line 69) | func CanonicalizePath(path string) (string, error) { FILE: go/path/filepath/path_test.go function TestGetParentRelPath (line 33) | func TestGetParentRelPath(t *testing.T) { function TestAbsPath (line 58) | func TestAbsPath(t *testing.T) { function TestJoinPaths (line 85) | func TestJoinPaths(t *testing.T) { FILE: go/reflect/array.go function ArrayAllTagsVaules (line 28) | func ArrayAllTagsVaules(req interface{}, key string) []map[string]interf... FILE: go/reflect/array_test.go function TestPointerStructArrayAllTagsValues (line 30) | func TestPointerStructArrayAllTagsValues(t *testing.T) { function TestStructArrayAllTagsValues (line 52) | func TestStructArrayAllTagsValues(t *testing.T) { FILE: go/reflect/error.go type ErrUnsupportedType (line 27) | type ErrUnsupportedType struct method Error (line 37) | func (e ErrUnsupportedType) Error() string { function NewErrUnsupportedType (line 32) | func NewErrUnsupportedType(valueType string) ErrUnsupportedType { FILE: go/reflect/id.go type IdRetriever (line 29) | type IdRetriever interface function RetrieveId (line 33) | func RetrieveId(req interface{}, key string) string { function TrySetId (line 46) | func TrySetId(req interface{}, key, id string) { FILE: go/reflect/struct.go function indirectStruct (line 36) | func indirectStruct(req interface{}) (reflect.Value, bool) { function RetrieveStructField (line 51) | func RetrieveStructField(req interface{}, name string) string { function TrySetStructFiled (line 70) | func TrySetStructFiled(req interface{}, name, value string) { function AllFieldTags (line 86) | func AllFieldTags(req interface{}, key string) []string { function NonzeroFieldTags (line 92) | func NonzeroFieldTags(req interface{}, key string) []string { function fieldTags (line 99) | func fieldTags(req interface{}, key string, nonzero bool) []string { function AllTagsValues (line 111) | func AllTagsValues(req interface{}, key string) map[string]interface{} { function fieldTagsValues (line 118) | func fieldTagsValues(req interface{}, key string, nonzero bool) map[stri... FILE: go/reflect/struct_test.go function TestRetrieveStructField (line 32) | func TestRetrieveStructField(t *testing.T) { function TestTrySetStructField (line 48) | func TestTrySetStructField(t *testing.T) { function TestNonzeroFieldTags (line 64) | func TestNonzeroFieldTags(t *testing.T) { function TestAllFieldTags (line 80) | func TestAllFieldTags(t *testing.T) { function TestAllTagsValues (line 96) | func TestAllTagsValues(t *testing.T) { FILE: go/reflect/truncate.go constant DefaultTruncateThreshold (line 32) | DefaultTruncateThreshold = 1024 constant DefaultTruncatePrefix (line 34) | DefaultTruncatePrefix = 10 constant MaxTruncateDepth (line 36) | MaxTruncateDepth = 32 function TruncateBytes (line 39) | func TruncateBytes(v interface{}) interface{} { function TruncateBytesWithThreshold (line 44) | func TruncateBytesWithThreshold(v interface{}, threshold, prefix int) in... function TruncateBytesAndStrings (line 52) | func TruncateBytesAndStrings(v interface{}) interface{} { function TruncateBytesAndStringsWithThreshold (line 57) | func TruncateBytesAndStringsWithThreshold(v interface{}, threshold, pref... function Truncate (line 69) | func Truncate(v interface{}, f func(v interface{}) bool, threshold, pref... function truncate (line 78) | func truncate(v reflect.Value, f func(v interface{}) bool, threshold, pr... function truncateToLen (line 139) | func truncateToLen(oldValue reflect.Value, threshold, prefix int) { function writeBytesLenToReflectValue (line 163) | func writeBytesLenToReflectValue(v reflect.Value, data []byte, prefix in... function writeStringLenToReflectValue (line 181) | func writeStringLenToReflectValue(v reflect.Value, data string, prefix i... function min (line 193) | func min(a, b int) int { FILE: go/reflect/truncate_test.go function TestTruncateBytes (line 35) | func TestTruncateBytes(t *testing.T) { function TestTruncateBytesWithMaxArraySize (line 152) | func TestTruncateBytesWithMaxArraySize(t *testing.T) { function TestTruncateBytesWithThreshold (line 199) | func TestTruncateBytesWithThreshold(t *testing.T) { function TestTruncateBytesAndStrings (line 244) | func TestTruncateBytesAndStrings(t *testing.T) { function TestTruncateWithMap (line 335) | func TestTruncateWithMap(t *testing.T) { function TestTruncateWithCircularLikeStruct (line 390) | func TestTruncateWithCircularLikeStruct(t *testing.T) { FILE: go/reflect/value.go function IsZeroValue (line 76) | func IsZeroValue(v reflect.Value) bool { function ReflectValue (line 118) | func ReflectValue(valueType string, value interface{}) (reflect.Value, e... function reflectValue (line 130) | func reflectValue(valueType string, value interface{}) (reflect.Value, e... function getBoolValue (line 195) | func getBoolValue(theType string, value interface{}) (bool, error) { function getIntValue (line 204) | func getIntValue(theType string, value interface{}) (int64, error) { function getUintValue (line 237) | func getUintValue(theType string, value interface{}) (uint64, error) { function getFloatValue (line 275) | func getFloatValue(theType string, value interface{}) (float64, error) { function getStringValue (line 295) | func getStringValue(theType string, value interface{}) (string, error) { FILE: go/reflect/value_test.go function TestReflectValue (line 30) | func TestReflectValue(t *testing.T) { FILE: go/runtime/extern.go function GetCallerWithSkip (line 33) | func GetCallerWithSkip(skip int) string { function GetCaller (line 43) | func GetCaller() string { function GetShortCaller (line 48) | func GetShortCaller() string { function GetCallStackTrace (line 53) | func GetCallStackTrace() string { FILE: go/runtime/extern_test.go function TestGetCaller (line 30) | func TestGetCaller(t *testing.T) { FILE: go/runtime/function.go function NameOfFunction (line 29) | func NameOfFunction(f interface{}) string { FILE: go/runtime/function_test.go function testA (line 32) | func testA(a int) int { function TestNameOfFunction (line 36) | func TestNameOfFunction(t *testing.T) { FILE: go/runtime/goroutine.go function GoroutineID (line 36) | func GoroutineID() uint64 { function parseUintBytes (line 63) | func parseUintBytes(s []byte, base int, bitSize int) (n uint64, err erro... function cutoff64 (line 150) | func cutoff64(base int) uint64 { FILE: go/runtime/marshaler/jsonpb.marshaler.go type JSONPb (line 33) | type JSONPb struct method Marshal (line 90) | func (j *JSONPb) Marshal(v interface{}) ([]byte, error) { method MarshaToStructpb (line 94) | func (j *JSONPb) MarshaToStructpb(v interface{}) (*structpb.Struct, er... function NewDefaultJSONPb (line 45) | func NewDefaultJSONPb() *JSONPb { function NewJSONPb (line 63) | func NewJSONPb(options ...JSONPbOption) *JSONPb { FILE: go/runtime/marshaler/jsonpb.marshaler.option.go function WithUseProtoNames (line 24) | func WithUseProtoNames(useProtoNames bool) JSONPbOption { function WithUseEnumNumbers (line 30) | func WithUseEnumNumbers(useEnumNumbers bool) JSONPbOption { function WithEmitUnpopulated (line 36) | func WithEmitUnpopulated(emitUnpopulated bool) JSONPbOption { function WithDiscardUnknown (line 42) | func WithDiscardUnknown(discardUnknown bool) JSONPbOption { function WithIndent (line 48) | func WithIndent(indent string) JSONPbOption { function WithAllowPartial (line 54) | func WithAllowPartial(allowPartial bool) JSONPbOption { FILE: go/runtime/marshaler/jsonpb.marshaler_option.go type JSONPbOption (line 25) | type JSONPbOption interface type EmptyJSONPbOption (line 33) | type EmptyJSONPbOption struct method apply (line 35) | func (EmptyJSONPbOption) apply(*JSONPb) {} type JSONPbOptionFunc (line 39) | type JSONPbOptionFunc method apply (line 41) | func (f JSONPbOptionFunc) apply(do *JSONPb) { function _JSONPbOptionWithDefault (line 46) | func _JSONPbOptionWithDefault() JSONPbOption { method ApplyOptions (line 51) | func (o *JSONPb) ApplyOptions(options ...JSONPbOption) *JSONPb { FILE: go/runtime/marshaler/proto.marshaler.go type ProtoMarshaller (line 30) | type ProtoMarshaller struct method ContentType (line 35) | func (*ProtoMarshaller) ContentType(_ interface{}) string { FILE: go/runtime/meta.data.go function GetMetadata (line 30) | func GetMetadata(ctx context.Context, key string) []string { FILE: go/runtime/panic.go function Recover (line 36) | func Recover() { function logPanic (line 45) | func logPanic(r interface{}) { function RecoverFromPanic (line 67) | func RecoverFromPanic(err *error) { function Must (line 81) | func Must(err error) { FILE: go/runtime/panic_test.go function TestRecover (line 30) | func TestRecover(t *testing.T) { function testRecoverFromPanic (line 35) | func testRecoverFromPanic() (err error) { function TestRecoverFromPanic (line 40) | func TestRecoverFromPanic(t *testing.T) { FILE: go/runtime/stack.go function FormatStack (line 33) | func FormatStack() ([]byte, error) { type prettyStack (line 38) | type prettyStack struct method parse (line 41) | func (s prettyStack) parse(debugStack []byte) ([]byte, error) { method decorateLine (line 82) | func (s prettyStack) decorateLine(line string, num int) (string, error) { method decorateFuncCallLine (line 97) | func (s prettyStack) decorateFuncCallLine(line string, num int) (strin... method decorateSourceLine (line 132) | func (s prettyStack) decorateSourceLine(line string, num int) (string,... FILE: go/slices/slices.go function Unique (line 29) | func Unique[S ~[]E, E comparable](s S) S { function SliceIntersection (line 38) | func SliceIntersection[S ~[]E, E comparable](s1, s2 S) S { function SliceDifference (line 56) | func SliceDifference[S ~[]E, E comparable](s1, s2 S) S { function SliceWithCondition (line 75) | func SliceWithCondition[S ~[]E, E comparable](s1 S, cond func(e E) bool)... function FirstOrDefaultZero (line 91) | func FirstOrDefaultZero[S ~[]E, E comparable](s S) E { function RemoveEmpty (line 103) | func RemoveEmpty[S ~[]E, E comparable](s S) S { FILE: go/slices/slices_test.go function TestSliceIntersection (line 10) | func TestSliceIntersection(t *testing.T) { function TestSliceDifference (line 42) | func TestSliceDifference(t *testing.T) { function TestRemoveEmpty (line 68) | func TestRemoveEmpty(t *testing.T) { function TestFirstOrDefaultZero (line 88) | func TestFirstOrDefaultZero(t *testing.T) { FILE: go/strconv/atoi.go function ParseUintOrFallback (line 28) | func ParseUintOrFallback(s string, base int, bitSize int, defaultValue u... function ParseInt64Batch (line 37) | func ParseInt64Batch(m map[string]string) (map[string]int64, error) { FILE: go/strconv/atoi_test.go function TestParseInt64Batch (line 32) | func TestParseInt64Batch(t *testing.T) { FILE: go/strconv/atonum.go function ToFloat (line 29) | func ToFloat(str string) (float64, error) { function ToInt (line 33) | func ToInt(str string) (int, error) { function ToInt64 (line 37) | func ToInt64(str string) (int64, error) { function ToUInt64 (line 41) | func ToUInt64(str string) (uint64, error) { function ParseNumOrDefault (line 45) | func ParseNumOrDefault[T any](str string, _default T, convert func(strin... function ParseNum (line 57) | func ParseNum[T any](str string, convert func(string) (T, error)) (T, er... function ParseNums (line 65) | func ParseNums[T any](strs []string, convert func(string) (T, error)) ([... FILE: go/strconv/atonum_test.go function TestParseNumOrDefault (line 31) | func TestParseNumOrDefault(t *testing.T) { function TestParseNum (line 53) | func TestParseNum(t *testing.T) { function TestParseNums (line 81) | func TestParseNums(t *testing.T) { FILE: go/strings/string_slice.go function SliceUnique (line 30) | func SliceUnique(s ...string) []string { function SliceIntersection (line 39) | func SliceIntersection(s1 []string, s2 []string) []string { function SliceDifference (line 60) | func SliceDifference(s1 []string, s2 []string) []string { function SliceWithCondition (line 82) | func SliceWithCondition(s1 []string, cond func(s2 string) bool) []string { function RemoveEmpty (line 101) | func RemoveEmpty(s []string) []string { function SliceContainsCaseInSensitive (line 113) | func SliceContainsCaseInSensitive(list []string, target string) bool { function SliceContains (line 117) | func SliceContains(list []string, target string, caseSensitive bool) bool { function Filter (line 157) | func Filter(ss []string, cond func(string) bool) []string { FILE: go/strings/string_slice_test.go function TestStringIntersection (line 32) | func TestStringIntersection(t *testing.T) { function TestSliceDifference (line 64) | func TestSliceDifference(t *testing.T) { function TestRemoveEmpty (line 90) | func TestRemoveEmpty(t *testing.T) { function TestSliceContains (line 110) | func TestSliceContains(t *testing.T) { function TestFilter (line 140) | func TestFilter(t *testing.T) { FILE: go/strings/strings.go function GetStringOrFallback (line 32) | func GetStringOrFallback(values ...string) string { function Replace (line 93) | func Replace(s string, old string, news []interface{}, useQuote bool, n ... function ReplaceAll (line 133) | func ReplaceAll(s, old string, news []interface{}, useQuote bool) string { function SplitOmitEmpty (line 147) | func SplitOmitEmpty(s, sep string) []string { function Split2 (line 161) | func Split2(s, sep string) (string, string, bool) { function SplitToNums (line 169) | func SplitToNums[T any](s, sep string, convert func(string) (T, error)) ... function EqualCaseInsensitive (line 174) | func EqualCaseInsensitive(src, dst string) bool { function EmptyString (line 178) | func EmptyString(str string) bool { FILE: go/strings/strings_test.go function TestReplace (line 34) | func TestReplace(t *testing.T) { function TestReplaceAll (line 69) | func TestReplaceAll(t *testing.T) { function TestSplit (line 101) | func TestSplit(t *testing.T) { function TestSplitToNums (line 131) | func TestSplitToNums(t *testing.T) { function TestGetStringOrFallback (line 165) | func TestGetStringOrFallback(t *testing.T) { function TestLastIndex (line 202) | func TestLastIndex(t *testing.T) { FILE: go/sync/atomic/file_lock.go type FileLock (line 33) | type FileLock method TryLock (line 35) | func (m *FileLock) TryLock() error { method TryUnLock (line 61) | func (m *FileLock) TryUnLock() error { FILE: go/sync/atomic/file_lock_test.go function TestTryLock (line 31) | func TestTryLock(t *testing.T) { FILE: go/sync/cond.go type Cond (line 34) | type Cond struct method wait (line 49) | func (c *Cond) wait() { method waitFor (line 57) | func (c *Cond) waitFor(timeout time.Duration) error { method WaitForDo (line 70) | func (c *Cond) WaitForDo(timeout time.Duration, pred func() bool, do f... method WaitUntil (line 90) | func (c *Cond) WaitUntil(pred func() bool) { method WaitUntilDo (line 95) | func (c *Cond) WaitUntilDo(pred func() bool, do func() error) { method SignalDo (line 106) | func (c *Cond) SignalDo(do func() error) { method BroadcastDo (line 116) | func (c *Cond) BroadcastDo(do func() error) { method Signal (line 126) | func (c *Cond) Signal() { method Broadcast (line 136) | func (c *Cond) Broadcast() { function NewCond (line 41) | func NewCond(l sync.Locker) *Cond { type copyChecker (line 145) | type copyChecker method check (line 147) | func (c *copyChecker) check() { type noCopy (line 160) | type noCopy struct method Lock (line 163) | func (*noCopy) Lock() {} method Unlock (line 164) | func (*noCopy) Unlock() {} FILE: go/sync/cond_test.go function TestWaitForDo (line 34) | func TestWaitForDo(t *testing.T) { function TestWaitUntilDo (line 76) | func TestWaitUntilDo(t *testing.T) { function TestBroadCast (line 114) | func TestBroadCast(t *testing.T) { FILE: go/syscall/disk.go type DiskUsage (line 28) | type DiskUsage struct method Free (line 45) | func (du *DiskUsage) Free() uint64 { method Avail (line 50) | func (du *DiskUsage) Avail() uint64 { method Size (line 55) | func (du *DiskUsage) Size() uint64 { method Used (line 60) | func (du *DiskUsage) Used() uint64 { method Usage (line 70) | func (du *DiskUsage) Usage() float32 { function NewDiskUsage (line 34) | func NewDiskUsage(path string) (*DiskUsage, error) { FILE: go/syscall/disk_test.go function TestDiskUsage (line 32) | func TestDiskUsage(t *testing.T) { FILE: go/syscall/memory_darwin.go type MemoryUsage (line 3) | type MemoryUsage struct method SysTotalMemory (line 6) | func (m MemoryUsage) SysTotalMemory() uint64 { method SysFreeMemory (line 10) | func (m MemoryUsage) SysFreeMemory() uint64 { method SysUsageMemory (line 14) | func (m MemoryUsage) SysUsageMemory() float64 { FILE: go/syscall/memory_linux.go type MemoryUsage (line 29) | type MemoryUsage struct method SysTotalMemory (line 32) | func (m MemoryUsage) SysTotalMemory() uint64 { method SysFreeMemory (line 42) | func (m MemoryUsage) SysFreeMemory() uint64 { FILE: go/syscall/memory_linux_test.go function TestSysTotalMemory (line 32) | func TestSysTotalMemory(t *testing.T) { FILE: go/syscall/rlimit.go function SetNumFiles (line 32) | func SetNumFiles(maxOpenFiles uint64) error { function GetNumFiles (line 36) | func GetNumFiles() (uint64, uint64, error) { function SetMaxNumFiles (line 53) | func SetMaxNumFiles() (uint64, error) { FILE: go/syscall/rlimit_test.go function TestGetNumFiles (line 30) | func TestGetNumFiles(t *testing.T) { function TestSetMaxNumFiles (line 40) | func TestSetMaxNumFiles(t *testing.T) { FILE: go/syscall/syscall.go function KillBatch (line 30) | func KillBatch(pids []int, sig syscall.Signal) (errorPids []int, err err... FILE: go/time/backoff.go type Backoff (line 26) | type Backoff interface FILE: go/time/exponential_backoff.go constant DefaultInitialInterval (line 31) | DefaultInitialInterval = 500 * time.Millisecond constant DefaultRandomizationFactor (line 32) | DefaultRandomizationFactor = 0.5 constant DefaultMultiplier (line 34) | DefaultMultiplier = 1.5 constant DefaultMaxInterval (line 35) | DefaultMaxInterval = 60 * time.Second constant DefaultMinInterval (line 36) | DefaultMinInterval = DefaultInitialInterval constant DefaultMaxElapsedTime (line 37) | DefaultMaxElapsedTime = 15 * time.Minute constant DefaultMaxElapsedCount (line 38) | DefaultMaxElapsedCount = -1 type ExponentialBackOff (line 41) | type ExponentialBackOff struct method Reset (line 76) | func (b *ExponentialBackOff) Reset() { method ResetWithInterval (line 81) | func (b *ExponentialBackOff) ResetWithInterval(initialInterval time.Du... method GetCurrentInterval (line 86) | func (b *ExponentialBackOff) GetCurrentInterval() time.Duration { method PreBackOff (line 93) | func (b *ExponentialBackOff) PreBackOff() (time.Duration, bool) { method NextBackOff (line 107) | func (b *ExponentialBackOff) NextBackOff() (time.Duration, bool) { method GetElapsedTime (line 120) | func (b *ExponentialBackOff) GetElapsedTime() time.Duration { method MaxElapsedTime (line 124) | func (b *ExponentialBackOff) MaxElapsedTime() time.Duration { method validateAndGetNextInterval (line 128) | func (b *ExponentialBackOff) validateAndGetNextInterval() (time.Durati... method incrementCurrentInterval (line 144) | func (b *ExponentialBackOff) incrementCurrentInterval() { method decrementCurrentInterval (line 159) | func (b *ExponentialBackOff) decrementCurrentInterval() { function NewExponentialBackOff (line 61) | func NewExponentialBackOff(opts ...ExponentialBackOffOption) *Exponentia... function getRandomValueFromInterval (line 175) | func getRandomValueFromInterval( FILE: go/time/exponential_backoff.options.go function WithExponentialBackOffOptionInitialInterval (line 26) | func WithExponentialBackOffOptionInitialInterval(initialInterval time.Du... function WithExponentialBackOffOptionRandomizationFactor (line 32) | func WithExponentialBackOffOptionRandomizationFactor(randomizationFactor... function WithExponentialBackOffOptionMultiplier (line 38) | func WithExponentialBackOffOptionMultiplier(multiplier float64) Exponent... function WithExponentialBackOffOptionMaxInterval (line 44) | func WithExponentialBackOffOptionMaxInterval(maxInterval time.Duration) ... function WithExponentialBackOffOptionMinInterval (line 50) | func WithExponentialBackOffOptionMinInterval(minInterval time.Duration) ... function WithExponentialBackOffOptionMaxElapsedTime (line 56) | func WithExponentialBackOffOptionMaxElapsedTime(maxElapsedTime time.Dura... function WithExponentialBackOffOptionMaxElapsedCount (line 62) | func WithExponentialBackOffOptionMaxElapsedCount(maxElapsedCount int) Ex... FILE: go/time/exponential_backoff_options.go type ExponentialBackOffOption (line 25) | type ExponentialBackOffOption interface type EmptyExponentialBackOffOption (line 33) | type EmptyExponentialBackOffOption struct method apply (line 35) | func (EmptyExponentialBackOffOption) apply(*ExponentialBackOff) {} type ExponentialBackOffOptionFunc (line 39) | type ExponentialBackOffOptionFunc method apply (line 41) | func (f ExponentialBackOffOptionFunc) apply(do *ExponentialBackOff) { function _ExponentialBackOffOptionWithDefault (line 46) | func _ExponentialBackOffOptionWithDefault() ExponentialBackOffOption { method ApplyOptions (line 51) | func (o *ExponentialBackOff) ApplyOptions(options ...ExponentialBackOffO... FILE: go/time/exponential_backoff_test.go function TestExponentialBackOff (line 32) | func TestExponentialBackOff(t *testing.T) { function TestExponentialBackOffMaxElaspedTimeFailOver (line 69) | func TestExponentialBackOffMaxElaspedTimeFailOver(t *testing.T) { function TestDescExponentialBackOff (line 105) | func TestDescExponentialBackOff(t *testing.T) { FILE: go/time/exponentialbackeoff_syncmap.go type ExponentialBackOffMap (line 28) | type ExponentialBackOffMap method Load (line 42) | func (m *ExponentialBackOffMap) Load(key string) (ExponentialBackOff, ... method Store (line 51) | func (m *ExponentialBackOffMap) Store(key string, value ExponentialBac... method LoadOrStore (line 58) | func (m *ExponentialBackOffMap) LoadOrStore(key string, value Exponent... method LoadAndDelete (line 68) | func (m *ExponentialBackOffMap) LoadAndDelete(key string) (value Expon... method Delete (line 77) | func (m *ExponentialBackOffMap) Delete(key string) { method Range (line 91) | func (m *ExponentialBackOffMap) Range(f func(key string, value Exponen... function _ (line 31) | func _() { FILE: go/time/rate/rate.go type Limiter (line 32) | type Limiter struct method Burst (line 55) | func (lim *Limiter) Burst() int { method Tokens (line 62) | func (lim *Limiter) Tokens() int { method Bursting (line 67) | func (lim *Limiter) Bursting() int { method Allow (line 74) | func (lim *Limiter) Allow() bool { method AllowN (line 84) | func (lim *Limiter) AllowN(n int) bool { method AllowWaitUntil (line 109) | func (lim *Limiter) AllowWaitUntil() bool { method AllowFor (line 117) | func (lim *Limiter) AllowFor(timeout time.Duration) bool { method AllowContext (line 134) | func (lim *Limiter) AllowContext(ctx context.Context) error { method Put (line 144) | func (lim *Limiter) Put() { method PutN (line 149) | func (lim *Limiter) PutN(n int) { method WaitFor (line 160) | func (lim *Limiter) WaitFor(timeout time.Duration) error { method WaitN (line 165) | func (lim *Limiter) WaitN(timeout time.Duration, n int) error { method WaitContext (line 209) | func (lim *Limiter) WaitContext(ctx context.Context) error { method WaitNContext (line 214) | func (lim *Limiter) WaitNContext(ctx context.Context, n int) error { method SetBurst (line 241) | func (lim *Limiter) SetBurst(newBurst int) { function NewLimiter (line 39) | func NewLimiter(b int) *Limiter { FILE: go/time/rate/rate_method.go type MethodLimiter (line 32) | type MethodLimiter struct method AddLimiter (line 47) | func (m *MethodLimiter) AddLimiter(method string, limiter *Limiter) er... method Allow (line 64) | func (m *MethodLimiter) Allow(method string) bool { method AllowFor (line 76) | func (m *MethodLimiter) AllowFor(method string, timeout time.Duration)... method Put (line 88) | func (m *MethodLimiter) Put(method string) { function NewMethodLimiter (line 38) | func NewMethodLimiter(burst int) *MethodLimiter { FILE: go/time/rate/rate_qps.go type QPSLimiter (line 32) | type QPSLimiter struct method SetQPS (line 53) | func (l *QPSLimiter) SetQPS(qps float64) { method SetBurst (line 60) | func (l *QPSLimiter) SetBurst(burst int) { method QPS (line 70) | func (l *QPSLimiter) QPS() float64 { method Burst (line 77) | func (l *QPSLimiter) Burst() int { method Tokens (line 84) | func (l *QPSLimiter) Tokens() float64 { method refillTokens (line 93) | func (l *QPSLimiter) refillTokens() { method Allow (line 108) | func (l *QPSLimiter) Allow() bool { method AllowN (line 115) | func (l *QPSLimiter) AllowN(n int) bool { method Wait (line 129) | func (l *QPSLimiter) Wait(ctx context.Context) error { method WaitN (line 134) | func (l *QPSLimiter) WaitN(ctx context.Context, n int) error { method AllowFor (line 178) | func (l *QPSLimiter) AllowFor(timeout time.Duration) bool { method Put (line 192) | func (l *QPSLimiter) Put() { method Reserve (line 197) | func (l *QPSLimiter) Reserve() *QPSReservation { method ReserveN (line 202) | func (l *QPSLimiter) ReserveN(n int) *QPSReservation { function NewQPSLimiter (line 43) | func NewQPSLimiter(qps float64, burst int) *QPSLimiter { type QPSReservation (line 232) | type QPSReservation struct method OK (line 240) | func (r *QPSReservation) OK() bool { method Delay (line 245) | func (r *QPSReservation) Delay() time.Duration { method Cancel (line 254) | func (r *QPSReservation) Cancel() { FILE: go/time/rate/rate_qps_method.go type MethodQPSLimiter (line 32) | type MethodQPSLimiter struct method AddMethod (line 66) | func (m *MethodQPSLimiter) AddMethod(method string, qps float64, burst... method SetMethodQPS (line 90) | func (m *MethodQPSLimiter) SetMethodQPS(method string, qps float64, bu... method RemoveMethod (line 115) | func (m *MethodQPSLimiter) RemoveMethod(method string) { method SetGlobalQPS (line 122) | func (m *MethodQPSLimiter) SetGlobalQPS(qps float64, burst int) { method getLimiter (line 129) | func (m *MethodQPSLimiter) getLimiter(method string) *QPSLimiter { method Allow (line 141) | func (m *MethodQPSLimiter) Allow(method string) bool { method AllowN (line 146) | func (m *MethodQPSLimiter) AllowN(method string, n int) bool { method AllowFor (line 151) | func (m *MethodQPSLimiter) AllowFor(method string, timeout time.Durati... method Wait (line 156) | func (m *MethodQPSLimiter) Wait(ctx context.Context, method string) er... method WaitN (line 161) | func (m *MethodQPSLimiter) WaitN(ctx context.Context, method string, n... method Put (line 166) | func (m *MethodQPSLimiter) Put(method string) { method GetMethodQPS (line 172) | func (m *MethodQPSLimiter) GetMethodQPS(method string) (qps float64, b... method ListMethods (line 183) | func (m *MethodQPSLimiter) ListMethods() []string { method Stats (line 202) | func (m *MethodQPSLimiter) Stats() []MethodQPSStats { type MethodQPSConfig (line 39) | type MethodQPSConfig struct function NewMethodQPSLimiter (line 47) | func NewMethodQPSLimiter(defaultQPS float64, defaultBurst int) *MethodQP... function NewMethodQPSLimiterWithConfigs (line 55) | func NewMethodQPSLimiterWithConfigs(defaultQPS float64, defaultBurst int... type MethodQPSStats (line 195) | type MethodQPSStats struct FILE: go/time/rate/rate_qps_test.go function TestQPSLimiter_Allow (line 34) | func TestQPSLimiter_Allow(t *testing.T) { function TestQPSLimiter_Wait (line 59) | func TestQPSLimiter_Wait(t *testing.T) { function TestQPSLimiter_WaitTimeout (line 83) | func TestQPSLimiter_WaitTimeout(t *testing.T) { function TestQPSLimiter_Concurrent (line 99) | func TestQPSLimiter_Concurrent(t *testing.T) { function TestMethodQPSLimiter_DifferentMethods (line 127) | func TestMethodQPSLimiter_DifferentMethods(t *testing.T) { function TestMethodQPSLimiter_SetMethodQPS (line 173) | func TestMethodQPSLimiter_SetMethodQPS(t *testing.T) { function TestMethodQPSLimiter_Stats (line 197) | func TestMethodQPSLimiter_Stats(t *testing.T) { function TestMethodQPSLimiter_WithConfigs (line 223) | func TestMethodQPSLimiter_WithConfigs(t *testing.T) { function BenchmarkQPSLimiter_Allow (line 255) | func BenchmarkQPSLimiter_Allow(b *testing.B) { function BenchmarkMethodQPSLimiter_Allow (line 266) | func BenchmarkMethodQPSLimiter_Allow(b *testing.B) { FILE: go/time/rate/rate_test.go function TestLimitAllow (line 34) | func TestLimitAllow(t *testing.T) { function TestLimitAllowFor (line 82) | func TestLimitAllowFor(t *testing.T) { FILE: go/time/time.go constant DayFormat (line 27) | DayFormat = "20060102" constant TimeMillFormat (line 28) | TimeMillFormat = "20060102150405.000" constant ShortTimeFormat (line 29) | ShortTimeFormat = "20060102150405" constant ShortDashTimeFormat (line 30) | ShortDashTimeFormat = "2006-01-02-15:04:05" constant DefaultTimeFormat (line 31) | DefaultTimeFormat = "2006-01-02 15:04:05" constant DefaultTimeMillFormat (line 32) | DefaultTimeMillFormat = "2006-01-02 15:04:05.000" function Now (line 35) | func Now() time.Time { function NowString (line 40) | func NowString(layout string) string { function BeginningOfDay (line 49) | func BeginningOfDay(days int) time.Time { function BeginningOfDayString (line 56) | func BeginningOfDayString(days int, layout string) string { function EndOfDay (line 67) | func EndOfDay(days int) time.Time { function EndOfDayString (line 74) | func EndOfDayString(days int, layout string) string { function TruncateToUTC (line 104) | func TruncateToUTC(t time.Time, d time.Duration) time.Time { function TruncateToUTCString (line 124) | func TruncateToUTCString(t time.Time, d time.Duration, layout string) st... FILE: go/time/time_counter.go type TimeCounter (line 30) | type TimeCounter struct method Tick (line 48) | func (t *TimeCounter) Tick(msg string) { method Elapse (line 55) | func (t *TimeCounter) Elapse() time.Duration { method String (line 67) | func (t *TimeCounter) String() string { method Summary (line 80) | func (t *TimeCounter) Summary(f func(idx int, msg string, cost time.Du... method Reset (line 97) | func (t *TimeCounter) Reset() { function New (line 36) | func New(effect bool) *TimeCounter { FILE: go/time/time_counter_test.go function TestAll (line 32) | func TestAll(t *testing.T) { FILE: go/time/time_test.go function TestNowString (line 31) | func TestNowString(t *testing.T) { function TestBeginningOfDayString (line 36) | func TestBeginningOfDayString(t *testing.T) { function TestEndOfDayString (line 41) | func TestEndOfDayString(t *testing.T) { function TestTruncateToUTCString (line 46) | func TestTruncateToUTCString(t *testing.T) { function TestNowFormat (line 55) | func TestNowFormat(t *testing.T) { FILE: go/time/wait.go function UntilWithContxt (line 41) | func UntilWithContxt( function JitterUntilWithContext (line 47) | func JitterUntilWithContext( function RetryWithContext (line 65) | func RetryWithContext( function BackOffUntilWithContext (line 83) | func BackOffUntilWithContext( function CallWithTimeout (line 157) | func CallWithTimeout(ctx context.Context, timeout time.Duration, f func(... FILE: go/time/wait_test.go function TestBackOffUntilWithContext (line 33) | func TestBackOffUntilWithContext(t *testing.T) { function TestRetryWithContext (line 107) | func TestRetryWithContext(t *testing.T) { FILE: go/unsafe/unsafe.go function BytesPointer (line 26) | func BytesPointer(data []byte) unsafe.Pointer { FILE: go/utils/compare.go type Comparable (line 29) | type Comparable interface type Comparator (line 33) | type Comparator interface function CheckComparableTypes (line 37) | func CheckComparableTypes(objs ...interface{}) bool { function CheckComparableType (line 47) | func CheckComparableType(a interface{}) bool { function Equal (line 59) | func Equal(a, b interface{}) (bool, error) { function DeepEqual (line 84) | func DeepEqual(a, b interface{}) bool { function Compare (line 88) | func Compare(a, b interface{}, compare Comparator) int { FILE: go/utils/generics_get.go function GetValueOrFallback (line 24) | func GetValueOrFallback[T comparable] (v, defaultValue T) T { function Pointer (line 33) | func Pointer[T any](v T) *T { FILE: go/utils/generics_get_test.go function TestGetValueOrFallback (line 30) | func TestGetValueOrFallback(t *testing.T) { FILE: pkg/binlog/binlog.archive.go constant ArchiveTaskScheme (line 36) | ArchiveTaskScheme = "ArchiveTaskTask" type ArchiveTaskArgs (line 39) | type ArchiveTaskArgs struct type ArchiveTask (line 44) | type ArchiveTask struct method Scheme (line 48) | func (t ArchiveTask) Scheme() string { method TaskHandler (line 52) | func (t ArchiveTask) TaskHandler(ctx context.Context, msg *queue_.Mess... FILE: pkg/binlog/binlog.go type MessageDecoderFunc (line 44) | type MessageDecoderFunc type MessageKeyDecodeFunc (line 45) | type MessageKeyDecodeFunc type BinlogOptions (line 47) | type BinlogOptions struct type Channel (line 63) | type Channel struct type BinlogService (line 67) | type BinlogService struct method rotateCallback (line 121) | func (srv *BinlogService) rotateCallback(ctx context.Context, path str... method logger (line 155) | func (srv *BinlogService) logger() logrus.FieldLogger { method Run (line 159) | func (srv *BinlogService) Run(ctx context.Context) error { method work (line 172) | func (srv *BinlogService) work(ctx context.Context, msgCh <-chan *ds_.... method flush (line 277) | func (srv *BinlogService) flush(ctx context.Context, consumer mq_.Cons... method Serve (line 299) | func (srv *BinlogService) Serve(ctx context.Context) error { method Shutdown (line 331) | func (srv *BinlogService) Shutdown() { function defaultBinlogServiceOptions (line 81) | func defaultBinlogServiceOptions() BinlogOptions { function NewBinlogService (line 99) | func NewBinlogService(dataStore ds_.DataStore, taskq *taskq_.Pool, consu... FILE: pkg/binlog/binlog.option.go function WitRootPath (line 26) | func WitRootPath(rootPath string) BinlogServiceOption { function WithPrefixName (line 32) | func WithPrefixName(prefixName string) BinlogServiceOption { function WithSufffixName (line 38) | func WithSufffixName(suffixName string) BinlogServiceOption { function WithFlushBatchSize (line 44) | func WithFlushBatchSize(batch int) BinlogServiceOption { function WithFlushInterval (line 50) | func WithFlushInterval(flushInterval time.Duration) BinlogServiceOption { function WithRotateInterval (line 56) | func WithRotateInterval(rotateInterval time.Duration) BinlogServiceOption { function WithRotateSize (line 62) | func WithRotateSize(rotateSize int64) BinlogServiceOption { function WithMessageDecoderFunc (line 68) | func WithMessageDecoderFunc(f MessageDecoderFunc) BinlogServiceOption { function WithMessageKeyDecodeFunc (line 74) | func WithMessageKeyDecodeFunc(f MessageKeyDecodeFunc) BinlogServiceOption { FILE: pkg/binlog/binlog.pb.go constant _ (line 19) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 21) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type BinlogType (line 24) | type BinlogType method Enum (line 43) | func (x BinlogType) Enum() *BinlogType { method String (line 49) | func (x BinlogType) String() string { method Descriptor (line 53) | func (BinlogType) Descriptor() protoreflect.EnumDescriptor { method Type (line 57) | func (BinlogType) Type() protoreflect.EnumType { method Number (line 61) | func (x BinlogType) Number() protoreflect.EnumNumber { method EnumDescriptor (line 66) | func (BinlogType) EnumDescriptor() ([]byte, []int) { constant BinlogType_BinlogType_DB (line 27) | BinlogType_BinlogType_DB BinlogType = 0 constant BinlogType_BinlogType_File (line 28) | BinlogType_BinlogType_File BinlogType = 1 type Binlog (line 70) | type Binlog struct method Reset (line 84) | func (x *Binlog) Reset() { method String (line 93) | func (x *Binlog) String() string { method ProtoMessage (line 97) | func (*Binlog) ProtoMessage() {} method ProtoReflect (line 99) | func (x *Binlog) ProtoReflect() protoreflect.Message { method Descriptor (line 112) | func (*Binlog) Descriptor() ([]byte, []int) { method GetEnabled (line 116) | func (x *Binlog) GetEnabled() bool { method GetBinlogType (line 123) | func (x *Binlog) GetBinlogType() BinlogType { method GetFlushBatchSize (line 130) | func (x *Binlog) GetFlushBatchSize() int64 { method GetMaxFlushInterval (line 137) | func (x *Binlog) GetMaxFlushInterval() *duration.Duration { method GetFlushTimeout (line 144) | func (x *Binlog) GetFlushTimeout() *duration.Duration { method GetDbLog (line 151) | func (x *Binlog) GetDbLog() *Binlog_DBLog { method GetFileLog (line 158) | func (x *Binlog) GetFileLog() *Binlog_FileLog { type Binlog_DBLog (line 165) | type Binlog_DBLog struct method Reset (line 171) | func (x *Binlog_DBLog) Reset() { method String (line 180) | func (x *Binlog_DBLog) String() string { method ProtoMessage (line 184) | func (*Binlog_DBLog) ProtoMessage() {} method ProtoReflect (line 186) | func (x *Binlog_DBLog) ProtoReflect() protoreflect.Message { method Descriptor (line 199) | func (*Binlog_DBLog) Descriptor() ([]byte, []int) { type Binlog_FileLog (line 203) | type Binlog_FileLog struct method Reset (line 215) | func (x *Binlog_FileLog) Reset() { method String (line 224) | func (x *Binlog_FileLog) String() string { method ProtoMessage (line 228) | func (*Binlog_FileLog) ProtoMessage() {} method ProtoReflect (line 230) | func (x *Binlog_FileLog) ProtoReflect() protoreflect.Message { method Descriptor (line 243) | func (*Binlog_FileLog) Descriptor() ([]byte, []int) { method GetFilepath (line 247) | func (x *Binlog_FileLog) GetFilepath() string { method GetMaxAge (line 254) | func (x *Binlog_FileLog) GetMaxAge() *duration.Duration { method GetMaxCount (line 261) | func (x *Binlog_FileLog) GetMaxCount() int64 { method GetRotateInterval (line 268) | func (x *Binlog_FileLog) GetRotateInterval() *duration.Duration { method GetRotateSize (line 275) | func (x *Binlog_FileLog) GetRotateSize() int64 { function file_pkg_binlog_binlog_proto_rawDescGZIP (line 342) | func file_pkg_binlog_binlog_proto_rawDescGZIP() []byte { function init (line 373) | func init() { file_pkg_binlog_binlog_proto_init() } function file_pkg_binlog_binlog_proto_init (line 374) | func file_pkg_binlog_binlog_proto_init() { FILE: pkg/binlog/binlog_option.go type BinlogServiceOption (line 25) | type BinlogServiceOption interface type EmptyBinlogServiceOption (line 33) | type EmptyBinlogServiceOption struct method apply (line 35) | func (EmptyBinlogServiceOption) apply(*BinlogService) {} type BinlogServiceOptionFunc (line 39) | type BinlogServiceOptionFunc method apply (line 41) | func (f BinlogServiceOptionFunc) apply(do *BinlogService) { function _BinlogServiceOptionWithDefault (line 46) | func _BinlogServiceOptionWithDefault() BinlogServiceOption { method ApplyOptions (line 51) | func (o *BinlogService) ApplyOptions(options ...BinlogServiceOption) *Bi... FILE: pkg/binlog/binlog_test.go type TaskTable (line 43) | type TaskTable struct function TestProducer (line 61) | func TestProducer(t *testing.T) { function TestNewBinlog (line 114) | func TestNewBinlog(t *testing.T) { FILE: pkg/binlog/config.go type Config (line 40) | type Config struct method Complete (line 121) | func (c *Config) Complete() CompletedConfig { method loadViper (line 133) | func (c *Config) loadViper() error { type completedConfig (line 48) | type completedConfig struct method New (line 58) | func (c *completedConfig) New(ctx context.Context, taskq *taskq_.Pool,... method install (line 80) | func (c *completedConfig) install(ctx context.Context, taskq *taskq_.P... type CompletedConfig (line 53) | type CompletedConfig struct function NewConfig (line 141) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/binlog/config.option.go function WithViper (line 28) | func WithViper(v *viper.Viper) ConfigOption { FILE: pkg/binlog/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/binlog/datastore/data.store.go type DataStore (line 28) | type DataStore interface FILE: pkg/binlog/datastore/dbstore/db.store.go type DBDataStore (line 35) | type DBDataStore struct method WriteData (line 51) | func (s *DBDataStore) WriteData(ctx context.Context, arg interface{}, ... function NewDBDataStore (line 41) | func NewDBDataStore(db *sqlx.DB) (*DBDataStore, error) { FILE: pkg/binlog/datastore/filestore/file.store.go type FileDataStore (line 36) | type FileDataStore struct method WriteData (line 57) | func (s *FileDataStore) WriteData(ctx context.Context, arg interface{}... method getOrCreate (line 67) | func (s *FileDataStore) getOrCreate(ctx context.Context, key string) *... function NewFileDataStore (line 44) | func NewFileDataStore(filedir string, options ...rotate_.RotateFilerOpti... FILE: pkg/binlog/datastore/message.go type MessageKey (line 29) | type MessageKey struct method Equual (line 38) | func (m MessageKey) Equual(s MessageKey) bool { type Message (line 56) | type Message struct type MsgType (line 61) | type MsgType constant MsgType_Insert (line 64) | MsgType_Insert MsgType = 0 constant MsgType_Delete (line 65) | MsgType_Delete MsgType = 1 constant MsgType_Update (line 66) | MsgType_Update MsgType = 2 constant MsgType_Get (line 67) | MsgType_Get MsgType = 3 FILE: pkg/config/config.go type Config (line 33) | type Config struct type completedConfig (line 42) | type completedConfig struct type CompletedConfig (line 48) | type CompletedConfig struct method Validate (line 54) | func (c *completedConfig[T]) Validate() error { method Complete (line 59) | func (c *Config[T]) Complete() CompletedConfig[T] { method loadViper (line 76) | func (c *Config[T]) loadViper() error { method New (line 84) | func (c completedConfig[T]) New() (T, error) { function NewConfig (line 93) | func NewConfig[T proto.Message](value T, options ...ConfigOption[T]) *Co... FILE: pkg/config/config.option.go function WithViper (line 29) | func WithViper[T proto.Message](v *viper.Viper) ConfigOption[T] { FILE: pkg/config/config_option.go type ConfigOption (line 27) | type ConfigOption interface type EmptyConfigOption (line 35) | type EmptyConfigOption struct method apply (line 37) | func (EmptyConfigOption[T]) apply(*Config[T]) {} type ConfigOptionFunc (line 41) | type ConfigOptionFunc method apply (line 43) | func (f ConfigOptionFunc[T]) apply(do *Config[T]) { function _ConfigOptionWithDefault (line 48) | func _ConfigOptionWithDefault[T proto.Message]() ConfigOption[T] { method ApplyOptions (line 53) | func (o *Config[T]) ApplyOptions(options ...ConfigOption[T]) *Config[T] { FILE: pkg/crontab/config.go type Config (line 34) | type Config struct method Complete (line 89) | func (c *Config) Complete() CompletedConfig { method loadViper (line 101) | func (c *Config) loadViper() error { type completedConfig (line 44) | type completedConfig struct method New (line 55) | func (c *completedConfig) New(ctx context.Context) (*CrontabSerivce, e... method install (line 76) | func (c *completedConfig) install(ctx context.Context) (*CrontabSerivc... method Validate (line 83) | func (c *completedConfig) Validate() error { type CompletedConfig (line 50) | type CompletedConfig struct function NewConfig (line 110) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/crontab/config.option.go function WithViper (line 28) | func WithViper(v *viper.Viper) ConfigOption { FILE: pkg/crontab/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/crontab/crontab.go type CrontabSerivce (line 39) | type CrontabSerivce struct method Register (line 59) | func (c *CrontabSerivce) Register(f func(context.Context, *logrus.Entr... method Run (line 64) | func (c *CrontabSerivce) Run(ctx context.Context) error { method Serve (line 78) | func (c *CrontabSerivce) Serve(ctx context.Context) error { method Shutdown (line 110) | func (c *CrontabSerivce) Shutdown() { method getLogger (line 119) | func (c *CrontabSerivce) getLogger() *logrus.Entry { method check (line 123) | func (c *CrontabSerivce) check(ctx context.Context) error { function NewCrontabSerivce (line 49) | func NewCrontabSerivce( FILE: pkg/crontab/crontab.pb.go constant _ (line 40) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 42) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Crontab (line 45) | type Crontab struct method Reset (line 54) | func (x *Crontab) Reset() { method String (line 63) | func (x *Crontab) String() string { method ProtoMessage (line 67) | func (*Crontab) ProtoMessage() {} method ProtoReflect (line 69) | func (x *Crontab) ProtoReflect() protoreflect.Message { method Descriptor (line 82) | func (*Crontab) Descriptor() ([]byte, []int) { method GetEnabled (line 86) | func (x *Crontab) GetEnabled() bool { method GetCheckInterval (line 93) | func (x *Crontab) GetCheckInterval() *duration.Duration { function file_pkg_crontab_crontab_proto_rawDescGZIP (line 125) | func file_pkg_crontab_crontab_proto_rawDescGZIP() []byte { function init (line 146) | func init() { file_pkg_crontab_crontab_proto_init() } function file_pkg_crontab_crontab_proto_init (line 147) | func file_pkg_crontab_crontab_proto_init() { FILE: pkg/crontab/crontab_test.go function TestCrontabSerivce (line 36) | func TestCrontabSerivce(t *testing.T) { FILE: pkg/database/mysql/config.go type Config (line 33) | type Config struct method Complete (line 98) | func (c *Config) Complete() CompletedConfig { method loadViper (line 110) | func (c *Config) loadViper() error { type completedConfig (line 41) | type completedConfig struct method New (line 51) | func (c *completedConfig) New(ctx context.Context) (*sqlx.DB, error) { method install (line 73) | func (c *completedConfig) install(ctx context.Context) (*sqlx.DB, erro... type CompletedConfig (line 46) | type CompletedConfig struct function NewConfig (line 118) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/database/mysql/config.option.go function WithViper (line 28) | func WithViper(v *viper.Viper) ConfigOption { FILE: pkg/database/mysql/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/database/mysql/mysql.go constant DefaultMaxConns (line 44) | DefaultMaxConns = 100 constant DefaultMaxIdleConns (line 45) | DefaultMaxIdleConns = 10 type DBConfig (line 48) | type DBConfig struct type DB (line 55) | type DB struct method GetDatabase (line 128) | func (d *DB) GetDatabase() (*sqlx.DB, error) { method GetDatabaseUntil (line 189) | func (d *DB) GetDatabaseUntil( method Close (line 214) | func (d *DB) Close() error { function NewDB (line 72) | func NewDB(conf DBConfig, opts ...DBOption) *DB { function GetDB (line 84) | func GetDB() *sqlx.DB { function GetTheDB (line 88) | func GetTheDB(conf DBConfig) (*sqlx.DB, error) { function CloseDB (line 99) | func CloseDB() error { function CloseTheDB (line 107) | func CloseTheDB(conf DBConfig) error { FILE: pkg/database/mysql/mysql.option.go function WithMaxConnections (line 28) | func WithMaxConnections(maxConns int) DBOption { function WithMaxIdleConnections (line 34) | func WithMaxIdleConnections(maxIdleConns int) DBOption { function WithDialTimeout (line 40) | func WithDialTimeout(dialTimeout time.Duration) DBOption { function WithReadTimeout (line 46) | func WithReadTimeout(readTimeout time.Duration) DBOption { function WithWriteTimeout (line 52) | func WithWriteTimeout(writeTimeout time.Duration) DBOption { function WithConnMaxLifetime (line 58) | func WithConnMaxLifetime(connMaxLifetime time.Duration) DBOption { function WithInterpolateParams (line 64) | func WithInterpolateParams(enabled bool) DBOption { FILE: pkg/database/mysql/mysql.pb.go constant _ (line 40) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 42) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Mysql (line 45) | type Mysql struct method Reset (line 67) | func (x *Mysql) Reset() { method String (line 76) | func (x *Mysql) String() string { method ProtoMessage (line 80) | func (*Mysql) ProtoMessage() {} method ProtoReflect (line 82) | func (x *Mysql) ProtoReflect() protoreflect.Message { method Descriptor (line 95) | func (*Mysql) Descriptor() ([]byte, []int) { method GetEnabled (line 99) | func (x *Mysql) GetEnabled() bool { method GetAddress (line 106) | func (x *Mysql) GetAddress() string { method GetUsername (line 113) | func (x *Mysql) GetUsername() string { method GetPassword (line 120) | func (x *Mysql) GetPassword() string { method GetDbName (line 127) | func (x *Mysql) GetDbName() string { method GetMaxConnections (line 134) | func (x *Mysql) GetMaxConnections() int32 { method GetMaxIdleConnections (line 141) | func (x *Mysql) GetMaxIdleConnections() int32 { method GetDialTimeout (line 148) | func (x *Mysql) GetDialTimeout() *duration.Duration { method GetReadTimeout (line 155) | func (x *Mysql) GetReadTimeout() *duration.Duration { method GetWriteTimeout (line 162) | func (x *Mysql) GetWriteTimeout() *duration.Duration { method GetMaxLifeTime (line 169) | func (x *Mysql) GetMaxLifeTime() *duration.Duration { method GetMaxWaitDuration (line 176) | func (x *Mysql) GetMaxWaitDuration() *duration.Duration { method GetFailAfterDuration (line 183) | func (x *Mysql) GetFailAfterDuration() *duration.Duration { method GetInterpolateParams (line 190) | func (x *Mysql) GetInterpolateParams() bool { function file_pkg_database_mysql_mysql_proto_rawDescGZIP (line 259) | func file_pkg_database_mysql_mysql_proto_rawDescGZIP() []byte { function init (line 285) | func init() { file_pkg_database_mysql_mysql_proto_init() } function file_pkg_database_mysql_mysql_proto_init (line 286) | func file_pkg_database_mysql_mysql_proto_init() { FILE: pkg/database/mysql/mysql_operate_test.go type TaskTable (line 36) | type TaskTable struct type Tasks (line 54) | type Tasks method String (line 56) | func (t Tasks) String() string { function TestInsert (line 67) | func TestInsert(t *testing.T) { function TestInsertNewBatch (line 138) | func TestInsertNewBatch(t *testing.T) { function TestInsertBatch (line 207) | func TestInsertBatch(t *testing.T) { function TestDeleteBatch (line 312) | func TestDeleteBatch(t *testing.T) { FILE: pkg/database/mysql/mysql_options.go type DBOption (line 25) | type DBOption interface type EmptyDBOption (line 33) | type EmptyDBOption struct method apply (line 35) | func (EmptyDBOption) apply(*DB) {} type DBOptionFunc (line 39) | type DBOptionFunc method apply (line 41) | func (f DBOptionFunc) apply(do *DB) { function _DBOptionWithDefault (line 46) | func _DBOptionWithDefault() DBOption { method ApplyOptions (line 51) | func (o *DB) ApplyOptions(options ...DBOption) *DB { FILE: pkg/database/mysql/mysql_test.go function TestGetDataBase (line 34) | func TestGetDataBase(t *testing.T) { function TestGetDatabaseUntil (line 71) | func TestGetDatabaseUntil(t *testing.T) { function TestNew (line 106) | func TestNew(t *testing.T) { function TestGetTheDBAndClose (line 119) | func TestGetTheDBAndClose(t *testing.T) { FILE: pkg/database/mysql/mysql_transaction.go type TxDao (line 33) | type TxDao struct method Begin (line 37) | func (d *TxDao) Begin(ctx context.Context, db *sqlx.DB, opts *sql.TxOp... method Commit (line 52) | func (d *TxDao) Commit() error { method Rollback (line 65) | func (d *TxDao) Rollback() error { function TxPipelined (line 77) | func TxPipelined(ctx context.Context, db *sqlx.DB, fn func(*sqlx.Tx) err... FILE: pkg/database/mysql/sql.go constant dbTag (line 33) | dbTag = "db" type SqlCompare (line 35) | type SqlCompare constant SqlCompareEqual (line 38) | SqlCompareEqual SqlCompare = "=" constant SqlCompareNotEqual (line 39) | SqlCompareNotEqual SqlCompare = "!=" constant SqlCompareGreater (line 40) | SqlCompareGreater SqlCompare = ">" constant SqlCompareLessThan (line 41) | SqlCompareLessThan SqlCompare = "<" constant SqlCompareGreatEqual (line 42) | SqlCompareGreatEqual SqlCompare = ">=" constant SqlCompareLessEqual (line 43) | SqlCompareLessEqual SqlCompare = "<=" constant SqlCompareLike (line 44) | SqlCompareLike SqlCompare = "LIKE" constant SqlCompareIn (line 45) | SqlCompareIn SqlCompare = "IN" type SqlOperator (line 48) | type SqlOperator constant SqlOperatorAnd (line 51) | SqlOperatorAnd SqlOperator = "AND" constant SqlOperatorOr (line 52) | SqlOperatorOr SqlOperator = "OR" constant SqlOperatorNot (line 53) | SqlOperatorNot SqlOperator = "NOT" function NonzeroCondition (line 57) | func NonzeroCondition(cmp SqlCompare, oper SqlOperator, arg interface{})... function NonzeroFields (line 67) | func NonzeroFields(arg interface{}) []string { function ConditionWithEqualAnd (line 71) | func ConditionWithEqualAnd(condFields ...string) string { function OrderCondition (line 76) | func OrderCondition(orders map[string]bool) string { function InCondition (line 98) | func InCondition(cond string, values ...string) string { function NamedInCondition (line 113) | func NamedInCondition(oper SqlOperator, cols []string, arg interface{}) ... function JoinNamedColumnsValues (line 128) | func JoinNamedColumnsValues(cols ...string) string { function JoinNamedColumnsValuesWithOperator (line 133) | func JoinNamedColumnsValuesWithOperator(cmp SqlCompare, oper SqlOperator... function namedTableColumnsValues (line 143) | func namedTableColumnsValues(cmp SqlCompare, cols ...string) []string { function JoinNamedColumnsValuesBatch (line 181) | func JoinNamedColumnsValuesBatch(cols []string, batch int) string { function BuildNamedInsertSql (line 195) | func BuildNamedInsertSql(table string, cols []string, batch int) string { function TransferToNamedColumnsValuesBatch (line 210) | func TransferToNamedColumnsValuesBatch(req []map[string]interface{}) map... function BuildNamedColumnsValuesBatch (line 223) | func BuildNamedColumnsValuesBatch(req interface{}) map[string]interface{} { FILE: pkg/database/mysql/sql_exec.go function ExecContext (line 54) | func ExecContext( function SelectNamedContext (line 89) | func SelectNamedContext( function GetCountContext (line 120) | func GetCountContext(ctx context.Context, query string, arg interface{},... function NamedExecContext (line 149) | func NamedExecContext( function PrepareNamedContext (line 168) | func PrepareNamedContext(ctx context.Context, FILE: pkg/database/mysql/sql_test.go function TestJoinNamedColumnsValuesWithOperator (line 31) | func TestJoinNamedColumnsValuesWithOperator(t *testing.T) { function TestInCondition (line 52) | func TestInCondition(t *testing.T) { function TestNamedInCondition (line 75) | func TestNamedInCondition(t *testing.T) { function TestOrderCondition (line 110) | func TestOrderCondition(t *testing.T) { function TestJoinNamedColumnsValuesBatch (line 137) | func TestJoinNamedColumnsValuesBatch(t *testing.T) { FILE: pkg/database/mysql/sql_type.go type SQLDB (line 30) | type SQLDB method Store (line 38) | func (m *SQLDB) Store(value *sqlx.DB) { method Load (line 42) | func (m *SQLDB) Load() *sqlx.DB { FILE: pkg/database/redis/command.get.values.go function GetValue (line 31) | func GetValue(ctx context.Context, db *redis.Client, key string) ([]stri... function GetValues (line 81) | func GetValues(ctx context.Context, db *redis.Client, keys ...string) ([... FILE: pkg/database/redis/command.hset.go function HSetStruct (line 34) | func HSetStruct(ctx context.Context, db *redis.Client, key string, arg i... FILE: pkg/database/redis/config.go type Config (line 33) | type Config struct method Complete (line 98) | func (c *Config) Complete() CompletedConfig { method loadViper (line 110) | func (c *Config) loadViper() error { type completedConfig (line 41) | type completedConfig struct method New (line 51) | func (c *completedConfig) New(ctx context.Context) (*redis.Client, err... method install (line 73) | func (c *completedConfig) install(ctx context.Context) (*redis.Client,... type CompletedConfig (line 46) | type CompletedConfig struct function NewConfig (line 118) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/database/redis/config.option.go function WithViper (line 28) | func WithViper(v *viper.Viper) ConfigOption { FILE: pkg/database/redis/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/database/redis/redis.go constant DefaultMinIdleConns (line 38) | DefaultMinIdleConns = 10 constant DefaultPoolSize (line 39) | DefaultPoolSize = 10 constant DefaultDialTimeout (line 40) | DefaultDialTimeout = 5 * time.Second constant DefaultReadTimeout (line 41) | DefaultReadTimeout = 5 * time.Second constant DefaultWriteTimeout (line 42) | DefaultWriteTimeout = 5 * time.Second constant DefaultMasterName (line 43) | DefaultMasterName = "mymaster" type DBConfig (line 46) | type DBConfig struct type RedisClient (line 53) | type RedisClient struct method GetRedis (line 87) | func (r *RedisClient) GetRedis(ctx context.Context) (*redis.Client, er... method GetDatabaseUntil (line 134) | func (r *RedisClient) GetDatabaseUntil( method Close (line 158) | func (r *RedisClient) Close() error { function NewRedisClient (line 67) | func NewRedisClient(conf DBConfig, opts ...RedisOption) *RedisClient { function GetDB (line 83) | func GetDB() *redis.Client { FILE: pkg/database/redis/redis.options.go function WithPoolSize (line 26) | func WithPoolSize(poolSize int) RedisOption { function WithMinIdleConnections (line 32) | func WithMinIdleConnections(minIdleConns int) RedisOption { function WithDialTimeout (line 38) | func WithDialTimeout(dialTimeout time.Duration) RedisOption { function WithReadTimeout (line 44) | func WithReadTimeout(readTimeout time.Duration) RedisOption { function WithWriteTimeout (line 50) | func WithWriteTimeout(writeTimeout time.Duration) RedisOption { function WithMasterName (line 56) | func WithMasterName(masterName string) RedisOption { FILE: pkg/database/redis/redis.pb.go constant _ (line 40) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 42) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Redis (line 46) | type Redis struct method Reset (line 127) | func (x *Redis) Reset() { method String (line 136) | func (x *Redis) String() string { method ProtoMessage (line 140) | func (*Redis) ProtoMessage() {} method ProtoReflect (line 142) | func (x *Redis) ProtoReflect() protoreflect.Message { method Descriptor (line 155) | func (*Redis) Descriptor() ([]byte, []int) { method GetEnabled (line 159) | func (x *Redis) GetEnabled() bool { method GetAddresses (line 166) | func (x *Redis) GetAddresses() []string { method GetDb (line 173) | func (x *Redis) GetDb() int64 { method GetUsername (line 180) | func (x *Redis) GetUsername() string { method GetPassword (line 187) | func (x *Redis) GetPassword() string { method GetMaxRetries (line 194) | func (x *Redis) GetMaxRetries() int64 { method GetMinRetryBackoff (line 201) | func (x *Redis) GetMinRetryBackoff() *duration.Duration { method GetMaxRetryBackoff (line 208) | func (x *Redis) GetMaxRetryBackoff() *duration.Duration { method GetDialTimeout (line 215) | func (x *Redis) GetDialTimeout() *duration.Duration { method GetReadTimeout (line 222) | func (x *Redis) GetReadTimeout() *duration.Duration { method GetWriteTimeout (line 229) | func (x *Redis) GetWriteTimeout() *duration.Duration { method GetPoolSize (line 236) | func (x *Redis) GetPoolSize() int64 { method GetMinIdleConns (line 243) | func (x *Redis) GetMinIdleConns() int64 { method GetMaxConnAge (line 250) | func (x *Redis) GetMaxConnAge() *duration.Duration { method GetPoolTimeout (line 257) | func (x *Redis) GetPoolTimeout() *duration.Duration { method GetIdleTimeout (line 264) | func (x *Redis) GetIdleTimeout() *duration.Duration { method GetIdleCheckFrequency (line 271) | func (x *Redis) GetIdleCheckFrequency() *duration.Duration { method GetMaxRedirects (line 278) | func (x *Redis) GetMaxRedirects() int64 { method GetReadOnly (line 285) | func (x *Redis) GetReadOnly() bool { method GetRouteByLatency (line 292) | func (x *Redis) GetRouteByLatency() bool { method GetRouteRandomly (line 299) | func (x *Redis) GetRouteRandomly() bool { method GetMasterName (line 306) | func (x *Redis) GetMasterName() string { method GetMaxWaitDuration (line 313) | func (x *Redis) GetMaxWaitDuration() *duration.Duration { method GetFailAfterDuration (line 320) | func (x *Redis) GetFailAfterDuration() *duration.Duration { function file_pkg_database_redis_redis_proto_rawDescGZIP (line 419) | func file_pkg_database_redis_redis_proto_rawDescGZIP() []byte { function init (line 450) | func init() { file_pkg_database_redis_redis_proto_init() } function file_pkg_database_redis_redis_proto_init (line 451) | func file_pkg_database_redis_redis_proto_init() { FILE: pkg/database/redis/redis_benchmark_test.go function BenchmarkSet (line 37) | func BenchmarkSet(t *testing.B) { function BenchmarkParallelSet (line 61) | func BenchmarkParallelSet(t *testing.B) { FILE: pkg/database/redis/redis_hset_test.go function TestHSetStruct (line 32) | func TestHSetStruct(t *testing.T) { function TestHKeys (line 64) | func TestHKeys(t *testing.T) { function TestHGetAll (line 93) | func TestHGetAll(t *testing.T) { function TestHGet (line 122) | func TestHGet(t *testing.T) { function TestHExists (line 154) | func TestHExists(t *testing.T) { function TestHIncrBy (line 190) | func TestHIncrBy(t *testing.T) { function TestHLen (line 226) | func TestHLen(t *testing.T) { function TestHMGet (line 259) | func TestHMGet(t *testing.T) { function TestHMSet (line 296) | func TestHMSet(t *testing.T) { function TestHSetNX (line 342) | func TestHSetNX(t *testing.T) { function TestHVals (line 393) | func TestHVals(t *testing.T) { FILE: pkg/database/redis/redis_key_delete_test.go function TestDeletePrefixKeys (line 39) | func TestDeletePrefixKeys(t *testing.T) { FILE: pkg/database/redis/redis_key_test.go function TestExpire (line 31) | func TestExpire(t *testing.T) { function TestExpireAt (line 57) | func TestExpireAt(t *testing.T) { function TestPExpire (line 87) | func TestPExpire(t *testing.T) { function TestDump (line 113) | func TestDump(t *testing.T) { FILE: pkg/database/redis/redis_list_test.go function TestRPush (line 31) | func TestRPush(t *testing.T) { function TestRPushX (line 63) | func TestRPushX(t *testing.T) { function TestLLen (line 94) | func TestLLen(t *testing.T) { function TestLRange (line 124) | func TestLRange(t *testing.T) { function TestLIndex (line 159) | func TestLIndex(t *testing.T) { function TestLInsertBefore (line 190) | func TestLInsertBefore(t *testing.T) { function TestLPush (line 224) | func TestLPush(t *testing.T) { function TestLTrim (line 255) | func TestLTrim(t *testing.T) { function TestBLPop (line 289) | func TestBLPop(t *testing.T) { FILE: pkg/database/redis/redis_options.go type RedisOption (line 25) | type RedisOption interface type EmptyRedisOption (line 33) | type EmptyRedisOption struct method apply (line 35) | func (EmptyRedisOption) apply(*RedisClient) {} type RedisOptionFunc (line 39) | type RedisOptionFunc method apply (line 41) | func (f RedisOptionFunc) apply(do *RedisClient) { function _RedisOptionWithDefault (line 46) | func _RedisOptionWithDefault() RedisOption { method ApplyOptions (line 52) | func (o *RedisClient) ApplyOptions(options ...RedisOption) *RedisClient { FILE: pkg/database/redis/redis_set_test.go function TestSAdd (line 30) | func TestSAdd(t *testing.T) { function TestSCard (line 65) | func TestSCard(t *testing.T) { function TestSDiff (line 93) | func TestSDiff(t *testing.T) { function TestSDiffStore (line 116) | func TestSDiffStore(t *testing.T) { function TestSInter (line 142) | func TestSInter(t *testing.T) { function TestSMembers (line 165) | func TestSMembers(t *testing.T) { function TestSInterStore (line 191) | func TestSInterStore(t *testing.T) { function TestSRem (line 218) | func TestSRem(t *testing.T) { function TestSMIsMember (line 246) | func TestSMIsMember(t *testing.T) { function TestSPop (line 273) | func TestSPop(t *testing.T) { function TestSRandMember (line 297) | func TestSRandMember(t *testing.T) { function TestSRandMemberN (line 321) | func TestSRandMemberN(t *testing.T) { function TestSUnion (line 346) | func TestSUnion(t *testing.T) { function TestSMove (line 370) | func TestSMove(t *testing.T) { function TestSUnionStore (line 398) | func TestSUnionStore(t *testing.T) { function TestSScan (line 424) | func TestSScan(t *testing.T) { FILE: pkg/database/redis/redis_string_test.go function TestGetDataBase (line 37) | func TestGetDataBase(t *testing.T) { function GetDBOrDie (line 78) | func GetDBOrDie() *redis.Client { function TestNew (line 96) | func TestNew(t *testing.T) { function TestSet (line 108) | func TestSet(t *testing.T) { function TestGetValues (line 152) | func TestGetValues(t *testing.T) { function TestGetRange (line 173) | func TestGetRange(t *testing.T) { FILE: pkg/database/redis/redis_transaction_test.go function TestTxPipelined (line 33) | func TestTxPipelined(t *testing.T) { FILE: pkg/database/redis/redis_type.go constant TypeString (line 31) | TypeString = "string" constant TypeHash (line 32) | TypeHash = "hash" constant TypeList (line 33) | TypeList = "list" constant TypeSet (line 34) | TypeSet = "set" constant TypeZSet (line 35) | TypeZSet = "zset" constant TypeOther (line 36) | TypeOther = "other" type RedisDB (line 39) | type RedisDB method Store (line 47) | func (m *RedisDB) Store(value *redis.Client) { method Load (line 51) | func (m *RedisDB) Load() *redis.Client { FILE: pkg/database/redis/redis_zset_test.go function TestZAdd (line 32) | func TestZAdd(t *testing.T) { function TestZCard (line 77) | func TestZCard(t *testing.T) { function TestZRange (line 104) | func TestZRange(t *testing.T) { function TestZRangeByScore (line 136) | func TestZRangeByScore(t *testing.T) { FILE: pkg/discovery/consul/discovery.go type ServiceRegistryServer (line 38) | type ServiceRegistryServer struct method Run (line 92) | func (srv *ServiceRegistryServer) Run(ctx context.Context) error { method Serve (line 107) | func (srv *ServiceRegistryServer) Serve(ctx context.Context) error { method Shutdown (line 150) | func (srv *ServiceRegistryServer) Shutdown() { method Register (line 159) | func (srv *ServiceRegistryServer) Register() error { method UnRegister (line 186) | func (srv *ServiceRegistryServer) UnRegister() error { method logger (line 197) | func (srv *ServiceRegistryServer) logger() logrus.FieldLogger { function NewServiceRegistry (line 55) | func NewServiceRegistry( FILE: pkg/discovery/etcd/config.go type Config (line 32) | type Config struct method Complete (line 102) | func (c *Config) Complete() CompletedConfig { method loadViper (line 114) | func (c *Config) loadViper() error { type completedConfig (line 40) | type completedConfig struct method New (line 50) | func (c *completedConfig) New(ctx context.Context, createCallbackFunc,... method install (line 72) | func (c *completedConfig) install(ctx context.Context, createCallbackF... type CompletedConfig (line 45) | type CompletedConfig struct function NewConfig (line 122) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/discovery/etcd/config.option.go function WithViper (line 28) | func WithViper(v *viper.Viper) ConfigOption { FILE: pkg/discovery/etcd/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/discovery/etcd/etcd.go type EventCallbackFunc (line 38) | type EventCallbackFunc constant DefaultDialTimeout (line 47) | DefaultDialTimeout = 5 * time.Second constant DefaultLockTTL (line 48) | DefaultLockTTL = 15 * time.Second type EtcdConfig (line 51) | type EtcdConfig struct type EtcdKVOptions (line 57) | type EtcdKVOptions struct type EtcdKV (line 71) | type EtcdKV struct method GetKV (line 108) | func (d *EtcdKV) GetKV(ctx context.Context) (*clientv3.Client, error) { method GetKVUntil (line 146) | func (d *EtcdKV) GetKVUntil( method Watch (line 171) | func (d *EtcdKV) Watch(ctx context.Context) { method Close (line 178) | func (d *EtcdKV) Close() error { method Lock (line 185) | func (d *EtcdKV) Lock(ctx context.Context, opts ...EtcdKVOption) error { method Unlock (line 216) | func (d *EtcdKV) Unlock(ctx context.Context) error { method TxPipelined (line 228) | func (d *EtcdKV) TxPipelined(ctx context.Context, cmps []clientv3.Cmp,... function NewEtcdKV (line 81) | func NewEtcdKV(conf EtcdConfig, opts ...EtcdKVOption) *EtcdKV { function GetKV (line 96) | func GetKV() *clientv3.Client { function CloseKV (line 100) | func CloseKV() error { FILE: pkg/discovery/etcd/etcd.option.go function WithDialTimeout (line 28) | func WithDialTimeout(dialTimeout time.Duration) EtcdKVOption { function WithMaxCallRecvMsgSize (line 34) | func WithMaxCallRecvMsgSize(msgSize int) EtcdKVOption { function WithMaxCallSendMsgSize (line 40) | func WithMaxCallSendMsgSize(msgSize int) EtcdKVOption { function WithAutoSyncInterval (line 46) | func WithAutoSyncInterval(autoSyncInterval time.Duration) EtcdKVOption { function WithWatchPaths (line 52) | func WithWatchPaths(paths []string) EtcdKVOption { function WithWatchCreateCallbackFunc (line 58) | func WithWatchCreateCallbackFunc(f EventCallbackFunc) EtcdKVOption { function WithWatchDeleteCallbackFunc (line 64) | func WithWatchDeleteCallbackFunc(f EventCallbackFunc) EtcdKVOption { function WithLockTTL (line 70) | func WithLockTTL(ttl time.Duration) EtcdKVOption { function WithLockPrefixPath (line 76) | func WithLockPrefixPath(prefix string) EtcdKVOption { function WithLockKey (line 82) | func WithLockKey(key string) EtcdKVOption { FILE: pkg/discovery/etcd/etcd.pb.go constant _ (line 19) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 21) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Etcd (line 24) | type Etcd struct method Reset (line 51) | func (x *Etcd) Reset() { method String (line 60) | func (x *Etcd) String() string { method ProtoMessage (line 64) | func (*Etcd) ProtoMessage() {} method ProtoReflect (line 66) | func (x *Etcd) ProtoReflect() protoreflect.Message { method Descriptor (line 79) | func (*Etcd) Descriptor() ([]byte, []int) { method GetEnabled (line 83) | func (x *Etcd) GetEnabled() bool { method GetAddresses (line 90) | func (x *Etcd) GetAddresses() []string { method GetUsername (line 97) | func (x *Etcd) GetUsername() string { method GetPassword (line 104) | func (x *Etcd) GetPassword() string { method GetMaxCallSendMsgSize (line 111) | func (x *Etcd) GetMaxCallSendMsgSize() int32 { method GetMaxCallRecvMsgSize (line 118) | func (x *Etcd) GetMaxCallRecvMsgSize() int32 { method GetAutoSyncInterval (line 125) | func (x *Etcd) GetAutoSyncInterval() *durationpb.Duration { method GetDialTimeout (line 132) | func (x *Etcd) GetDialTimeout() *durationpb.Duration { method GetMaxWaitDuration (line 139) | func (x *Etcd) GetMaxWaitDuration() *durationpb.Duration { method GetFailAfterDuration (line 146) | func (x *Etcd) GetFailAfterDuration() *durationpb.Duration { method GetWatchPaths (line 153) | func (x *Etcd) GetWatchPaths() []string { function file_pkg_discovery_etcd_etcd_proto_rawDescGZIP (line 213) | func file_pkg_discovery_etcd_etcd_proto_rawDescGZIP() []byte { function init (line 237) | func init() { file_pkg_discovery_etcd_etcd_proto_init() } function file_pkg_discovery_etcd_etcd_proto_init (line 238) | func file_pkg_discovery_etcd_etcd_proto_init() { FILE: pkg/discovery/etcd/etcd.watch.go function Watch (line 10) | func Watch(ctx context.Context, kv *clientv3.Client, key string, createC... FILE: pkg/discovery/etcd/etcd_options.go type EtcdKVOption (line 25) | type EtcdKVOption interface type EmptyEtcdKVOption (line 33) | type EmptyEtcdKVOption struct method apply (line 35) | func (EmptyEtcdKVOption) apply(*EtcdKV) {} type EtcdKVOptionFunc (line 39) | type EtcdKVOptionFunc method apply (line 41) | func (f EtcdKVOptionFunc) apply(do *EtcdKV) { function _EtcdKVOptionWithDefault (line 46) | func _EtcdKVOptionWithDefault() EtcdKVOption { method ApplyOptions (line 51) | func (o *EtcdKV) ApplyOptions(options ...EtcdKVOption) *EtcdKV { FILE: pkg/discovery/etcd/etcd_test.go function TestGetKV (line 37) | func TestGetKV(t *testing.T) { function TestGetKVUntil (line 62) | func TestGetKVUntil(t *testing.T) { function CreateCallback (line 88) | func CreateCallback(ctx context.Context, key, value string) { function DeleteCallback (line 92) | func DeleteCallback(ctx context.Context, key, value string) { function InstallEtcd (line 96) | func InstallEtcd(ctx context.Context) (*etcd_.EtcdKV, error) { function TestNew (line 110) | func TestNew(t *testing.T) { function TestTxPipelined (line 138) | func TestTxPipelined(t *testing.T) { FILE: pkg/discovery/etcd/etcd_type.go type ETCDKV (line 30) | type ETCDKV method Store (line 38) | func (m *ETCDKV) Store(value *clientv3.Client) { method Load (line 42) | func (m *ETCDKV) Load() *clientv3.Client { FILE: pkg/file-cleanup/config.go type Config (line 35) | type Config struct method Complete (line 102) | func (c *Config) Complete(options ...ConfigOption) CompletedConfig { method loadViper (line 116) | func (c *Config) loadViper() error { type completedConfig (line 46) | type completedConfig struct method New (line 57) | func (c *completedConfig) New(ctx context.Context) (*disk_.DiskCleaner... method install (line 78) | func (c *completedConfig) install(ctx context.Context) (*disk_.DiskCle... method Validate (line 96) | func (c *completedConfig) Validate() error { type CompletedConfig (line 52) | type CompletedConfig struct function NewConfig (line 125) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/file-cleanup/config.option.go function WithViper (line 29) | func WithViper(v *viper.Viper) ConfigOption { function WithDiskUsageCallBack (line 35) | func WithDiskUsageCallBack(f func(diskPath string, diskUsage float32)) C... function WithCleanPostCallBack (line 41) | func WithCleanPostCallBack(f func(file string, err error)) ConfigOption { FILE: pkg/file-cleanup/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/file-cleanup/disk/disk_cleaner.go function init (line 46) | func init() { constant DefaultCheckInterval (line 51) | DefaultCheckInterval time.Duration = time.Minute constant DefaultbaseExpired (line 52) | DefaultbaseExpired time.Duration = 72 * time.Hour constant DefalutRandomizationFactor (line 53) | DefalutRandomizationFactor = 0.1 constant DefalutMultiplier (line 54) | DefalutMultiplier = 0.8 constant DefalutMinInterval (line 55) | DefalutMinInterval = time.Minute type DiskCleanerConfig (line 58) | type DiskCleanerConfig struct type DiskCleanerSerivce (line 67) | type DiskCleanerSerivce struct method getLogger (line 156) | func (s *DiskCleanerSerivce) getLogger() *logrus.Entry { method Run (line 161) | func (s *DiskCleanerSerivce) Run(ctx context.Context) error { method Serve (line 175) | func (s *DiskCleanerSerivce) Serve(ctx context.Context) error { method clean (line 207) | func (s *DiskCleanerSerivce) clean(ctx context.Context) error { method Shutdown (line 280) | func (s *DiskCleanerSerivce) Shutdown() { function checkAndCanoicalzePaths (line 81) | func checkAndCanoicalzePaths(paths ...string) ([]string, bool) { function NewDiskCleanerSerivce (line 102) | func NewDiskCleanerSerivce( FILE: pkg/file-cleanup/disk/disk_cleaner.option.go function WithDiskCheckInterval (line 28) | func WithDiskCheckInterval(interval time.Duration) DiskCleanerConfigOpti... function WithDiskBaseExpired (line 34) | func WithDiskBaseExpired(expired time.Duration) DiskCleanerConfigOption { function WithDiskMinExpired (line 40) | func WithDiskMinExpired(expired time.Duration) DiskCleanerConfigOption { function WithDiskUsageCallBack (line 46) | func WithDiskUsageCallBack(f func(diskPath string, diskUsage float32)) D... function WithCleanPostCallBack (line 52) | func WithCleanPostCallBack(f func(file string, err error)) DiskCleanerCo... FILE: pkg/file-cleanup/disk/disk_cleaner.pb.go constant _ (line 40) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 42) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type DiskCleaner (line 45) | type DiskCleaner struct method Reset (line 63) | func (x *DiskCleaner) Reset() { method String (line 72) | func (x *DiskCleaner) String() string { method ProtoMessage (line 76) | func (*DiskCleaner) ProtoMessage() {} method ProtoReflect (line 78) | func (x *DiskCleaner) ProtoReflect() protoreflect.Message { method Descriptor (line 91) | func (*DiskCleaner) Descriptor() ([]byte, []int) { method GetEnabled (line 95) | func (x *DiskCleaner) GetEnabled() bool { method GetDiskUsage (line 102) | func (x *DiskCleaner) GetDiskUsage() float32 { method GetPaths (line 109) | func (x *DiskCleaner) GetPaths() []string { method GetExts (line 116) | func (x *DiskCleaner) GetExts() []string { method GetCheckInterval (line 123) | func (x *DiskCleaner) GetCheckInterval() *duration.Duration { method GetBaseExpired (line 130) | func (x *DiskCleaner) GetBaseExpired() *duration.Duration { method GetMinExpired (line 137) | func (x *DiskCleaner) GetMinExpired() *duration.Duration { function file_pkg_file_cleanup_disk_disk_cleaner_proto_rawDescGZIP (line 183) | func file_pkg_file_cleanup_disk_disk_cleaner_proto_rawDescGZIP() []byte { function init (line 206) | func init() { file_pkg_file_cleanup_disk_disk_cleaner_proto_init() } function file_pkg_file_cleanup_disk_disk_cleaner_proto_init (line 207) | func file_pkg_file_cleanup_disk_disk_cleaner_proto_init() { FILE: pkg/file-cleanup/disk/disk_cleaner_option.go type DiskCleanerConfigOption (line 25) | type DiskCleanerConfigOption interface type EmptyDiskCleanerConfigOption (line 33) | type EmptyDiskCleanerConfigOption struct method apply (line 35) | func (EmptyDiskCleanerConfigOption) apply(*DiskCleanerConfig) {} type DiskCleanerConfigOptionFunc (line 39) | type DiskCleanerConfigOptionFunc method apply (line 41) | func (f DiskCleanerConfigOptionFunc) apply(do *DiskCleanerConfig) { function _DiskCleanerConfigOptionWithDefault (line 46) | func _DiskCleanerConfigOptionWithDefault() DiskCleanerConfigOption { method ApplyOptions (line 51) | func (o *DiskCleanerConfig) ApplyOptions(options ...DiskCleanerConfigOpt... FILE: pkg/file-cleanup/disk_cleaner_test.go function diskUsageCallBack (line 35) | func diskUsageCallBack(diskPath string, diskUsage float32) { function TestDiskCleanerSerivce (line 39) | func TestDiskCleanerSerivce(t *testing.T) { FILE: pkg/file-cleanup/file_cleaner.go type FileCleaner (line 33) | type FileCleaner struct function FileCleanup (line 42) | func FileCleanup(pattern string, options ...FileCleanerOption) error { type RotatedFiles (line 99) | type RotatedFiles method Len (line 101) | func (f RotatedFiles) Len() int { method Swap (line 105) | func (f RotatedFiles) Swap(i, j int) { method Less (line 109) | func (f RotatedFiles) Less(i, j int) bool { FILE: pkg/file-cleanup/file_cleaner.option.go function WithMaxAge (line 28) | func WithMaxAge(maxAge time.Duration) FileCleanerOption { function WithMaxCount (line 34) | func WithMaxCount(maxCount int64) FileCleanerOption { FILE: pkg/file-cleanup/file_cleaner_option.go type FileCleanerOption (line 25) | type FileCleanerOption interface type EmptyFileCleanerOption (line 33) | type EmptyFileCleanerOption struct method apply (line 35) | func (EmptyFileCleanerOption) apply(*FileCleaner) {} type FileCleanerOptionFunc (line 39) | type FileCleanerOptionFunc method apply (line 41) | func (f FileCleanerOptionFunc) apply(do *FileCleaner) { function _FileCleanerOptionWithDefault (line 46) | func _FileCleanerOptionWithDefault() FileCleanerOption { method ApplyOptions (line 51) | func (o *FileCleaner) ApplyOptions(options ...FileCleanerOption) *FileCl... FILE: pkg/file-cleanup/file_cleaner_test.go function TestFileCleanupWithMaxAge (line 31) | func TestFileCleanupWithMaxAge(t *testing.T) { FILE: pkg/file-rotate/rotate_file.go type EventCallbackFunc (line 43) | type EventCallbackFunc type RotateFiler (line 45) | type RotateFiler struct method Write (line 111) | func (f *RotateFiler) Write(p []byte) (file *os.File, n int, err error) { method WriteBytesLine (line 124) | func (f *RotateFiler) WriteBytesLine(p [][]byte) (file *os.File, n int... method generateRotateFilename (line 134) | func (f *RotateFiler) generateRotateFilename() string { method watch (line 142) | func (f *RotateFiler) watch() { method getWriterNolock (line 158) | func (f *RotateFiler) getWriterNolock(length int64) (io.Writer, error) { method generateNextSeqFilename (line 231) | func (f *RotateFiler) generateNextSeqFilename(filePath string) (string... method getCurSeqFilename (line 259) | func (f *RotateFiler) getCurSeqFilename(globPath string) (string, erro... method extractSeq (line 274) | func (f *RotateFiler) extractSeq(filePath string) uint64 { function NewRotateFiler (line 71) | func NewRotateFiler(filedir string, options ...RotateFilerOption) (*Rota... function globFromFileTimeLayout (line 99) | func globFromFileTimeLayout(filePath string) string { FILE: pkg/file-rotate/rotate_file.option.go function WithPrefixName (line 28) | func WithPrefixName(prefixName string) RotateFilerOption { function WithFileTimeLayout (line 34) | func WithFileTimeLayout(fileTimeLayout string) RotateFilerOption { function WithSuffixName (line 40) | func WithSuffixName(subfixName string) RotateFilerOption { function WithMaxAge (line 46) | func WithMaxAge(maxAge time.Duration) RotateFilerOption { function WithMaxCount (line 52) | func WithMaxCount(maxCount int64) RotateFilerOption { function WithRotateSize (line 58) | func WithRotateSize(rotateSize int64) RotateFilerOption { function WithRotateInterval (line 64) | func WithRotateInterval(rotateInterval time.Duration) RotateFilerOption { function WithRotateCallback (line 70) | func WithRotateCallback(callback EventCallbackFunc) RotateFilerOption { FILE: pkg/file-rotate/rotate_file_option.go type RotateFilerOption (line 25) | type RotateFilerOption interface type EmptyRotateFilerOption (line 33) | type EmptyRotateFilerOption struct method apply (line 35) | func (EmptyRotateFilerOption) apply(*RotateFiler) {} type RotateFilerOptionFunc (line 39) | type RotateFilerOptionFunc method apply (line 41) | func (f RotateFilerOptionFunc) apply(do *RotateFiler) { function _RotateFilerOptionWithDefault (line 46) | func _RotateFilerOptionWithDefault() RotateFilerOption { method ApplyOptions (line 51) | func (o *RotateFiler) ApplyOptions(options ...RotateFilerOption) *Rotate... FILE: pkg/file-rotate/rotate_file_test.go function getWdOrDie (line 37) | func getWdOrDie() string { function TestRotateFileWithInterval (line 46) | func TestRotateFileWithInterval(t *testing.T) { function TestRotateFileWithIntervalAndSize (line 66) | func TestRotateFileWithIntervalAndSize(t *testing.T) { function TestRotateFileWithSize (line 87) | func TestRotateFileWithSize(t *testing.T) { function TestRotateMaxCount (line 114) | func TestRotateMaxCount(t *testing.T) { function TestRegex (line 135) | func TestRegex(t *testing.T) { FILE: pkg/file-transfer/config.go type Config (line 32) | type Config struct method Complete (line 83) | func (c *Config) Complete() CompletedConfig { method loadViper (line 95) | func (c *Config) loadViper() error { type completedConfig (line 40) | type completedConfig struct method New (line 50) | func (c *completedConfig) New(ctx context.Context) (*FileTransfer, err... method install (line 71) | func (c *completedConfig) install(ctx context.Context) (*FileTransfer,... type CompletedConfig (line 45) | type CompletedConfig struct function NewConfig (line 103) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/file-transfer/config.option.go function WithViper (line 28) | func WithViper(v *viper.Viper) ConfigOption { FILE: pkg/file-transfer/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/file-transfer/file.transfer.go type FileTransferOptions (line 35) | type FileTransferOptions struct function defaultFileTransferOptions (line 47) | func defaultFileTransferOptions() FileTransferOptions { type FileTransfer (line 51) | type FileTransfer struct method getProxy (line 62) | func (f *FileTransfer) getProxy() *Ft_Proxy { method Download (line 77) | func (f *FileTransfer) Download(ctx context.Context, downloadUrl strin... method Upload (line 121) | func (f *FileTransfer) Upload(ctx context.Context, uploadUrl string, b... function NewFileTransfer (line 55) | func NewFileTransfer(opts ...FileTransferOption) *FileTransfer { FILE: pkg/file-transfer/file.transfer.option.go function WithDownloadTimeout (line 26) | func WithDownloadTimeout(downloadTimeout time.Duration) FileTransferOpti... function WithLoadBalanceMode (line 32) | func WithLoadBalanceMode(mode Ft_LoadBalanceMode) FileTransferOption { function WithProxies (line 38) | func WithProxies(proxies []*Ft_Proxy) FileTransferOption { function WithRetryTimes (line 44) | func WithRetryTimes(retryTimes int) FileTransferOption { function WithRetryInterval (line 50) | func WithRetryInterval(retryInterval time.Duration) FileTransferOption { FILE: pkg/file-transfer/file.transfer_option.go type FileTransferOption (line 25) | type FileTransferOption interface type EmptyFileTransferOption (line 33) | type EmptyFileTransferOption struct method apply (line 35) | func (EmptyFileTransferOption) apply(*FileTransfer) {} type FileTransferOptionFunc (line 39) | type FileTransferOptionFunc method apply (line 41) | func (f FileTransferOptionFunc) apply(do *FileTransfer) { function _FileTransferOptionWithDefault (line 46) | func _FileTransferOptionWithDefault() FileTransferOption { method ApplyOptions (line 51) | func (o *FileTransfer) ApplyOptions(options ...FileTransferOption) *File... FILE: pkg/file-transfer/file.transfer_test.go function TestDownload (line 33) | func TestDownload(t *testing.T) { function TestDownloadByProxy (line 62) | func TestDownloadByProxy(t *testing.T) { FILE: pkg/file-transfer/ft.pb.go constant _ (line 19) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 21) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Ft_LoadBalanceMode (line 24) | type Ft_LoadBalanceMode method Enum (line 43) | func (x Ft_LoadBalanceMode) Enum() *Ft_LoadBalanceMode { method String (line 49) | func (x Ft_LoadBalanceMode) String() string { method Descriptor (line 53) | func (Ft_LoadBalanceMode) Descriptor() protoreflect.EnumDescriptor { method Type (line 57) | func (Ft_LoadBalanceMode) Type() protoreflect.EnumType { method Number (line 61) | func (x Ft_LoadBalanceMode) Number() protoreflect.EnumNumber { method EnumDescriptor (line 66) | func (Ft_LoadBalanceMode) EnumDescriptor() ([]byte, []int) { constant Ft_load_balance_mode_first (line 27) | Ft_load_balance_mode_first Ft_LoadBalanceMode = 0 constant Ft_load_balance_mode_random (line 28) | Ft_load_balance_mode_random Ft_LoadBalanceMode = 1 type Ft (line 70) | type Ft struct method Reset (line 85) | func (x *Ft) Reset() { method String (line 94) | func (x *Ft) String() string { method ProtoMessage (line 98) | func (*Ft) ProtoMessage() {} method ProtoReflect (line 100) | func (x *Ft) ProtoReflect() protoreflect.Message { method Descriptor (line 113) | func (*Ft) Descriptor() ([]byte, []int) { method GetEnabled (line 117) | func (x *Ft) GetEnabled() bool { method GetDownloadTimeout (line 124) | func (x *Ft) GetDownloadTimeout() *duration.Duration { method GetUploadTimeout (line 131) | func (x *Ft) GetUploadTimeout() *duration.Duration { method GetRetryTimes (line 138) | func (x *Ft) GetRetryTimes() uint32 { method GetRetryInterval (line 145) | func (x *Ft) GetRetryInterval() *duration.Duration { method GetLoadBalanceMode (line 152) | func (x *Ft) GetLoadBalanceMode() Ft_LoadBalanceMode { method GetProxies (line 159) | func (x *Ft) GetProxies() []*Ft_Proxy { type Ft_Proxy (line 166) | type Ft_Proxy struct method Reset (line 179) | func (x *Ft_Proxy) Reset() { method String (line 188) | func (x *Ft_Proxy) String() string { method ProtoMessage (line 192) | func (*Ft_Proxy) ProtoMessage() {} method ProtoReflect (line 194) | func (x *Ft_Proxy) ProtoReflect() protoreflect.Message { method Descriptor (line 207) | func (*Ft_Proxy) Descriptor() ([]byte, []int) { method GetTargetHost (line 211) | func (x *Ft_Proxy) GetTargetHost() string { method GetProxyUrl (line 218) | func (x *Ft_Proxy) GetProxyUrl() string { method GetProxyHost (line 225) | func (x *Ft_Proxy) GetProxyHost() string { function file_pkg_file_transfer_ft_proto_rawDescGZIP (line 288) | func file_pkg_file_transfer_ft_proto_rawDescGZIP() []byte { function init (line 316) | func init() { file_pkg_file_transfer_ft_proto_init() } function file_pkg_file_transfer_ft_proto_init (line 317) | func file_pkg_file_transfer_ft_proto_init() { FILE: pkg/file-transfer/upload/upload.svr.go type UploadPartInput (line 37) | type UploadPartInput struct constant tmpFileSuffix (line 44) | tmpFileSuffix = "_.tmp" function UploadFile (line 46) | func UploadFile( function UploadMultipart (line 103) | func UploadMultipart( function CompleteMultipartUpload (line 169) | func CompleteMultipartUpload( FILE: pkg/file-transfer/upload/upload.svr_test.go function TestUploadMultipart (line 33) | func TestUploadMultipart(t *testing.T) { function TestCompleteMultipartUpload (line 57) | func TestCompleteMultipartUpload(t *testing.T) { FILE: pkg/fsnotify/config.go type Config (line 32) | type Config struct method Complete (line 83) | func (c *Config) Complete() CompletedConfig { method loadViper (line 95) | func (c *Config) loadViper() error { type completedConfig (line 40) | type completedConfig struct method New (line 50) | func (c *completedConfig) New(ctx context.Context) (*FsnotifyService, ... method install (line 71) | func (c *completedConfig) install(ctx context.Context) (*FsnotifyServi... type CompletedConfig (line 45) | type CompletedConfig struct function NewConfig (line 103) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/fsnotify/config.option.go function WithViper (line 28) | func WithViper(v *viper.Viper) ConfigOption { FILE: pkg/fsnotify/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/fsnotify/fsnotify.go type EventCallbackFunc (line 17) | type EventCallbackFunc type FsnotifyOptions (line 19) | type FsnotifyOptions struct type FsnotifyService (line 25) | type FsnotifyService struct method logger (line 65) | func (srv *FsnotifyService) logger() logrus.FieldLogger { method Run (line 69) | func (srv *FsnotifyService) Run(ctx context.Context) error { method Serve (line 82) | func (srv *FsnotifyService) Serve(ctx context.Context) error { method AddWatchPath (line 154) | func (srv *FsnotifyService) AddWatchPath(unWatch bool, path string) er... method Add (line 180) | func (srv *FsnotifyService) Add(unWatch bool, path string) (err error) { method AddWatchPaths (line 196) | func (srv *FsnotifyService) AddWatchPaths(unWatch bool, paths ...strin... method Shutdown (line 207) | func (srv *FsnotifyService) Shutdown() { function NewFsnotifyService (line 36) | func NewFsnotifyService(paths []string, opts ...FsnotifyOption) (*Fsnoti... FILE: pkg/fsnotify/fsnotify.option.go function WithCreateCallbackFunc (line 24) | func WithCreateCallbackFunc(fn EventCallbackFunc) FsnotifyOption { function WithWriteCallbackFunc (line 30) | func WithWriteCallbackFunc(fn EventCallbackFunc) FsnotifyOption { function WithRemoveCallbackFunc (line 36) | func WithRemoveCallbackFunc(fn EventCallbackFunc) FsnotifyOption { FILE: pkg/fsnotify/fsnotify.pb.go constant _ (line 19) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 21) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Fsnotify (line 24) | type Fsnotify struct method Reset (line 33) | func (x *Fsnotify) Reset() { method String (line 42) | func (x *Fsnotify) String() string { method ProtoMessage (line 46) | func (*Fsnotify) ProtoMessage() {} method ProtoReflect (line 48) | func (x *Fsnotify) ProtoReflect() protoreflect.Message { method Descriptor (line 61) | func (*Fsnotify) Descriptor() ([]byte, []int) { method GetEnabled (line 65) | func (x *Fsnotify) GetEnabled() bool { method GetFilePaths (line 72) | func (x *Fsnotify) GetFilePaths() []string { function file_pkg_fsnotify_fsnotify_proto_rawDescGZIP (line 102) | func file_pkg_fsnotify_fsnotify_proto_rawDescGZIP() []byte { function init (line 121) | func init() { file_pkg_fsnotify_fsnotify_proto_init() } function file_pkg_fsnotify_fsnotify_proto_init (line 122) | func file_pkg_fsnotify_fsnotify_proto_init() { FILE: pkg/fsnotify/fsnotify_option.go type FsnotifyOption (line 25) | type FsnotifyOption interface type EmptyFsnotifyOption (line 33) | type EmptyFsnotifyOption struct method apply (line 35) | func (EmptyFsnotifyOption) apply(*FsnotifyService) {} type FsnotifyOptionFunc (line 39) | type FsnotifyOptionFunc method apply (line 41) | func (f FsnotifyOptionFunc) apply(do *FsnotifyService) { function _FsnotifyOptionWithDefault (line 46) | func _FsnotifyOptionWithDefault() FsnotifyOption { method ApplyOptions (line 51) | func (o *FsnotifyService) ApplyOptions(options ...FsnotifyOption) *Fsnot... FILE: pkg/fsnotify/fsnotify_test.go function TestFsnotify (line 11) | func TestFsnotify(t *testing.T) { FILE: pkg/gocv/cgo/api/openapi-spec/gocv/gocv.magick.pb.go constant _ (line 19) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 21) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type OrientationType (line 24) | type OrientationType method Enum (line 64) | func (x OrientationType) Enum() *OrientationType { method String (line 70) | func (x OrientationType) String() string { method Descriptor (line 74) | func (OrientationType) Descriptor() protoreflect.EnumDescriptor { method Type (line 78) | func (OrientationType) Type() protoreflect.EnumType { method Number (line 82) | func (x OrientationType) Number() protoreflect.EnumNumber { method EnumDescriptor (line 87) | func (OrientationType) EnumDescriptor() ([]byte, []int) { constant OrientationType_UndefinedOrientation (line 27) | OrientationType_UndefinedOrientation OrientationType = 0 constant OrientationType_TopLeftOrientation (line 28) | OrientationType_TopLeftOrientation OrientationType = 1 constant OrientationType_TopRightOrientation (line 29) | OrientationType_TopRightOrientation OrientationType = 2 constant OrientationType_BottomRightOrientation (line 30) | OrientationType_BottomRightOrientation OrientationType = 3 constant OrientationType_BottomLeftOrientation (line 31) | OrientationType_BottomLeftOrientation OrientationType = 4 constant OrientationType_LeftTopOrientation (line 32) | OrientationType_LeftTopOrientation OrientationType = 5 constant OrientationType_RightTopOrientation (line 33) | OrientationType_RightTopOrientation OrientationType = 6 constant OrientationType_RightBottomOrientation (line 34) | OrientationType_RightBottomOrientation OrientationType = 7 constant OrientationType_LeftBottomOrientation (line 35) | OrientationType_LeftBottomOrientation OrientationType = 8 type ColorspaceType (line 92) | type ColorspaceType method Enum (line 165) | func (x ColorspaceType) Enum() *ColorspaceType { method String (line 171) | func (x ColorspaceType) String() string { method Descriptor (line 175) | func (ColorspaceType) Descriptor() protoreflect.EnumDescriptor { method Type (line 179) | func (ColorspaceType) Type() protoreflect.EnumType { method Number (line 183) | func (x ColorspaceType) Number() protoreflect.EnumNumber { method EnumDescriptor (line 188) | func (ColorspaceType) EnumDescriptor() ([]byte, []int) { constant ColorspaceType_UndefinedColorspace (line 95) | ColorspaceType_UndefinedColorspace ColorspaceType = 0 constant ColorspaceType_RGBColorspace (line 96) | ColorspaceType_RGBColorspace ColorspaceType = 1 constant ColorspaceType_GRAYColorspace (line 97) | ColorspaceType_GRAYColorspace ColorspaceType = 2 constant ColorspaceType_TransparentColorspace (line 98) | ColorspaceType_TransparentColorspace ColorspaceType = 3 constant ColorspaceType_OHTAColorspace (line 99) | ColorspaceType_OHTAColorspace ColorspaceType = 4 constant ColorspaceType_XYZColorspace (line 100) | ColorspaceType_XYZColorspace ColorspaceType = 5 constant ColorspaceType_YCCColorspace (line 101) | ColorspaceType_YCCColorspace ColorspaceType = 6 constant ColorspaceType_YIQColorspace (line 102) | ColorspaceType_YIQColorspace ColorspaceType = 7 constant ColorspaceType_YPbPrColorspace (line 103) | ColorspaceType_YPbPrColorspace ColorspaceType = 8 constant ColorspaceType_YUVColorspace (line 104) | ColorspaceType_YUVColorspace ColorspaceType = 9 constant ColorspaceType_CMYKColorspace (line 105) | ColorspaceType_CMYKColorspace ColorspaceType = 10 constant ColorspaceType_sRGBColorspace (line 106) | ColorspaceType_sRGBColorspace ColorspaceType = 11 constant ColorspaceType_HSLColorspace (line 107) | ColorspaceType_HSLColorspace ColorspaceType = 12 constant ColorspaceType_HWBColorspace (line 108) | ColorspaceType_HWBColorspace ColorspaceType = 13 constant ColorspaceType_LABColorspace (line 109) | ColorspaceType_LABColorspace ColorspaceType = 14 constant ColorspaceType_CineonLogRGBColorspace (line 110) | ColorspaceType_CineonLogRGBColorspace ColorspaceType = 15 constant ColorspaceType_Rec601LumaColorspace (line 111) | ColorspaceType_Rec601LumaColorspace ColorspaceType = 16 constant ColorspaceType_Rec601YCbCrColorspace (line 112) | ColorspaceType_Rec601YCbCrColorspace ColorspaceType = 17 constant ColorspaceType_Rec709LumaColorspace (line 113) | ColorspaceType_Rec709LumaColorspace ColorspaceType = 18 constant ColorspaceType_Rec709YCbCrColorspace (line 114) | ColorspaceType_Rec709YCbCrColorspace ColorspaceType = 19 type MagickInitializeMagickRequest (line 192) | type MagickInitializeMagickRequest struct method Reset (line 200) | func (x *MagickInitializeMagickRequest) Reset() { method String (line 209) | func (x *MagickInitializeMagickRequest) String() string { method ProtoMessage (line 213) | func (*MagickInitializeMagickRequest) ProtoMessage() {} method ProtoReflect (line 215) | func (x *MagickInitializeMagickRequest) ProtoReflect() protoreflect.Me... method Descriptor (line 228) | func (*MagickInitializeMagickRequest) Descriptor() ([]byte, []int) { method GetPath (line 232) | func (x *MagickInitializeMagickRequest) GetPath() string { type MagickInitializeMagickResponse (line 239) | type MagickInitializeMagickResponse struct method Reset (line 247) | func (x *MagickInitializeMagickResponse) Reset() { method String (line 256) | func (x *MagickInitializeMagickResponse) String() string { method ProtoMessage (line 260) | func (*MagickInitializeMagickResponse) ProtoMessage() {} method ProtoReflect (line 262) | func (x *MagickInitializeMagickResponse) ProtoReflect() protoreflect.M... method Descriptor (line 275) | func (*MagickInitializeMagickResponse) Descriptor() ([]byte, []int) { method GetError (line 279) | func (x *MagickInitializeMagickResponse) GetError() *code.CgoError { type MagickImageDecodeRequest (line 286) | type MagickImageDecodeRequest struct method Reset (line 295) | func (x *MagickImageDecodeRequest) Reset() { method String (line 304) | func (x *MagickImageDecodeRequest) String() string { method ProtoMessage (line 308) | func (*MagickImageDecodeRequest) ProtoMessage() {} method ProtoReflect (line 310) | func (x *MagickImageDecodeRequest) ProtoReflect() protoreflect.Message { method Descriptor (line 323) | func (*MagickImageDecodeRequest) Descriptor() ([]byte, []int) { method GetImage (line 327) | func (x *MagickImageDecodeRequest) GetImage() []byte { method GetTargetColorSpace (line 334) | func (x *MagickImageDecodeRequest) GetTargetColorSpace() string { type MagickImageDecodeResponse (line 341) | type MagickImageDecodeResponse struct method Reset (line 355) | func (x *MagickImageDecodeResponse) Reset() { method String (line 364) | func (x *MagickImageDecodeResponse) String() string { method ProtoMessage (line 368) | func (*MagickImageDecodeResponse) ProtoMessage() {} method ProtoReflect (line 370) | func (x *MagickImageDecodeResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 383) | func (*MagickImageDecodeResponse) Descriptor() ([]byte, []int) { method GetError (line 387) | func (x *MagickImageDecodeResponse) GetError() *code.CgoError { method GetCvMatPointer (line 394) | func (x *MagickImageDecodeResponse) GetCvMatPointer() int64 { method GetRows (line 401) | func (x *MagickImageDecodeResponse) GetRows() int64 { method GetColumns (line 408) | func (x *MagickImageDecodeResponse) GetColumns() int64 { method GetMagick (line 415) | func (x *MagickImageDecodeResponse) GetMagick() string { method GetOrientationType (line 422) | func (x *MagickImageDecodeResponse) GetOrientationType() OrientationTy... method GetColorspaceType (line 429) | func (x *MagickImageDecodeResponse) GetColorspaceType() ColorspaceType { function file_gocv_gocv_magick_proto_rawDescGZIP (line 536) | func file_gocv_gocv_magick_proto_rawDescGZIP() []byte { function init (line 566) | func init() { file_gocv_gocv_magick_proto_init() } function file_gocv_gocv_magick_proto_init (line 567) | func file_gocv_gocv_magick_proto_init() { FILE: pkg/gocv/cgo/api/openapi-spec/gocv/gocv.magick.pb.h type TableStruct (line 40) | struct TableStruct { function namespace (line 50) | namespace sdk { function namespace (line 68) | namespace google { function namespace (line 78) | namespace gocv { function namespace (line 1069) | namespace google { FILE: pkg/gocv/cgo/api/openapi-spec/types/code/code.error.go method Error (line 29) | func (x *CgoError) Error() string { FILE: pkg/gocv/cgo/api/openapi-spec/types/code/sdk-go.code.pb.go constant _ (line 18) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 20) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Code (line 23) | type Code method Enum (line 217) | func (x Code) Enum() *Code { method String (line 223) | func (x Code) String() string { method Descriptor (line 227) | func (Code) Descriptor() protoreflect.EnumDescriptor { method Type (line 231) | func (Code) Type() protoreflect.EnumType { method Number (line 235) | func (x Code) Number() protoreflect.EnumNumber { method EnumDescriptor (line 240) | func (Code) EnumDescriptor() ([]byte, []int) { constant Code_OK (line 27) | Code_OK Code = 0 constant Code_Canceled (line 33) | Code_Canceled Code = 1 constant Code_Unknown (line 42) | Code_Unknown Code = 2 constant Code_InvalidArgument (line 49) | Code_InvalidArgument Code = 3 constant Code_DeadlineExceeded (line 58) | Code_DeadlineExceeded Code = 4 constant Code_NotFound (line 63) | Code_NotFound Code = 5 constant Code_AlreadyExists (line 68) | Code_AlreadyExists Code = 6 constant Code_PermissionDenied (line 78) | Code_PermissionDenied Code = 7 constant Code_ResourceExhausted (line 85) | Code_ResourceExhausted Code = 8 constant Code_FailedPrecondition (line 107) | Code_FailedPrecondition Code = 9 constant Code_Aborted (line 116) | Code_Aborted Code = 10 constant Code_OutOfRange (line 134) | Code_OutOfRange Code = 11 constant Code_Unimplemented (line 143) | Code_Unimplemented Code = 12 constant Code_Internal (line 150) | Code_Internal Code = 13 constant Code_Unavailable (line 161) | Code_Unavailable Code = 14 constant Code_DataLoss (line 165) | Code_DataLoss Code = 15 constant Code_Unauthenticated (line 172) | Code_Unauthenticated Code = 16 type CgoError (line 244) | type CgoError struct method Reset (line 255) | func (x *CgoError) Reset() { method String (line 264) | func (x *CgoError) String() string { method ProtoMessage (line 268) | func (*CgoError) ProtoMessage() {} method ProtoReflect (line 270) | func (x *CgoError) ProtoReflect() protoreflect.Message { method Descriptor (line 283) | func (*CgoError) Descriptor() ([]byte, []int) { method GetErrorCode (line 287) | func (x *CgoError) GetErrorCode() Code { method GetErrorMessage (line 294) | func (x *CgoError) GetErrorMessage() string { method GetSdkErrorCode (line 301) | func (x *CgoError) GetSdkErrorCode() int32 { method GetSdkErrorMessage (line 308) | func (x *CgoError) GetSdkErrorMessage() string { function file_types_code_sdk_go_code_proto_rawDescGZIP (line 364) | func file_types_code_sdk_go_code_proto_rawDescGZIP() []byte { function init (line 386) | func init() { file_types_code_sdk_go_code_proto_init() } function file_types_code_sdk_go_code_proto_init (line 387) | func file_types_code_sdk_go_code_proto_init() { FILE: pkg/gocv/cgo/api/openapi-spec/types/code/sdk-go.code.pb.h type TableStruct (line 39) | struct TableStruct { function namespace (line 49) | namespace sdk { function namespace (line 58) | namespace google { function namespace (line 64) | namespace types { function namespace (line 398) | namespace google { FILE: pkg/gocv/cgo/api/openapi-spec/types/sdk-go.types.pb.go constant _ (line 18) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 20) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) constant Code_OK (line 27) | Code_OK = code.Code_OK constant Code_Canceled (line 28) | Code_Canceled = code.Code_Canceled constant Code_Unknown (line 29) | Code_Unknown = code.Code_Unknown constant Code_InvalidArgument (line 30) | Code_InvalidArgument = code.Code_InvalidArgument constant Code_DeadlineExceeded (line 31) | Code_DeadlineExceeded = code.Code_DeadlineExceeded constant Code_NotFound (line 32) | Code_NotFound = code.Code_NotFound constant Code_AlreadyExists (line 33) | Code_AlreadyExists = code.Code_AlreadyExists constant Code_PermissionDenied (line 34) | Code_PermissionDenied = code.Code_PermissionDenied constant Code_ResourceExhausted (line 35) | Code_ResourceExhausted = code.Code_ResourceExhausted constant Code_FailedPrecondition (line 36) | Code_FailedPrecondition = code.Code_FailedPrecondition constant Code_Aborted (line 37) | Code_Aborted = code.Code_Aborted constant Code_OutOfRange (line 38) | Code_OutOfRange = code.Code_OutOfRange constant Code_Unimplemented (line 39) | Code_Unimplemented = code.Code_Unimplemented constant Code_Internal (line 40) | Code_Internal = code.Code_Internal constant Code_Unavailable (line 41) | Code_Unavailable = code.Code_Unavailable constant Code_DataLoss (line 42) | Code_DataLoss = code.Code_DataLoss constant Code_Unauthenticated (line 43) | Code_Unauthenticated = code.Code_Unauthenticated function init (line 75) | func init() { file_types_sdk_go_types_proto_init() } function file_types_sdk_go_types_proto_init (line 76) | func file_types_sdk_go_types_proto_init() { FILE: pkg/gocv/cgo/api/openapi-spec/types/sdk-go.types.pb.h type TableStruct (line 37) | struct TableStruct { function namespace (line 47) | namespace sdk { function namespace (line 53) | namespace sdk { FILE: pkg/gocv/cgo/gocv/gocv.go function NewMagickInitializeMagickRequest (line 30) | func NewMagickInitializeMagickRequest() *gocv.MagickInitializeMagickRequ... function NewMagickImageDecodeRequest (line 36) | func NewMagickImageDecodeRequest() *gocv.MagickImageDecodeRequest { FILE: pkg/gocv/cgo/gocv/gocv_test.go function TestMagickInitializeMagick (line 31) | func TestMagickInitializeMagick(t *testing.T) { function TestMagickImageDecode (line 34) | func TestMagickImageDecode(t *testing.T) { FILE: pkg/gocv/cgo/gocv/magick_linux_amd64.cpp function sdk_gocv_magick_initialize_magick (line 8) | void sdk_gocv_magick_initialize_magick(void* req_data, int req_data_len, function sdk_gocv_magick_image_decode (line 52) | void sdk_gocv_magick_image_decode(void* req_data, int req_data_len, FILE: pkg/gocv/cgo/gocv/magick_linux_amd64.go function init (line 45) | func init() { function MagickInitializeMagick (line 52) | func MagickInitializeMagick(req *gocvpb.MagickInitializeMagickRequest) e... function MagickImageDecode (line 92) | func MagickImageDecode(req *gocvpb.MagickImageDecodeRequest) (*gocvpb.Ma... FILE: pkg/gocv/cgo/swig/gocv/gocv.go type _ (line 109) | type _ type _swig_fnptr (line 117) | type _swig_fnptr type _swig_memberptr (line 118) | type _swig_memberptr function getSwigcptr (line 121) | func getSwigcptr(v interface { Swigcptr() uintptr }) uintptr { type _ (line 129) | type _ function cgo_panic__gocv_ba346308b44e7b91 (line 132) | func cgo_panic__gocv_ba346308b44e7b91(p *byte) { type swig_gostring (line 143) | type swig_gostring struct function swigCopyString (line 144) | func swigCopyString(s string) string { function Swig_free (line 151) | func Swig_free(arg1 uintptr) { function Swig_malloc (line 156) | func Swig_malloc(arg1 int) (_swig_ret uintptr) { type SwigcptrMagickInitializeMagickRequest (line 163) | type SwigcptrMagickInitializeMagickRequest method Swigcptr (line 165) | func (p SwigcptrMagickInitializeMagickRequest) Swigcptr() uintptr { method SwigIsMagickInitializeMagickRequest (line 169) | func (p SwigcptrMagickInitializeMagickRequest) SwigIsMagickInitializeM... method SetPath (line 172) | func (arg1 SwigcptrMagickInitializeMagickRequest) SetPath(arg2 string) { method GetPath (line 181) | func (arg1 SwigcptrMagickInitializeMagickRequest) GetPath() (_swig_ret... function NewMagickInitializeMagickRequest (line 191) | func NewMagickInitializeMagickRequest() (_swig_ret MagickInitializeMagic... function DeleteMagickInitializeMagickRequest (line 197) | func DeleteMagickInitializeMagickRequest(arg1 MagickInitializeMagickRequ... type MagickInitializeMagickRequest (line 202) | type MagickInitializeMagickRequest interface type SwigcptrMagickInitializeMagickResponse (line 209) | type SwigcptrMagickInitializeMagickResponse method Swigcptr (line 211) | func (p SwigcptrMagickInitializeMagickResponse) Swigcptr() uintptr { method SwigIsMagickInitializeMagickResponse (line 215) | func (p SwigcptrMagickInitializeMagickResponse) SwigIsMagickInitialize... function NewMagickInitializeMagickResponse (line 218) | func NewMagickInitializeMagickResponse() (_swig_ret MagickInitializeMagi... function DeleteMagickInitializeMagickResponse (line 224) | func DeleteMagickInitializeMagickResponse(arg1 MagickInitializeMagickRes... type MagickInitializeMagickResponse (line 229) | type MagickInitializeMagickResponse interface type SwigcptrMagickImageDecodeRequest (line 234) | type SwigcptrMagickImageDecodeRequest method Swigcptr (line 236) | func (p SwigcptrMagickImageDecodeRequest) Swigcptr() uintptr { method SwigIsMagickImageDecodeRequest (line 240) | func (p SwigcptrMagickImageDecodeRequest) SwigIsMagickImageDecodeReque... method SetImage (line 243) | func (arg1 SwigcptrMagickImageDecodeRequest) SetImage(arg2 string) { method GetImage (line 252) | func (arg1 SwigcptrMagickImageDecodeRequest) GetImage() (_swig_ret str... method SetTarget_color_space (line 262) | func (arg1 SwigcptrMagickImageDecodeRequest) SetTarget_color_space(arg... method GetTarget_color_space (line 271) | func (arg1 SwigcptrMagickImageDecodeRequest) GetTarget_color_space() (... function NewMagickImageDecodeRequest (line 281) | func NewMagickImageDecodeRequest() (_swig_ret MagickImageDecodeRequest) { function DeleteMagickImageDecodeRequest (line 287) | func DeleteMagickImageDecodeRequest(arg1 MagickImageDecodeRequest) { type MagickImageDecodeRequest (line 292) | type MagickImageDecodeRequest interface type GocvOrientationType (line 301) | type GocvOrientationType function _swig_getUndefinedOrientation (line 302) | func _swig_getUndefinedOrientation() (_swig_ret GocvOrientationType) { function _swig_getTopLeftOrientation (line 309) | func _swig_getTopLeftOrientation() (_swig_ret GocvOrientationType) { function _swig_getTopRightOrientation (line 316) | func _swig_getTopRightOrientation() (_swig_ret GocvOrientationType) { function _swig_getBottomRightOrientation (line 323) | func _swig_getBottomRightOrientation() (_swig_ret GocvOrientationType) { function _swig_getBottomLeftOrientation (line 330) | func _swig_getBottomLeftOrientation() (_swig_ret GocvOrientationType) { function _swig_getLeftTopOrientation (line 337) | func _swig_getLeftTopOrientation() (_swig_ret GocvOrientationType) { function _swig_getRightTopOrientation (line 344) | func _swig_getRightTopOrientation() (_swig_ret GocvOrientationType) { function _swig_getRightBottomOrientation (line 351) | func _swig_getRightBottomOrientation() (_swig_ret GocvOrientationType) { function _swig_getLeftBottomOrientation (line 358) | func _swig_getLeftBottomOrientation() (_swig_ret GocvOrientationType) { type GocvColorspaceType (line 365) | type GocvColorspaceType function _swig_getUndefinedColorspace (line 366) | func _swig_getUndefinedColorspace() (_swig_ret GocvColorspaceType) { function _swig_getRGBColorspace (line 373) | func _swig_getRGBColorspace() (_swig_ret GocvColorspaceType) { function _swig_getGRAYColorspace (line 380) | func _swig_getGRAYColorspace() (_swig_ret GocvColorspaceType) { function _swig_getTransparentColorspace (line 387) | func _swig_getTransparentColorspace() (_swig_ret GocvColorspaceType) { function _swig_getOHTAColorspace (line 394) | func _swig_getOHTAColorspace() (_swig_ret GocvColorspaceType) { function _swig_getXYZColorspace (line 401) | func _swig_getXYZColorspace() (_swig_ret GocvColorspaceType) { function _swig_getYCCColorspace (line 408) | func _swig_getYCCColorspace() (_swig_ret GocvColorspaceType) { function _swig_getYIQColorspace (line 415) | func _swig_getYIQColorspace() (_swig_ret GocvColorspaceType) { function _swig_getYPbPrColorspace (line 422) | func _swig_getYPbPrColorspace() (_swig_ret GocvColorspaceType) { function _swig_getYUVColorspace (line 429) | func _swig_getYUVColorspace() (_swig_ret GocvColorspaceType) { function _swig_getCMYKColorspace (line 436) | func _swig_getCMYKColorspace() (_swig_ret GocvColorspaceType) { function _swig_getsRGBColorspace (line 443) | func _swig_getsRGBColorspace() (_swig_ret GocvColorspaceType) { function _swig_getHSLColorspace (line 450) | func _swig_getHSLColorspace() (_swig_ret GocvColorspaceType) { function _swig_getHWBColorspace (line 457) | func _swig_getHWBColorspace() (_swig_ret GocvColorspaceType) { function _swig_getLABColorspace (line 464) | func _swig_getLABColorspace() (_swig_ret GocvColorspaceType) { function _swig_getCineonLogRGBColorspace (line 471) | func _swig_getCineonLogRGBColorspace() (_swig_ret GocvColorspaceType) { function _swig_getRec601LumaColorspace (line 478) | func _swig_getRec601LumaColorspace() (_swig_ret GocvColorspaceType) { function _swig_getRec601YCbCrColorspace (line 485) | func _swig_getRec601YCbCrColorspace() (_swig_ret GocvColorspaceType) { function _swig_getRec709LumaColorspace (line 492) | func _swig_getRec709LumaColorspace() (_swig_ret GocvColorspaceType) { function _swig_getRec709YCbCrColorspace (line 499) | func _swig_getRec709YCbCrColorspace() (_swig_ret GocvColorspaceType) { type SwigcptrMagickImageDecodeResponse (line 506) | type SwigcptrMagickImageDecodeResponse method Swigcptr (line 508) | func (p SwigcptrMagickImageDecodeResponse) Swigcptr() uintptr { method SwigIsMagickImageDecodeResponse (line 512) | func (p SwigcptrMagickImageDecodeResponse) SwigIsMagickImageDecodeResp... method SetMat (line 515) | func (arg1 SwigcptrMagickImageDecodeResponse) SetMat(arg2 Cv_Mat) { method GetMat (line 521) | func (arg1 SwigcptrMagickImageDecodeResponse) GetMat() (_swig_ret Cv_M... method SetRows (line 528) | func (arg1 SwigcptrMagickImageDecodeResponse) SetRows(arg2 int) { method GetRows (line 534) | func (arg1 SwigcptrMagickImageDecodeResponse) GetRows() (_swig_ret int) { method SetColumns (line 541) | func (arg1 SwigcptrMagickImageDecodeResponse) SetColumns(arg2 int) { method GetColumns (line 547) | func (arg1 SwigcptrMagickImageDecodeResponse) GetColumns() (_swig_ret ... method SetMagick (line 554) | func (arg1 SwigcptrMagickImageDecodeResponse) SetMagick(arg2 string) { method GetMagick (line 563) | func (arg1 SwigcptrMagickImageDecodeResponse) GetMagick() (_swig_ret s... method SetOrientation_type (line 573) | func (arg1 SwigcptrMagickImageDecodeResponse) SetOrientation_type(arg2... method GetOrientation_type (line 579) | func (arg1 SwigcptrMagickImageDecodeResponse) GetOrientation_type() (_... method SetColorspace_type (line 586) | func (arg1 SwigcptrMagickImageDecodeResponse) SetColorspace_type(arg2 ... method GetColorspace_type (line 592) | func (arg1 SwigcptrMagickImageDecodeResponse) GetColorspace_type() (_s... function NewMagickImageDecodeResponse (line 599) | func NewMagickImageDecodeResponse() (_swig_ret MagickImageDecodeResponse) { function DeleteMagickImageDecodeResponse (line 605) | func DeleteMagickImageDecodeResponse(arg1 MagickImageDecodeResponse) { type MagickImageDecodeResponse (line 610) | type MagickImageDecodeResponse interface type SwigcptrWrapped_MagicImage (line 627) | type SwigcptrWrapped_MagicImage method Swigcptr (line 629) | func (p SwigcptrWrapped_MagicImage) Swigcptr() uintptr { method SwigIsWrapped_MagicImage (line 633) | func (p SwigcptrWrapped_MagicImage) SwigIsWrapped_MagicImage() { method Wrapped_MagickImageDecode (line 653) | func (arg1 SwigcptrWrapped_MagicImage) Wrapped_MagickImageDecode(arg2 ... method MagickImageDecode (line 694) | func (arg SwigcptrWrapped_MagicImage) MagickImageDecode(req MagickImag... function NewWrapped_MagicImage (line 636) | func NewWrapped_MagicImage() (_swig_ret Wrapped_MagicImage) { function DeleteWrapped_MagicImage (line 642) | func DeleteWrapped_MagicImage(arg1 Wrapped_MagicImage) { function Wrapped_MagicImageMagickInitializeMagick (line 647) | func Wrapped_MagicImageMagickInitializeMagick(arg1 MagickInitializeMagic... type Wrapped_MagicImage (line 660) | type Wrapped_MagicImage interface type MagicImage (line 668) | type MagicImage interface function NewMagicImage (line 673) | func NewMagicImage() MagicImage { function catch (line 681) | func catch(err *error) { function MagickInitializeMagick (line 687) | func MagickInitializeMagick(req MagickInitializeMagickRequest) (resp Mag... type SwigcptrCv_Mat (line 703) | type SwigcptrCv_Mat method Swigcptr (line 707) | func (p SwigcptrCv_Mat) Swigcptr() uintptr { type Cv_Mat (line 704) | type Cv_Mat interface function swigDirectorAdd (line 719) | func swigDirectorAdd(v interface{}) int { function swigDirectorLookup (line 731) | func swigDirectorLookup(c int) interface{} { function swigDirectorDelete (line 741) | func swigDirectorDelete(c int) { FILE: pkg/gocv/cgo/swig/gocv/gocv.h type MagickInitializeMagickRequest (line 9) | struct MagickInitializeMagickRequest { type MagickInitializeMagickResponse (line 13) | struct MagickInitializeMagickResponse {} type MagickImageDecodeRequest (line 15) | struct MagickImageDecodeRequest { type OrientationType (line 20) | enum OrientationType { type ColorspaceType (line 33) | enum ColorspaceType { type MagickImageDecodeResponse (line 59) | struct MagickImageDecodeResponse { function class (line 69) | class MagicImage { FILE: pkg/gocv/cgo/swig/gocv/gocv_linux_amd64.cpp type gocv (line 7) | namespace gocv { FILE: pkg/gocv/cgo/swig/gocv/gocv_test.go function TestMagickInitializeMagick (line 10) | func TestMagickInitializeMagick(t *testing.T) { function TestMagickImageDecode (line 13) | func TestMagickImageDecode(t *testing.T) { FILE: pkg/gocv/cgo/swig/gocv/gocv_wrap.cxx function _swig_gopanic (line 17) | static void _swig_gopanic(const char *p) { function _gostring_ (line 180) | static _gostring_ Swig_AllocateString(const char *p, size_t l) { type Swig (line 213) | namespace Swig { class DirectorException (line 215) | class DirectorException : public std::exception { type GCItem (line 222) | struct GCItem { type GCItem_var (line 226) | struct GCItem_var { method GCItem_var (line 227) | GCItem_var(GCItem *item = 0) : _item(item) { method GCItem_var (line 230) | GCItem_var& operator=(GCItem *item) { method GCItem (line 241) | GCItem* operator->() { type GCItem_T (line 250) | struct GCItem_T : GCItem { method GCItem_T (line 251) | GCItem_T(Type *ptr) : _ptr(ptr) { class Swig_memory (line 263) | class Swig_memory { method swig_acquire_pointer (line 266) | void swig_acquire_pointer(Type* vptr) { function swig_acquire_pointer (line 277) | static void swig_acquire_pointer(Swig_memory** pmem, Type* ptr) { class SwigValueWrapper (line 287) | class SwigValueWrapper { type SwigSmartPointer (line 288) | struct SwigSmartPointer { method SwigSmartPointer (line 290) | SwigSmartPointer(T *p) : ptr(p) { } method SwigSmartPointer (line 292) | SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr... method reset (line 293) | void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; } method SwigValueWrapper (line 298) | SwigValueWrapper() : pointer(0) { } method SwigValueWrapper (line 299) | SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t... method SwigValueWrapper (line 301) | SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::m... method T (line 306) | T *operator&() const { return pointer.ptr; } method reset (line 307) | static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); } function T (line 319) | T SwigValueInit() { function Swig_free (line 332) | static void Swig_free(void* p) { function _wrap_Swig_free_gocv_ba346308b44e7b91 (line 370) | void _wrap_Swig_free_gocv_ba346308b44e7b91(void *_swig_go_0) { function _wrap_MagickInitializeMagickRequest_path_set_gocv_ba346308b44e7b91 (line 393) | void _wrap_MagickInitializeMagickRequest_path_set_gocv_ba346308b44e7b91(... function _gostring_ (line 408) | _gostring_ _wrap_MagickInitializeMagickRequest_path_get_gocv_ba346308b44... function _wrap_delete_MagickInitializeMagickRequest_gocv_ba346308b44e7b91 (line 438) | void _wrap_delete_MagickInitializeMagickRequest_gocv_ba346308b44e7b91(go... function _wrap_delete_MagickInitializeMagickResponse_gocv_ba346308b44e7b91 (line 471) | void _wrap_delete_MagickInitializeMagickResponse_gocv_ba346308b44e7b91(g... function _wrap_MagickImageDecodeRequest_image_set_gocv_ba346308b44e7b91 (line 487) | void _wrap_MagickImageDecodeRequest_image_set_gocv_ba346308b44e7b91(gocv... function _gostring_ (line 502) | _gostring_ _wrap_MagickImageDecodeRequest_image_get_gocv_ba346308b44e7b9... function _wrap_MagickImageDecodeRequest_target_color_space_set_gocv_ba346308b44e7b91 (line 515) | void _wrap_MagickImageDecodeRequest_target_color_space_set_gocv_ba346308... function _gostring_ (line 530) | _gostring_ _wrap_MagickImageDecodeRequest_target_color_space_get_gocv_ba... function _wrap_delete_MagickImageDecodeRequest_gocv_ba346308b44e7b91 (line 560) | void _wrap_delete_MagickImageDecodeRequest_gocv_ba346308b44e7b91(gocv::M... function intgo (line 576) | intgo _wrap_UndefinedOrientation_gocv_ba346308b44e7b91() { function intgo (line 594) | intgo _wrap_TopLeftOrientation_gocv_ba346308b44e7b91() { function intgo (line 612) | intgo _wrap_TopRightOrientation_gocv_ba346308b44e7b91() { function intgo (line 630) | intgo _wrap_BottomRightOrientation_gocv_ba346308b44e7b91() { function intgo (line 648) | intgo _wrap_BottomLeftOrientation_gocv_ba346308b44e7b91() { function intgo (line 666) | intgo _wrap_LeftTopOrientation_gocv_ba346308b44e7b91() { function intgo (line 684) | intgo _wrap_RightTopOrientation_gocv_ba346308b44e7b91() { function intgo (line 702) | intgo _wrap_RightBottomOrientation_gocv_ba346308b44e7b91() { function intgo (line 720) | intgo _wrap_LeftBottomOrientation_gocv_ba346308b44e7b91() { function intgo (line 738) | intgo _wrap_UndefinedColorspace_gocv_ba346308b44e7b91() { function intgo (line 756) | intgo _wrap_RGBColorspace_gocv_ba346308b44e7b91() { function intgo (line 774) | intgo _wrap_GRAYColorspace_gocv_ba346308b44e7b91() { function intgo (line 792) | intgo _wrap_TransparentColorspace_gocv_ba346308b44e7b91() { function intgo (line 810) | intgo _wrap_OHTAColorspace_gocv_ba346308b44e7b91() { function intgo (line 828) | intgo _wrap_XYZColorspace_gocv_ba346308b44e7b91() { function intgo (line 846) | intgo _wrap_YCCColorspace_gocv_ba346308b44e7b91() { function intgo (line 864) | intgo _wrap_YIQColorspace_gocv_ba346308b44e7b91() { function intgo (line 882) | intgo _wrap_YPbPrColorspace_gocv_ba346308b44e7b91() { function intgo (line 900) | intgo _wrap_YUVColorspace_gocv_ba346308b44e7b91() { function intgo (line 918) | intgo _wrap_CMYKColorspace_gocv_ba346308b44e7b91() { function intgo (line 936) | intgo _wrap_sRGBColorspace_gocv_ba346308b44e7b91() { function intgo (line 954) | intgo _wrap_HSLColorspace_gocv_ba346308b44e7b91() { function intgo (line 972) | intgo _wrap_HWBColorspace_gocv_ba346308b44e7b91() { function intgo (line 990) | intgo _wrap_LABColorspace_gocv_ba346308b44e7b91() { function intgo (line 1008) | intgo _wrap_CineonLogRGBColorspace_gocv_ba346308b44e7b91() { function intgo (line 1026) | intgo _wrap_Rec601LumaColorspace_gocv_ba346308b44e7b91() { function intgo (line 1044) | intgo _wrap_Rec601YCbCrColorspace_gocv_ba346308b44e7b91() { function intgo (line 1062) | intgo _wrap_Rec709LumaColorspace_gocv_ba346308b44e7b91() { function intgo (line 1080) | intgo _wrap_Rec709YCbCrColorspace_gocv_ba346308b44e7b91() { function _wrap_MagickImageDecodeResponse_mat_set_gocv_ba346308b44e7b91 (line 1098) | void _wrap_MagickImageDecodeResponse_mat_set_gocv_ba346308b44e7b91(gocv:... function _wrap_MagickImageDecodeResponse_rows_set_gocv_ba346308b44e7b91 (line 1130) | void _wrap_MagickImageDecodeResponse_rows_set_gocv_ba346308b44e7b91(gocv... function intgo (line 1142) | intgo _wrap_MagickImageDecodeResponse_rows_get_gocv_ba346308b44e7b91(goc... function _wrap_MagickImageDecodeResponse_columns_set_gocv_ba346308b44e7b91 (line 1155) | void _wrap_MagickImageDecodeResponse_columns_set_gocv_ba346308b44e7b91(g... function intgo (line 1167) | intgo _wrap_MagickImageDecodeResponse_columns_get_gocv_ba346308b44e7b91(... function _wrap_MagickImageDecodeResponse_magick_set_gocv_ba346308b44e7b91 (line 1180) | void _wrap_MagickImageDecodeResponse_magick_set_gocv_ba346308b44e7b91(go... function _gostring_ (line 1195) | _gostring_ _wrap_MagickImageDecodeResponse_magick_get_gocv_ba346308b44e7... function _wrap_MagickImageDecodeResponse_orientation_type_set_gocv_ba346308b44e7b91 (line 1208) | void _wrap_MagickImageDecodeResponse_orientation_type_set_gocv_ba346308b... function intgo (line 1220) | intgo _wrap_MagickImageDecodeResponse_orientation_type_get_gocv_ba346308... function _wrap_MagickImageDecodeResponse_colorspace_type_set_gocv_ba346308b44e7b91 (line 1233) | void _wrap_MagickImageDecodeResponse_colorspace_type_set_gocv_ba346308b4... function intgo (line 1245) | intgo _wrap_MagickImageDecodeResponse_colorspace_type_get_gocv_ba346308b... function _wrap_delete_MagickImageDecodeResponse_gocv_ba346308b44e7b91 (line 1275) | void _wrap_delete_MagickImageDecodeResponse_gocv_ba346308b44e7b91(gocv::... function _wrap_delete_Wrapped_MagicImage_gocv_ba346308b44e7b91 (line 1308) | void _wrap_delete_Wrapped_MagicImage_gocv_ba346308b44e7b91(gocv::MagicIm... function _wrap_Wrapped_MagicImage_MagickInitializeMagick_gocv_ba346308b44e7b91 (line 1324) | void _wrap_Wrapped_MagicImage_MagickInitializeMagick_gocv_ba346308b44e7b... function _wrap_Wrapped_MagicImage_Wrapped_MagickImageDecode_gocv_ba346308b44e7b91 (line 1342) | void _wrap_Wrapped_MagicImage_Wrapped_MagickImageDecode_gocv_ba346308b44... FILE: pkg/gocv/cgo/swig/pycv/pycv.go type _ (line 75) | type _ type _swig_fnptr (line 83) | type _swig_fnptr type _swig_memberptr (line 84) | type _swig_memberptr function getSwigcptr (line 87) | func getSwigcptr(v interface { Swigcptr() uintptr }) uintptr { type _ (line 95) | type _ function cgo_panic__pycv_ffa8ea6aa3be9035 (line 98) | func cgo_panic__pycv_ffa8ea6aa3be9035(p *byte) { type swig_gostring (line 109) | type swig_gostring struct function swigCopyString (line 110) | func swigCopyString(s string) string { function Swig_free (line 117) | func Swig_free(arg1 uintptr) { function Swig_malloc (line 122) | func Swig_malloc(arg1 int) (_swig_ret uintptr) { type SwigcptrLocalInitRequest (line 129) | type SwigcptrLocalInitRequest method Swigcptr (line 131) | func (p SwigcptrLocalInitRequest) Swigcptr() uintptr { method SwigIsLocalInitRequest (line 135) | func (p SwigcptrLocalInitRequest) SwigIsLocalInitRequest() { method SetGpu_id (line 138) | func (arg1 SwigcptrLocalInitRequest) SetGpu_id(arg2 int) { method GetGpu_id (line 144) | func (arg1 SwigcptrLocalInitRequest) GetGpu_id() (_swig_ret int) { method SetSdk_dir (line 151) | func (arg1 SwigcptrLocalInitRequest) SetSdk_dir(arg2 string) { method GetSdk_dir (line 160) | func (arg1 SwigcptrLocalInitRequest) GetSdk_dir() (_swig_ret string) { method SetModel_dir (line 170) | func (arg1 SwigcptrLocalInitRequest) SetModel_dir(arg2 string) { method GetModel_dir (line 179) | func (arg1 SwigcptrLocalInitRequest) GetModel_dir() (_swig_ret string) { function NewLocalInitRequest (line 189) | func NewLocalInitRequest() (_swig_ret LocalInitRequest) { function DeleteLocalInitRequest (line 195) | func DeleteLocalInitRequest(arg1 LocalInitRequest) { type LocalInitRequest (line 200) | type LocalInitRequest interface type SwigcptrLocalInitResponse (line 211) | type SwigcptrLocalInitResponse method Swigcptr (line 213) | func (p SwigcptrLocalInitResponse) Swigcptr() uintptr { method SwigIsLocalInitResponse (line 217) | func (p SwigcptrLocalInitResponse) SwigIsLocalInitResponse() { function NewLocalInitResponse (line 220) | func NewLocalInitResponse() (_swig_ret LocalInitResponse) { function DeleteLocalInitResponse (line 226) | func DeleteLocalInitResponse(arg1 LocalInitResponse) { type LocalInitResponse (line 231) | type LocalInitResponse interface type SwigcptrDoRequest (line 236) | type SwigcptrDoRequest method Swigcptr (line 238) | func (p SwigcptrDoRequest) Swigcptr() uintptr { method SwigIsDoRequest (line 242) | func (p SwigcptrDoRequest) SwigIsDoRequest() { method SetArg1 (line 245) | func (arg1 SwigcptrDoRequest) SetArg1(arg2 string) { method GetArg1 (line 254) | func (arg1 SwigcptrDoRequest) GetArg1() (_swig_ret string) { method SetArg2 (line 264) | func (arg1 SwigcptrDoRequest) SetArg2(arg2 string) { method GetArg2 (line 273) | func (arg1 SwigcptrDoRequest) GetArg2() (_swig_ret string) { function NewDoRequest (line 283) | func NewDoRequest() (_swig_ret DoRequest) { function DeleteDoRequest (line 289) | func DeleteDoRequest(arg1 DoRequest) { type DoRequest (line 294) | type DoRequest interface type SwigcptrDoResponse (line 303) | type SwigcptrDoResponse method Swigcptr (line 305) | func (p SwigcptrDoResponse) Swigcptr() uintptr { method SwigIsDoResponse (line 309) | func (p SwigcptrDoResponse) SwigIsDoResponse() { function NewDoResponse (line 312) | func NewDoResponse() (_swig_ret DoResponse) { function DeleteDoResponse (line 318) | func DeleteDoResponse(arg1 DoResponse) { type DoResponse (line 323) | type DoResponse interface type SwigcptrWrapped_PyImage (line 328) | type SwigcptrWrapped_PyImage method Swigcptr (line 330) | func (p SwigcptrWrapped_PyImage) Swigcptr() uintptr { method SwigIsWrapped_PyImage (line 334) | func (p SwigcptrWrapped_PyImage) SwigIsWrapped_PyImage() { method Wrapped_PyImage_LocalInit (line 361) | func (arg1 SwigcptrWrapped_PyImage) Wrapped_PyImage_LocalInit(arg2 Loc... method Wrapped_PyImage_Do (line 368) | func (arg1 SwigcptrWrapped_PyImage) Wrapped_PyImage_Do(arg2 DoRequest,... method LocalInit (line 416) | func (arg SwigcptrWrapped_PyImage) LocalInit(req LocalInitRequest) (re... method Do (line 423) | func (arg SwigcptrWrapped_PyImage) Do(req DoRequest) (resp DoResponse,... function NewWrapped_PyImage (line 337) | func NewWrapped_PyImage() (_swig_ret Wrapped_PyImage) { function DeleteWrapped_PyImage (line 343) | func DeleteWrapped_PyImage(arg1 Wrapped_PyImage) { function Wrapped_PyImageGlobalInit (line 348) | func Wrapped_PyImageGlobalInit(arg1 string, arg2 int) { function Wrapped_PyImageGlobalRelease (line 357) | func Wrapped_PyImageGlobalRelease() { type Wrapped_PyImage (line 375) | type Wrapped_PyImage interface type PyImage (line 384) | type PyImage interface function NewPyImage (line 390) | func NewPyImage() PyImage { function catch (line 398) | func catch(err *error) { function GlobalInit (line 404) | func GlobalInit(model_dir string, gpu_id int) (err error) { function GlobalRelease (line 410) | func GlobalRelease() (err error){ function swigDirectorAdd (line 440) | func swigDirectorAdd(v interface{}) int { function swigDirectorLookup (line 452) | func swigDirectorLookup(c int) interface{} { function swigDirectorDelete (line 462) | func swigDirectorDelete(c int) { FILE: pkg/gocv/cgo/swig/pycv/pycv.h function namespace (line 9) | namespace pybind11 { type LocalInitRequest (line 15) | struct LocalInitRequest { type LocalInitResponse (line 21) | struct LocalInitResponse {} type DoRequest (line 23) | struct DoRequest { type DoResponse (line 28) | struct DoResponse {} function class (line 31) | class PyImage { FILE: pkg/gocv/cgo/swig/pycv/pycv.py function read_image (line 7) | def read_image(image_file_path, base64_format=True): function write_image (line 16) | def write_image(image_data, image_file_path, base64_format=True): class CVSDK (line 27) | class CVSDK: method __init__ (line 28) | def __init__(self, gpu_id: int = -1, **kwargs): method init (line 33) | def init(self, model_dir: str, gpu_id: int = -1, **kwargs): method do (line 66) | def do(self, **kwargs): FILE: pkg/gocv/cgo/swig/pycv/pycv_test.go function TestDo (line 10) | func TestDo(t *testing.T) { FILE: pkg/gocv/cgo/swig/pycv/pycv_wrap.cxx function _swig_gopanic (line 17) | static void _swig_gopanic(const char *p) { function _gostring_ (line 180) | static _gostring_ Swig_AllocateString(const char *p, size_t l) { type Swig (line 213) | namespace Swig { class DirectorException (line 215) | class DirectorException : public std::exception { type GCItem (line 222) | struct GCItem { type GCItem_var (line 226) | struct GCItem_var { method GCItem_var (line 227) | GCItem_var(GCItem *item = 0) : _item(item) { method GCItem_var (line 230) | GCItem_var& operator=(GCItem *item) { method GCItem (line 241) | GCItem* operator->() { type GCItem_T (line 250) | struct GCItem_T : GCItem { method GCItem_T (line 251) | GCItem_T(Type *ptr) : _ptr(ptr) { class Swig_memory (line 263) | class Swig_memory { method swig_acquire_pointer (line 266) | void swig_acquire_pointer(Type* vptr) { function swig_acquire_pointer (line 277) | static void swig_acquire_pointer(Swig_memory** pmem, Type* ptr) { class SwigValueWrapper (line 287) | class SwigValueWrapper { type SwigSmartPointer (line 288) | struct SwigSmartPointer { method SwigSmartPointer (line 290) | SwigSmartPointer(T *p) : ptr(p) { } method SwigSmartPointer (line 292) | SwigSmartPointer& operator=(SwigSmartPointer& rhs) { T* oldptr = ptr... method reset (line 293) | void reset(T *p) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = p; } method SwigValueWrapper (line 298) | SwigValueWrapper() : pointer(0) { } method SwigValueWrapper (line 299) | SwigValueWrapper& operator=(const T& t) { SwigSmartPointer tmp(new T(t... method SwigValueWrapper (line 301) | SwigValueWrapper& operator=(T&& t) { SwigSmartPointer tmp(new T(std::m... method T (line 306) | T *operator&() const { return pointer.ptr; } method reset (line 307) | static void reset(SwigValueWrapper& t, T *p) { t.pointer.reset(p); } function T (line 319) | T SwigValueInit() { function Swig_free (line 332) | static void Swig_free(void* p) { function _wrap_Swig_free_pycv_ffa8ea6aa3be9035 (line 370) | void _wrap_Swig_free_pycv_ffa8ea6aa3be9035(void *_swig_go_0) { function _wrap_LocalInitRequest_gpu_id_set_pycv_ffa8ea6aa3be9035 (line 393) | void _wrap_LocalInitRequest_gpu_id_set_pycv_ffa8ea6aa3be9035(pycv::Local... function intgo (line 405) | intgo _wrap_LocalInitRequest_gpu_id_get_pycv_ffa8ea6aa3be9035(pycv::Loca... function _wrap_LocalInitRequest_sdk_dir_set_pycv_ffa8ea6aa3be9035 (line 418) | void _wrap_LocalInitRequest_sdk_dir_set_pycv_ffa8ea6aa3be9035(pycv::Loca... function _gostring_ (line 433) | _gostring_ _wrap_LocalInitRequest_sdk_dir_get_pycv_ffa8ea6aa3be9035(pycv... function _wrap_LocalInitRequest_model_dir_set_pycv_ffa8ea6aa3be9035 (line 446) | void _wrap_LocalInitRequest_model_dir_set_pycv_ffa8ea6aa3be9035(pycv::Lo... function _gostring_ (line 461) | _gostring_ _wrap_LocalInitRequest_model_dir_get_pycv_ffa8ea6aa3be9035(py... function _wrap_delete_LocalInitRequest_pycv_ffa8ea6aa3be9035 (line 491) | void _wrap_delete_LocalInitRequest_pycv_ffa8ea6aa3be9035(pycv::LocalInit... function _wrap_delete_LocalInitResponse_pycv_ffa8ea6aa3be9035 (line 524) | void _wrap_delete_LocalInitResponse_pycv_ffa8ea6aa3be9035(pycv::LocalIni... function _wrap_DoRequest_arg1_set_pycv_ffa8ea6aa3be9035 (line 540) | void _wrap_DoRequest_arg1_set_pycv_ffa8ea6aa3be9035(pycv::DoRequest *_sw... function _gostring_ (line 555) | _gostring_ _wrap_DoRequest_arg1_get_pycv_ffa8ea6aa3be9035(pycv::DoReques... function _wrap_DoRequest_arg2_set_pycv_ffa8ea6aa3be9035 (line 568) | void _wrap_DoRequest_arg2_set_pycv_ffa8ea6aa3be9035(pycv::DoRequest *_sw... function _gostring_ (line 583) | _gostring_ _wrap_DoRequest_arg2_get_pycv_ffa8ea6aa3be9035(pycv::DoReques... function _wrap_delete_DoRequest_pycv_ffa8ea6aa3be9035 (line 613) | void _wrap_delete_DoRequest_pycv_ffa8ea6aa3be9035(pycv::DoRequest *_swig... function _wrap_delete_DoResponse_pycv_ffa8ea6aa3be9035 (line 646) | void _wrap_delete_DoResponse_pycv_ffa8ea6aa3be9035(pycv::DoResponse *_sw... function _wrap_delete_Wrapped_PyImage_pycv_ffa8ea6aa3be9035 (line 679) | void _wrap_delete_Wrapped_PyImage_pycv_ffa8ea6aa3be9035(pycv::PyImage *_... function _wrap_Wrapped_PyImage_GlobalInit_pycv_ffa8ea6aa3be9035 (line 695) | void _wrap_Wrapped_PyImage_GlobalInit_pycv_ffa8ea6aa3be9035(_gostring_ _... function _wrap_Wrapped_PyImage_GlobalRelease_pycv_ffa8ea6aa3be9035 (line 716) | void _wrap_Wrapped_PyImage_GlobalRelease_pycv_ffa8ea6aa3be9035() { function _wrap_Wrapped_PyImage_Wrapped_PyImage_LocalInit_pycv_ffa8ea6aa3be9035 (line 728) | void _wrap_Wrapped_PyImage_Wrapped_PyImage_LocalInit_pycv_ffa8ea6aa3be90... function _wrap_Wrapped_PyImage_Wrapped_PyImage_Do_pycv_ffa8ea6aa3be9035 (line 748) | void _wrap_Wrapped_PyImage_Wrapped_PyImage_Do_pycv_ffa8ea6aa3be9035(pycv... FILE: pkg/gocv/cgo/swig/types/pybind11/pybind11_mock.h function namespace (line 4) | namespace pybind11 { FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/Magick++/Blob.h function namespace (line 14) | namespace Magick FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/Magick++/CoderInfo.h function namespace (line 16) | namespace Magick FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/Magick++/Color.h function namespace (line 13) | namespace Magick function initPixel (line 318) | inline void Magick::Color::initPixel() function redQuantum (line 326) | inline void Magick::Color::redQuantum ( Magick::Quantum red_ ) function greenQuantum (line 337) | inline void Magick::Color::greenQuantum ( Magick::Quantum green_ ) function blueQuantum (line 348) | inline void Magick::Color::blueQuantum ( Magick::Quantum blue_ ) function alphaQuantum (line 359) | inline void Magick::Color::alphaQuantum ( Magick::Quantum alpha_ ) function Magick (line 377) | inline void Magick::Color::alpha ( double alpha_ ) function Magick (line 381) | inline double Magick::Color::alpha ( void ) const function Magick (line 389) | inline Magick::ColorHSL::ColorHSL ( Magick::PixelPacket* rep_, function Magick (line 398) | inline Magick::ColorGray::ColorGray ( Magick::PixelPacket* rep_, function Magick (line 407) | inline Magick::ColorMono::ColorMono ( Magick::PixelPacket* rep_, function Magick (line 416) | inline Magick::ColorRGB::ColorRGB ( Magick::PixelPacket* rep_, function red (line 422) | inline void Magick::ColorRGB::red ( double red_ ) function red (line 427) | inline double Magick::ColorRGB::red ( void ) const function green (line 432) | inline void Magick::ColorRGB::green ( double green_ ) function green (line 437) | inline double Magick::ColorRGB::green ( void ) const function blue (line 442) | inline void Magick::ColorRGB::blue ( double blue_ ) function blue (line 447) | inline double Magick::ColorRGB::blue ( void ) const function Magick (line 456) | inline Magick::ColorYUV::ColorYUV ( Magick::PixelPacket* rep_, FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/Magick++/Drawable.h function namespace (line 40) | namespace Magick type std (line 97) | typedef std::list CoordinateList; function class (line 151) | class MagickDLLDecl Drawable type std (line 191) | typedef std::list DrawableList; function class (line 207) | class MagickDLLDecl VPathBase function class (line 232) | class MagickDLLDecl VPath type std (line 271) | typedef std::list VPathList; function sx (line 306) | void sx( const double sx_ ) function sx (line 310) | double sx( void ) const function sy (line 315) | void sy( const double sy_ ) function sy (line 319) | double sy( void ) const function rx (line 324) | void rx( const double rx_ ) function rx (line 328) | double rx( void ) const function ry (line 333) | void ry( const double ry_ ) function ry (line 337) | double ry( void ) const function tx (line 342) | void tx( const double tx_ ) function tx (line 346) | double tx( void ) const function ty (line 351) | void ty( const double ty_ ) function ty (line 355) | double ty( void ) const function startX (line 387) | void startX( double startX_ ) function startX (line 391) | double startX( void ) const function startY (line 396) | void startY( double startY_ ) function startY (line 400) | double startY( void ) const function endX (line 405) | void endX( double endX_ ) function endX (line 409) | double endX( void ) const function endY (line 414) | void endY( double endY_ ) function endY (line 418) | double endY( void ) const function startDegrees (line 423) | void startDegrees( double startDegrees_ ) function startDegrees (line 427) | double startDegrees( void ) const function endDegrees (line 432) | void endDegrees( double endDegrees_ ) function endDegrees (line 436) | double endDegrees( void ) const function clip_path (line 530) | void clip_path( const std::string &id_ ) function originX (line 564) | void originX( double originX_ ) function originX (line 568) | double originX( void ) const function originY (line 573) | void originY( double originY_ ) function originY (line 577) | double originY( void ) const function perimX (line 582) | void perimX( double perimX_ ) function perimX (line 586) | double perimX( void ) const function perimY (line 591) | void perimY( double perimY_ ) function perimY (line 595) | double perimY( void ) const function x (line 626) | void x( double x_ ) function x (line 630) | double x( void ) const function y (line 635) | void y( double y_ ) function y (line 639) | double y( void ) const function paintMethod (line 644) | void paintMethod( PaintMethod paintMethod_ ) function PaintMethod (line 648) | PaintMethod paintMethod( void ) const function composition (line 704) | void composition( CompositeOperator composition_ ) function CompositeOperator (line 708) | CompositeOperator composition( void ) const function x (line 716) | void x( double x_ ) function x (line 720) | double x( void ) const function y (line 725) | void y( double y_ ) function y (line 729) | double y( void ) const function width (line 734) | void width( double width_ ) function width (line 738) | double width( void ) const function height (line 743) | void height( double height_ ) function height (line 747) | double height( void ) const function originX (line 791) | void originX( double originX_ ) function originX (line 795) | double originX( void ) const function originY (line 800) | void originY( double originY_ ) function originY (line 804) | double originY( void ) const function radiusX (line 809) | void radiusX( double radiusX_ ) function radiusX (line 813) | double radiusX( void ) const function radiusY (line 818) | void radiusY( double radiusY_ ) function radiusY (line 822) | double radiusY( void ) const function arcStart (line 827) | void arcStart( double arcStart_ ) function arcStart (line 831) | double arcStart( void ) const function arcEnd (line 836) | void arcEnd( double arcEnd_ ) function arcEnd (line 840) | double arcEnd( void ) const function color (line 870) | void color( const Color &color_ ) function Color (line 874) | Color color( void ) const function fillRule (line 900) | void fillRule( const FillRule fillRule_ ) function FillRule (line 904) | FillRule fillRule( void ) const function opacity (line 930) | void opacity( double opacity_ ) function opacity (line 934) | double opacity( void ) const function font (line 963) | void font( const std::string &font_ ) function gravity (line 997) | void gravity( GravityType gravity_ ) function GravityType (line 1001) | GravityType gravity( void ) const function startX (line 1030) | void startX( double startX_ ) function startX (line 1034) | double startX( void ) const function startY (line 1039) | void startY( double startY_ ) function startY (line 1043) | double startY( void ) const function endX (line 1048) | void endX( double endX_ ) function endX (line 1052) | double endX( void ) const function endY (line 1057) | void endY( double endY_ ) function endY (line 1061) | double endY( void ) const function x (line 1092) | void x( double x_ ) function x (line 1096) | double x( void ) const function y (line 1101) | void y( double y_ ) function y (line 1105) | double y( void ) const function paintMethod (line 1110) | void paintMethod( PaintMethod paintMethod_ ) function PaintMethod (line 1114) | PaintMethod paintMethod( void ) const function x (line 1162) | void x( double x_ ) function x (line 1166) | double x( void ) const function y (line 1171) | void y( double y_ ) function y (line 1175) | double y( void ) const function pointSize (line 1201) | void pointSize( double pointSize_ ) function pointSize (line 1205) | double pointSize( void ) const function upperLeftX (line 1362) | void upperLeftX( double upperLeftX_ ) function upperLeftX (line 1366) | double upperLeftX( void ) const function upperLeftY (line 1371) | void upperLeftY( double upperLeftY_ ) function upperLeftY (line 1375) | double upperLeftY( void ) const function lowerRightX (line 1380) | void lowerRightX( double lowerRightX_ ) function lowerRightX (line 1384) | double lowerRightX( void ) const function lowerRightY (line 1389) | void lowerRightY( double lowerRightY_ ) function lowerRightY (line 1393) | double lowerRightY( void ) const function angle (line 1421) | void angle( double angle_ ) function angle (line 1425) | double angle( void ) const function centerX (line 1457) | void centerX( double centerX_ ) function centerX (line 1461) | double centerX( void ) const function centerY (line 1466) | void centerY( double centerY_ ) function centerY (line 1470) | double centerY( void ) const function width (line 1475) | void width( double width_ ) function width (line 1479) | double width( void ) const function hight (line 1484) | void hight( double hight_ ) function hight (line 1488) | double hight( void ) const function cornerWidth (line 1493) | void cornerWidth( double cornerWidth_ ) function cornerWidth (line 1497) | double cornerWidth( void ) const function cornerHeight (line 1502) | void cornerHeight( double cornerHeight_ ) function cornerHeight (line 1506) | double cornerHeight( void ) const function x (line 1537) | void x( double x_ ) function x (line 1541) | double x( void ) const function y (line 1546) | void y( double y_ ) function y (line 1550) | double y( void ) const function angle (line 1576) | void angle( double angle_ ) function angle (line 1580) | double angle( void ) const function angle (line 1605) | void angle( double angle_ ) function angle (line 1609) | double angle( void ) const function offset (line 1669) | void offset( const double offset_ ) function offset (line 1673) | double offset( void ) const function linecap (line 1698) | void linecap( LineCap linecap_ ) function LineCap (line 1702) | LineCap linecap( void ) const function linejoin (line 1727) | void linejoin( LineJoin linejoin_ ) function LineJoin (line 1731) | LineJoin linejoin( void ) const function miterlimit (line 1756) | void miterlimit( unsigned int miterlimit_ ) function miterlimit (line 1760) | unsigned int miterlimit( void ) const function flag (line 1786) | void flag( bool flag_ ) function flag (line 1790) | bool flag( void ) const function color (line 1815) | void color( const Color& color_ ) function Color (line 1819) | Color color( void ) const function opacity (line 1845) | void opacity( double opacity_ ) function opacity (line 1849) | double opacity( void ) const function width (line 1874) | void width( double width_ ) function width (line 1878) | double width( void ) const function encoding (line 1906) | void encoding(const std::string &encoding_) function x (line 1911) | void x( double x_ ) function x (line 1915) | double x( void ) const function y (line 1920) | void y( double y_ ) function y (line 1924) | double y( void ) const function text (line 1929) | void text( const std::string &text_ ) function flag (line 1961) | void flag( bool flag_ ) function flag (line 1965) | bool flag( void ) const function decoration (line 1990) | void decoration( DecorationType decoration_ ) function DecorationType (line 1994) | DecorationType decoration( void ) const function color (line 2019) | void color( const Color& color_ ) function Color (line 2023) | Color color( void ) const function x (line 2049) | void x( double x_ ) function x (line 2053) | double x( void ) const function y (line 2058) | void y( double y_ ) function y (line 2062) | double y( void ) const function x1 (line 2092) | void x1( unsigned long x1_ ) function x1 (line 2096) | unsigned long x1( void ) const function y1 (line 2101) | void y1( unsigned long y1_ ) function y1 (line 2105) | unsigned long y1( void ) const function x2 (line 2110) | void x2( unsigned long x2_ ) function x2 (line 2114) | unsigned long x2( void ) const function y2 (line 2119) | void y2( unsigned long y2_ ) function y2 (line 2123) | unsigned long y2( void ) const function class (line 2138) | class MagickDLLDecl PathArcArgs type std (line 2240) | typedef std::list PathArcArgsList; function class (line 2324) | class MagickDLLDecl PathCurvetoArgs type std (line 2414) | typedef std::list PathCurveToArgsList; function class (line 2526) | class MagickDLLDecl PathQuadraticCurvetoArgs type std (line 2598) | typedef std::list PathQuadraticCurveto... function x (line 2776) | void x( double x_ ) function x (line 2780) | double x( void ) const function x (line 2804) | void x( double x_ ) function x (line 2808) | double x( void ) const function y (line 2834) | void y( double y_ ) function y (line 2838) | double y( void ) const function y (line 2862) | void y( double y_ ) function y (line 2866) | double y( void ) const FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/Magick++/Exception.h function namespace (line 19) | namespace Magick FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/Magick++/Geometry.h function namespace (line 16) | namespace Magick FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/Magick++/Image.h function namespace (line 21) | namespace Magick function reduceNoise (line 1381) | inline void Magick::Image::reduceNoise ( void ) function lineWidth (line 1387) | inline void Magick::Image::lineWidth ( const double lineWidth_ ) function lineWidth (line 1391) | inline double Magick::Image::lineWidth ( void ) const function columns (line 1403) | inline unsigned int Magick::Image::columns ( void ) const function Magick (line 1409) | inline unsigned int Magick::Image::rows ( void ) const FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/Magick++/Include.h function namespace (line 37) | namespace MagickLib function namespace (line 207) | namespace MagickLib function namespace (line 217) | namespace Magick FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/Magick++/Montage.h function namespace (line 19) | namespace Magick function backgroundColor (line 199) | inline void Magick::Montage::backgroundColor ( const Magick::Color &back... function compose (line 208) | inline void Magick::Montage::compose ( Magick::CompositeOperator compose_ ) function fileName (line 217) | inline void Magick::Montage::fileName( const std::string &fileName_ ) function fillColor (line 226) | inline void Magick::Montage::fillColor ( const Color &fill_ ) function font (line 235) | inline void Magick::Montage::font ( const std::string &font_ ) function geometry (line 244) | inline void Magick::Montage::geometry ( const Magick::Geometry &geometry_ ) function gravity (line 253) | inline void Magick::Montage::gravity ( Magick::GravityType gravity_ ) function label (line 263) | inline void Magick::Montage::label( const std::string &label_ ) function penColor (line 272) | inline void Magick::Montage::penColor ( const Color &pen_ ) function pointSize (line 282) | inline void Magick::Montage::pointSize ( unsigned int pointSize_ ) function pointSize (line 286) | inline unsigned int Magick::Montage::pointSize ( void ) const function shadow (line 291) | inline void Magick::Montage::shadow ( bool shadow_ ) function shadow (line 295) | inline bool Magick::Montage::shadow ( void ) const function strokeColor (line 300) | inline void Magick::Montage::strokeColor ( const Color &stroke_ ) function texture (line 309) | inline void Magick::Montage::texture ( const std::string &texture_ ) function tile (line 318) | inline void Magick::Montage::tile ( const Geometry &tile_ ) function title (line 327) | inline void Magick::Montage::title ( const std::string &title_ ) function transparentColor (line 337) | inline void Magick::Montage::transparentColor ( const Magick::Color &tra... function borderColor (line 350) | inline void Magick::MontageFramed::borderColor ( const Magick::Color &bo... function borderWidth (line 359) | inline void Magick::MontageFramed::borderWidth ( unsigned int borderWidt... function borderWidth (line 363) | inline unsigned int Magick::MontageFramed::borderWidth ( void ) const function frameGeometry (line 368) | inline void Magick::MontageFramed::frameGeometry ( const Magick::Geometr... function matteColor (line 377) | inline void Magick::MontageFramed::matteColor ( const Magick::Color &mat... FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/Magick++/Pixels.h function namespace (line 15) | namespace Magick function Magick (line 104) | inline int Magick::Pixels::x ( void ) const function Magick (line 110) | inline int Magick::Pixels::y ( void ) const function columns (line 116) | inline unsigned int Magick::Pixels::columns ( void ) const function Magick (line 122) | inline unsigned int Magick::Pixels::rows ( void ) const FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/Magick++/TypeMetric.h function namespace (line 15) | namespace Magick FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/analyze.h type ImageCharacteristics (line 20) | typedef struct _ImageCharacteristics FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/attribute.h type ImageAttribute (line 20) | typedef struct _ImageAttribute FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/blob.h type BlobInfo (line 29) | typedef struct _BlobInfo BlobInfo; type BlobMode (line 126) | typedef enum type MapMode (line 475) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/color.h type HistogramColorPacket (line 21) | typedef struct _HistogramColorPacket FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/color_lookup.h type ComplianceType (line 21) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/colorspace.h type ColorspaceType (line 88) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/compare.h type HighlightStyle (line 20) | typedef enum type DifferenceImageOptions (line 29) | typedef struct _DifferenceImageOptions type MetricType (line 48) | typedef enum type DifferenceStatistics (line 61) | typedef struct _DifferenceStatistics FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/composite.h type CompositeOptions_t (line 21) | typedef struct _CompositeOptions_t FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/compress.h type Ascii85Info (line 22) | typedef struct _Ascii85Info FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/confirm_access.h type ConfirmAccessMode (line 17) | typedef enum type MagickPassFail (line 28) | typedef MagickPassFail FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/constitute.h type QuantumType (line 25) | typedef enum type QuantumSampleType (line 51) | typedef enum type StorageType (line 61) | typedef enum type ExportPixelAreaOptions (line 74) | typedef struct _ExportPixelAreaOptions type ExportPixelAreaInfo (line 102) | typedef struct _ExportPixelAreaInfo type ImportPixelAreaOptions (line 112) | typedef struct _ImportPixelAreaOptions type ImportPixelAreaInfo (line 134) | typedef struct _ImportPixelAreaInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/delegate.h type DelegateInfo (line 21) | typedef struct _DelegateInfo type gs_main_instance (line 76) | typedef struct gs_main_instance_s gs_main_instance; type GhostscriptVectors (line 95) | typedef struct _GhostscriptVectors FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/draw.h type _DrawContext (line 34) | struct _DrawContext FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/error.h type ExceptionBaseType (line 22) | typedef enum type ExceptionType (line 56) | typedef enum type ExceptionInfo (line 192) | typedef struct _ExceptionInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/forward.h type _Image (line 18) | struct _Image type _Ascii85Info (line 20) | struct _Ascii85Info type _BlobInfo (line 22) | struct _BlobInfo type _CacheInfo (line 24) | struct _CacheInfo type _ImageAttribute (line 26) | struct _ImageAttribute type _SemaphoreInfo (line 28) | struct _SemaphoreInfo type _ThreadViewSet (line 30) | struct _ThreadViewSet FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/image.h type Quantum (line 67) | typedef unsigned char Quantum; type Quantum (line 90) | typedef unsigned short Quantum; type Quantum (line 131) | typedef unsigned int Quantum; type AlphaType (line 165) | typedef enum type ChannelType (line 172) | typedef enum type ClassType (line 188) | typedef enum type CompositeOperator (line 195) | typedef enum type CompressionType (line 247) | typedef enum type DisposeType (line 268) | typedef enum type EndianType (line 276) | typedef enum type FilterTypes (line 284) | typedef enum type GeometryFlags (line 304) | typedef enum type GravityType (line 330) | typedef enum type ImageType (line 356) | typedef enum type InterlaceType (line 371) | typedef enum type MontageMode (line 380) | typedef enum type NoiseType (line 388) | typedef enum type OrientationType (line 404) | typedef enum /* Exif / Row 0 / Column 0 */ type PreviewType (line 418) | typedef enum type RenderingIntent (line 452) | typedef enum type ResolutionType (line 461) | typedef enum type AffineMatrix (line 471) | typedef struct _AffineMatrix type PrimaryInfo (line 482) | typedef struct _PrimaryInfo type ChromaticityInfo (line 490) | typedef struct _ChromaticityInfo type PixelPacket (line 538) | typedef struct _PixelPacket type DoublePixelPacket (line 559) | typedef struct _DoublePixelPacket type FloatPixelPacket (line 568) | typedef struct _FloatPixelPacket type ErrorInfo (line 581) | typedef struct _ErrorInfo type FrameInfo (line 589) | typedef struct _FrameInfo type Quantum (line 602) | typedef Quantum IndexPacket; type LongPixelPacket (line 604) | typedef struct _LongPixelPacket type MontageInfo (line 613) | typedef struct _MontageInfo type ProfileInfo (line 649) | typedef struct _ProfileInfo type RectangleInfo (line 661) | typedef struct _RectangleInfo type SegmentInfo (line 672) | typedef struct _SegmentInfo type _ImageExtra (line 681) | struct _ImageExtra type Image (line 683) | typedef struct _Image type ImageInfo (line 900) | typedef struct _ImageInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/log.h type LogEventType (line 47) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/magick.h type Image (line 24) | typedef Image type CoderClass (line 34) | typedef enum type ExtensionTreatment (line 47) | typedef enum type MagickInfo (line 54) | typedef struct _MagickInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/magick_types.h type magick_int8_t (line 59) | typedef signed char magick_int8_t; type magick_uint8_t (line 60) | typedef unsigned char magick_uint8_t; type magick_int16_t (line 62) | typedef signed short magick_int16_t; type magick_uint16_t (line 63) | typedef unsigned short magick_uint16_t; type magick_int32_t (line 65) | typedef signed int magick_int32_t; type magick_uint32_t (line 67) | typedef unsigned int magick_uint32_t; type magick_int64_t (line 70) | typedef signed __int64 magick_int64_t; type magick_uint64_t (line 72) | typedef unsigned __int64 magick_uint64_t; type magick_uint64_t (line 75) | typedef magick_uint64_t magick_uintmax_t; type magick_uintptr_t (line 79) | typedef unsigned long long magick_uintptr_t; type magick_uintptr_t (line 85) | typedef unsigned long magick_uintptr_t; type magick_int8_t (line 95) | typedef signed char magick_int8_t; type magick_uint8_t (line 96) | typedef unsigned char magick_uint8_t; type magick_int16_t (line 98) | typedef signed short magick_int16_t; type magick_uint16_t (line 99) | typedef unsigned short magick_uint16_t; type magick_int32_t (line 101) | typedef signed int magick_int32_t; type magick_uint32_t (line 103) | typedef unsigned int magick_uint32_t; type magick_int64_t (line 106) | typedef signed long magick_int64_t; type magick_uint64_t (line 108) | typedef unsigned long magick_uint64_t; type magick_uintmax_t (line 111) | typedef unsigned long magick_uintmax_t; type magick_uintptr_t (line 114) | typedef unsigned long magick_uintptr_t; type magick_int64_t (line 126) | typedef magick_int64_t magick_off_t; FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/monitor.h type MagickPassFail (line 22) | typedef MagickPassFail FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/operator.h type QuantumOperator (line 22) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/pixel_cache.h type VirtualPixelMethod (line 24) | typedef enum type _CacheInfoPtr_ (line 36) | typedef _CacheInfoPtr_ Cache; FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/pixel_iterator.h type PixelIteratorOptions (line 34) | typedef struct _PixelIteratorOptions type MagickPassFail (line 52) | typedef MagickPassFail (*PixelIteratorMonoReadCallback) type MagickPassFail (line 77) | typedef MagickPassFail (*PixelIteratorMonoModifyCallback) type MagickPassFail (line 124) | typedef MagickPassFail (*PixelIteratorDualReadCallback) type MagickPassFail (line 160) | typedef MagickPassFail (*PixelIteratorDualModifyCallback) type PixelIteratorDualModifyCallback (line 195) | typedef PixelIteratorDualModifyCallback PixelIteratorDualNewCallback; type MagickPassFail (line 219) | typedef MagickPassFail (*PixelIteratorTripleModifyCallback) type PixelIteratorTripleModifyCallback (line 258) | typedef PixelIteratorTripleModifyCallback PixelIteratorTripleNewCallback; FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/quantize.h type QuantizeInfo (line 28) | typedef struct _QuantizeInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/random.h type MagickRandomKernel (line 21) | typedef struct _MagickRandomKernel FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/registry.h type RegistryType (line 21) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/render.h type AlignType (line 23) | typedef enum type ClipPathUnits (line 31) | typedef enum type DecorationType (line 38) | typedef enum type FillRule (line 46) | typedef enum type GradientType (line 54) | typedef enum type LineCap (line 61) | typedef enum type LineJoin (line 69) | typedef enum type PaintMethod (line 77) | typedef enum type PrimitiveType (line 86) | typedef enum type ReferenceType (line 106) | typedef enum type SpreadMethod (line 112) | typedef enum type GradientInfo (line 123) | typedef struct _GradientInfo type ElementReference (line 148) | typedef struct _ElementReference type _DrawInfoExtra (line 167) | struct _DrawInfoExtra type DrawInfo (line 169) | typedef struct _DrawInfo type PointInfo (line 311) | typedef struct _PointInfo type TypeMetric (line 322) | typedef struct _TypeMetric FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/resource.h type ResourceType (line 21) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/signature.h type SignatureInfo (line 26) | typedef struct _SignatureInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/statistics.h type ImageChannelStatistics (line 25) | typedef struct _ImageChannelStatistics type ImageStatistics (line 39) | typedef struct _ImageStatistics FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/timer.h type TimerState (line 21) | typedef enum type Timer (line 31) | typedef struct _Timer type TimerInfo (line 39) | typedef struct _TimerInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/type.h type StretchType (line 21) | typedef enum type StyleType (line 35) | typedef enum type TypeInfo (line 46) | typedef struct _TypeInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/magick/utility.h type PathType (line 22) | typedef enum type TokenInfo (line 37) | typedef struct _TokenInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/wand/drawing_wand.h type DrawingWand (line 242) | typedef struct _DrawingWand FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/wand/magick_wand.h type MagickWand (line 52) | typedef struct _MagickWand FILE: pkg/gocv/cgo/third_path/graphics-magick/include/GraphicsMagick/wand/pixel_wand.h type PixelWand (line 20) | typedef struct _PixelWand PixelWand; FILE: pkg/gocv/cgo/third_path/graphics-magick/include/Magick++/Blob.h function namespace (line 14) | namespace Magick FILE: pkg/gocv/cgo/third_path/graphics-magick/include/Magick++/CoderInfo.h function namespace (line 16) | namespace Magick FILE: pkg/gocv/cgo/third_path/graphics-magick/include/Magick++/Color.h function namespace (line 13) | namespace Magick function initPixel (line 318) | inline void Magick::Color::initPixel() function redQuantum (line 326) | inline void Magick::Color::redQuantum ( Magick::Quantum red_ ) function greenQuantum (line 337) | inline void Magick::Color::greenQuantum ( Magick::Quantum green_ ) function blueQuantum (line 348) | inline void Magick::Color::blueQuantum ( Magick::Quantum blue_ ) function alphaQuantum (line 359) | inline void Magick::Color::alphaQuantum ( Magick::Quantum alpha_ ) function Magick (line 377) | inline void Magick::Color::alpha ( double alpha_ ) function Magick (line 381) | inline double Magick::Color::alpha ( void ) const function Magick (line 389) | inline Magick::ColorHSL::ColorHSL ( Magick::PixelPacket* rep_, function Magick (line 398) | inline Magick::ColorGray::ColorGray ( Magick::PixelPacket* rep_, function Magick (line 407) | inline Magick::ColorMono::ColorMono ( Magick::PixelPacket* rep_, function Magick (line 416) | inline Magick::ColorRGB::ColorRGB ( Magick::PixelPacket* rep_, function red (line 422) | inline void Magick::ColorRGB::red ( double red_ ) function red (line 427) | inline double Magick::ColorRGB::red ( void ) const function green (line 432) | inline void Magick::ColorRGB::green ( double green_ ) function green (line 437) | inline double Magick::ColorRGB::green ( void ) const function blue (line 442) | inline void Magick::ColorRGB::blue ( double blue_ ) function blue (line 447) | inline double Magick::ColorRGB::blue ( void ) const function Magick (line 456) | inline Magick::ColorYUV::ColorYUV ( Magick::PixelPacket* rep_, FILE: pkg/gocv/cgo/third_path/graphics-magick/include/Magick++/Drawable.h function namespace (line 40) | namespace Magick type std (line 97) | typedef std::list CoordinateList; function class (line 151) | class MagickDLLDecl Drawable type std (line 191) | typedef std::list DrawableList; function class (line 207) | class MagickDLLDecl VPathBase function class (line 232) | class MagickDLLDecl VPath type std (line 271) | typedef std::list VPathList; function sx (line 306) | void sx( const double sx_ ) function sx (line 310) | double sx( void ) const function sy (line 315) | void sy( const double sy_ ) function sy (line 319) | double sy( void ) const function rx (line 324) | void rx( const double rx_ ) function rx (line 328) | double rx( void ) const function ry (line 333) | void ry( const double ry_ ) function ry (line 337) | double ry( void ) const function tx (line 342) | void tx( const double tx_ ) function tx (line 346) | double tx( void ) const function ty (line 351) | void ty( const double ty_ ) function ty (line 355) | double ty( void ) const function startX (line 387) | void startX( double startX_ ) function startX (line 391) | double startX( void ) const function startY (line 396) | void startY( double startY_ ) function startY (line 400) | double startY( void ) const function endX (line 405) | void endX( double endX_ ) function endX (line 409) | double endX( void ) const function endY (line 414) | void endY( double endY_ ) function endY (line 418) | double endY( void ) const function startDegrees (line 423) | void startDegrees( double startDegrees_ ) function startDegrees (line 427) | double startDegrees( void ) const function endDegrees (line 432) | void endDegrees( double endDegrees_ ) function endDegrees (line 436) | double endDegrees( void ) const function clip_path (line 530) | void clip_path( const std::string &id_ ) function originX (line 564) | void originX( double originX_ ) function originX (line 568) | double originX( void ) const function originY (line 573) | void originY( double originY_ ) function originY (line 577) | double originY( void ) const function perimX (line 582) | void perimX( double perimX_ ) function perimX (line 586) | double perimX( void ) const function perimY (line 591) | void perimY( double perimY_ ) function perimY (line 595) | double perimY( void ) const function x (line 626) | void x( double x_ ) function x (line 630) | double x( void ) const function y (line 635) | void y( double y_ ) function y (line 639) | double y( void ) const function paintMethod (line 644) | void paintMethod( PaintMethod paintMethod_ ) function PaintMethod (line 648) | PaintMethod paintMethod( void ) const function composition (line 704) | void composition( CompositeOperator composition_ ) function CompositeOperator (line 708) | CompositeOperator composition( void ) const function x (line 716) | void x( double x_ ) function x (line 720) | double x( void ) const function y (line 725) | void y( double y_ ) function y (line 729) | double y( void ) const function width (line 734) | void width( double width_ ) function width (line 738) | double width( void ) const function height (line 743) | void height( double height_ ) function height (line 747) | double height( void ) const function originX (line 791) | void originX( double originX_ ) function originX (line 795) | double originX( void ) const function originY (line 800) | void originY( double originY_ ) function originY (line 804) | double originY( void ) const function radiusX (line 809) | void radiusX( double radiusX_ ) function radiusX (line 813) | double radiusX( void ) const function radiusY (line 818) | void radiusY( double radiusY_ ) function radiusY (line 822) | double radiusY( void ) const function arcStart (line 827) | void arcStart( double arcStart_ ) function arcStart (line 831) | double arcStart( void ) const function arcEnd (line 836) | void arcEnd( double arcEnd_ ) function arcEnd (line 840) | double arcEnd( void ) const function color (line 870) | void color( const Color &color_ ) function Color (line 874) | Color color( void ) const function fillRule (line 900) | void fillRule( const FillRule fillRule_ ) function FillRule (line 904) | FillRule fillRule( void ) const function opacity (line 930) | void opacity( double opacity_ ) function opacity (line 934) | double opacity( void ) const function font (line 963) | void font( const std::string &font_ ) function gravity (line 997) | void gravity( GravityType gravity_ ) function GravityType (line 1001) | GravityType gravity( void ) const function startX (line 1030) | void startX( double startX_ ) function startX (line 1034) | double startX( void ) const function startY (line 1039) | void startY( double startY_ ) function startY (line 1043) | double startY( void ) const function endX (line 1048) | void endX( double endX_ ) function endX (line 1052) | double endX( void ) const function endY (line 1057) | void endY( double endY_ ) function endY (line 1061) | double endY( void ) const function x (line 1092) | void x( double x_ ) function x (line 1096) | double x( void ) const function y (line 1101) | void y( double y_ ) function y (line 1105) | double y( void ) const function paintMethod (line 1110) | void paintMethod( PaintMethod paintMethod_ ) function PaintMethod (line 1114) | PaintMethod paintMethod( void ) const function x (line 1162) | void x( double x_ ) function x (line 1166) | double x( void ) const function y (line 1171) | void y( double y_ ) function y (line 1175) | double y( void ) const function pointSize (line 1201) | void pointSize( double pointSize_ ) function pointSize (line 1205) | double pointSize( void ) const function upperLeftX (line 1362) | void upperLeftX( double upperLeftX_ ) function upperLeftX (line 1366) | double upperLeftX( void ) const function upperLeftY (line 1371) | void upperLeftY( double upperLeftY_ ) function upperLeftY (line 1375) | double upperLeftY( void ) const function lowerRightX (line 1380) | void lowerRightX( double lowerRightX_ ) function lowerRightX (line 1384) | double lowerRightX( void ) const function lowerRightY (line 1389) | void lowerRightY( double lowerRightY_ ) function lowerRightY (line 1393) | double lowerRightY( void ) const function angle (line 1421) | void angle( double angle_ ) function angle (line 1425) | double angle( void ) const function centerX (line 1457) | void centerX( double centerX_ ) function centerX (line 1461) | double centerX( void ) const function centerY (line 1466) | void centerY( double centerY_ ) function centerY (line 1470) | double centerY( void ) const function width (line 1475) | void width( double width_ ) function width (line 1479) | double width( void ) const function hight (line 1484) | void hight( double hight_ ) function hight (line 1488) | double hight( void ) const function cornerWidth (line 1493) | void cornerWidth( double cornerWidth_ ) function cornerWidth (line 1497) | double cornerWidth( void ) const function cornerHeight (line 1502) | void cornerHeight( double cornerHeight_ ) function cornerHeight (line 1506) | double cornerHeight( void ) const function x (line 1537) | void x( double x_ ) function x (line 1541) | double x( void ) const function y (line 1546) | void y( double y_ ) function y (line 1550) | double y( void ) const function angle (line 1576) | void angle( double angle_ ) function angle (line 1580) | double angle( void ) const function angle (line 1605) | void angle( double angle_ ) function angle (line 1609) | double angle( void ) const function offset (line 1669) | void offset( const double offset_ ) function offset (line 1673) | double offset( void ) const function linecap (line 1698) | void linecap( LineCap linecap_ ) function LineCap (line 1702) | LineCap linecap( void ) const function linejoin (line 1727) | void linejoin( LineJoin linejoin_ ) function LineJoin (line 1731) | LineJoin linejoin( void ) const function miterlimit (line 1756) | void miterlimit( unsigned int miterlimit_ ) function miterlimit (line 1760) | unsigned int miterlimit( void ) const function flag (line 1786) | void flag( bool flag_ ) function flag (line 1790) | bool flag( void ) const function color (line 1815) | void color( const Color& color_ ) function Color (line 1819) | Color color( void ) const function opacity (line 1845) | void opacity( double opacity_ ) function opacity (line 1849) | double opacity( void ) const function width (line 1874) | void width( double width_ ) function width (line 1878) | double width( void ) const function encoding (line 1906) | void encoding(const std::string &encoding_) function x (line 1911) | void x( double x_ ) function x (line 1915) | double x( void ) const function y (line 1920) | void y( double y_ ) function y (line 1924) | double y( void ) const function text (line 1929) | void text( const std::string &text_ ) function flag (line 1961) | void flag( bool flag_ ) function flag (line 1965) | bool flag( void ) const function decoration (line 1990) | void decoration( DecorationType decoration_ ) function DecorationType (line 1994) | DecorationType decoration( void ) const function color (line 2019) | void color( const Color& color_ ) function Color (line 2023) | Color color( void ) const function x (line 2049) | void x( double x_ ) function x (line 2053) | double x( void ) const function y (line 2058) | void y( double y_ ) function y (line 2062) | double y( void ) const function x1 (line 2092) | void x1( unsigned long x1_ ) function x1 (line 2096) | unsigned long x1( void ) const function y1 (line 2101) | void y1( unsigned long y1_ ) function y1 (line 2105) | unsigned long y1( void ) const function x2 (line 2110) | void x2( unsigned long x2_ ) function x2 (line 2114) | unsigned long x2( void ) const function y2 (line 2119) | void y2( unsigned long y2_ ) function y2 (line 2123) | unsigned long y2( void ) const function class (line 2138) | class MagickDLLDecl PathArcArgs type std (line 2240) | typedef std::list PathArcArgsList; function class (line 2324) | class MagickDLLDecl PathCurvetoArgs type std (line 2414) | typedef std::list PathCurveToArgsList; function class (line 2526) | class MagickDLLDecl PathQuadraticCurvetoArgs type std (line 2598) | typedef std::list PathQuadraticCurveto... function x (line 2776) | void x( double x_ ) function x (line 2780) | double x( void ) const function x (line 2804) | void x( double x_ ) function x (line 2808) | double x( void ) const function y (line 2834) | void y( double y_ ) function y (line 2838) | double y( void ) const function y (line 2862) | void y( double y_ ) function y (line 2866) | double y( void ) const FILE: pkg/gocv/cgo/third_path/graphics-magick/include/Magick++/Exception.h function namespace (line 19) | namespace Magick FILE: pkg/gocv/cgo/third_path/graphics-magick/include/Magick++/Geometry.h function namespace (line 16) | namespace Magick FILE: pkg/gocv/cgo/third_path/graphics-magick/include/Magick++/Image.h function namespace (line 21) | namespace Magick function reduceNoise (line 1381) | inline void Magick::Image::reduceNoise ( void ) function lineWidth (line 1387) | inline void Magick::Image::lineWidth ( const double lineWidth_ ) function lineWidth (line 1391) | inline double Magick::Image::lineWidth ( void ) const function columns (line 1403) | inline unsigned int Magick::Image::columns ( void ) const function Magick (line 1409) | inline unsigned int Magick::Image::rows ( void ) const FILE: pkg/gocv/cgo/third_path/graphics-magick/include/Magick++/Include.h function namespace (line 37) | namespace MagickLib function namespace (line 207) | namespace MagickLib function namespace (line 217) | namespace Magick FILE: pkg/gocv/cgo/third_path/graphics-magick/include/Magick++/Montage.h function namespace (line 19) | namespace Magick function backgroundColor (line 199) | inline void Magick::Montage::backgroundColor ( const Magick::Color &back... function compose (line 208) | inline void Magick::Montage::compose ( Magick::CompositeOperator compose_ ) function fileName (line 217) | inline void Magick::Montage::fileName( const std::string &fileName_ ) function fillColor (line 226) | inline void Magick::Montage::fillColor ( const Color &fill_ ) function font (line 235) | inline void Magick::Montage::font ( const std::string &font_ ) function geometry (line 244) | inline void Magick::Montage::geometry ( const Magick::Geometry &geometry_ ) function gravity (line 253) | inline void Magick::Montage::gravity ( Magick::GravityType gravity_ ) function label (line 263) | inline void Magick::Montage::label( const std::string &label_ ) function penColor (line 272) | inline void Magick::Montage::penColor ( const Color &pen_ ) function pointSize (line 282) | inline void Magick::Montage::pointSize ( unsigned int pointSize_ ) function pointSize (line 286) | inline unsigned int Magick::Montage::pointSize ( void ) const function shadow (line 291) | inline void Magick::Montage::shadow ( bool shadow_ ) function shadow (line 295) | inline bool Magick::Montage::shadow ( void ) const function strokeColor (line 300) | inline void Magick::Montage::strokeColor ( const Color &stroke_ ) function texture (line 309) | inline void Magick::Montage::texture ( const std::string &texture_ ) function tile (line 318) | inline void Magick::Montage::tile ( const Geometry &tile_ ) function title (line 327) | inline void Magick::Montage::title ( const std::string &title_ ) function transparentColor (line 337) | inline void Magick::Montage::transparentColor ( const Magick::Color &tra... function borderColor (line 350) | inline void Magick::MontageFramed::borderColor ( const Magick::Color &bo... function borderWidth (line 359) | inline void Magick::MontageFramed::borderWidth ( unsigned int borderWidt... function borderWidth (line 363) | inline unsigned int Magick::MontageFramed::borderWidth ( void ) const function frameGeometry (line 368) | inline void Magick::MontageFramed::frameGeometry ( const Magick::Geometr... function matteColor (line 377) | inline void Magick::MontageFramed::matteColor ( const Magick::Color &mat... FILE: pkg/gocv/cgo/third_path/graphics-magick/include/Magick++/Pixels.h function namespace (line 15) | namespace Magick function Magick (line 104) | inline int Magick::Pixels::x ( void ) const function Magick (line 110) | inline int Magick::Pixels::y ( void ) const function columns (line 116) | inline unsigned int Magick::Pixels::columns ( void ) const function Magick (line 122) | inline unsigned int Magick::Pixels::rows ( void ) const FILE: pkg/gocv/cgo/third_path/graphics-magick/include/Magick++/TypeMetric.h function namespace (line 15) | namespace Magick FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/analyze.h type ImageCharacteristics (line 20) | typedef struct _ImageCharacteristics FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/attribute.h type ImageAttribute (line 20) | typedef struct _ImageAttribute FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/blob.h type BlobInfo (line 29) | typedef struct _BlobInfo BlobInfo; type BlobMode (line 126) | typedef enum type MapMode (line 475) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/color.h type HistogramColorPacket (line 21) | typedef struct _HistogramColorPacket FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/color_lookup.h type ComplianceType (line 21) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/colorspace.h type ColorspaceType (line 88) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/compare.h type HighlightStyle (line 20) | typedef enum type DifferenceImageOptions (line 29) | typedef struct _DifferenceImageOptions type MetricType (line 48) | typedef enum type DifferenceStatistics (line 61) | typedef struct _DifferenceStatistics FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/composite.h type CompositeOptions_t (line 21) | typedef struct _CompositeOptions_t FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/compress.h type Ascii85Info (line 22) | typedef struct _Ascii85Info FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/confirm_access.h type ConfirmAccessMode (line 17) | typedef enum type MagickPassFail (line 28) | typedef MagickPassFail FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/constitute.h type QuantumType (line 25) | typedef enum type QuantumSampleType (line 51) | typedef enum type StorageType (line 61) | typedef enum type ExportPixelAreaOptions (line 74) | typedef struct _ExportPixelAreaOptions type ExportPixelAreaInfo (line 102) | typedef struct _ExportPixelAreaInfo type ImportPixelAreaOptions (line 112) | typedef struct _ImportPixelAreaOptions type ImportPixelAreaInfo (line 134) | typedef struct _ImportPixelAreaInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/delegate.h type DelegateInfo (line 21) | typedef struct _DelegateInfo type gs_main_instance (line 76) | typedef struct gs_main_instance_s gs_main_instance; type GhostscriptVectors (line 95) | typedef struct _GhostscriptVectors FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/draw.h type _DrawContext (line 34) | struct _DrawContext FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/error.h type ExceptionBaseType (line 22) | typedef enum type ExceptionType (line 56) | typedef enum type ExceptionInfo (line 192) | typedef struct _ExceptionInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/forward.h type _Image (line 18) | struct _Image type _Ascii85Info (line 20) | struct _Ascii85Info type _BlobInfo (line 22) | struct _BlobInfo type _CacheInfo (line 24) | struct _CacheInfo type _ImageAttribute (line 26) | struct _ImageAttribute type _SemaphoreInfo (line 28) | struct _SemaphoreInfo type _ThreadViewSet (line 30) | struct _ThreadViewSet FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/image.h type Quantum (line 67) | typedef unsigned char Quantum; type Quantum (line 90) | typedef unsigned short Quantum; type Quantum (line 131) | typedef unsigned int Quantum; type AlphaType (line 165) | typedef enum type ChannelType (line 172) | typedef enum type ClassType (line 188) | typedef enum type CompositeOperator (line 195) | typedef enum type CompressionType (line 247) | typedef enum type DisposeType (line 268) | typedef enum type EndianType (line 276) | typedef enum type FilterTypes (line 284) | typedef enum type GeometryFlags (line 304) | typedef enum type GravityType (line 330) | typedef enum type ImageType (line 356) | typedef enum type InterlaceType (line 371) | typedef enum type MontageMode (line 380) | typedef enum type NoiseType (line 388) | typedef enum type OrientationType (line 404) | typedef enum /* Exif / Row 0 / Column 0 */ type PreviewType (line 418) | typedef enum type RenderingIntent (line 452) | typedef enum type ResolutionType (line 461) | typedef enum type AffineMatrix (line 471) | typedef struct _AffineMatrix type PrimaryInfo (line 482) | typedef struct _PrimaryInfo type ChromaticityInfo (line 490) | typedef struct _ChromaticityInfo type PixelPacket (line 538) | typedef struct _PixelPacket type DoublePixelPacket (line 559) | typedef struct _DoublePixelPacket type FloatPixelPacket (line 568) | typedef struct _FloatPixelPacket type ErrorInfo (line 581) | typedef struct _ErrorInfo type FrameInfo (line 589) | typedef struct _FrameInfo type Quantum (line 602) | typedef Quantum IndexPacket; type LongPixelPacket (line 604) | typedef struct _LongPixelPacket type MontageInfo (line 613) | typedef struct _MontageInfo type ProfileInfo (line 649) | typedef struct _ProfileInfo type RectangleInfo (line 661) | typedef struct _RectangleInfo type SegmentInfo (line 672) | typedef struct _SegmentInfo type _ImageExtra (line 681) | struct _ImageExtra type Image (line 683) | typedef struct _Image type ImageInfo (line 900) | typedef struct _ImageInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/log.h type LogEventType (line 47) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/magick.h type Image (line 24) | typedef Image type CoderClass (line 34) | typedef enum type ExtensionTreatment (line 47) | typedef enum type MagickInfo (line 54) | typedef struct _MagickInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/magick_types.h type magick_int8_t (line 59) | typedef signed char magick_int8_t; type magick_uint8_t (line 60) | typedef unsigned char magick_uint8_t; type magick_int16_t (line 62) | typedef signed short magick_int16_t; type magick_uint16_t (line 63) | typedef unsigned short magick_uint16_t; type magick_int32_t (line 65) | typedef signed int magick_int32_t; type magick_uint32_t (line 67) | typedef unsigned int magick_uint32_t; type magick_int64_t (line 70) | typedef signed __int64 magick_int64_t; type magick_uint64_t (line 72) | typedef unsigned __int64 magick_uint64_t; type magick_uint64_t (line 75) | typedef magick_uint64_t magick_uintmax_t; type magick_uintptr_t (line 79) | typedef unsigned long long magick_uintptr_t; type magick_uintptr_t (line 85) | typedef unsigned long magick_uintptr_t; type magick_int8_t (line 95) | typedef signed char magick_int8_t; type magick_uint8_t (line 96) | typedef unsigned char magick_uint8_t; type magick_int16_t (line 98) | typedef signed short magick_int16_t; type magick_uint16_t (line 99) | typedef unsigned short magick_uint16_t; type magick_int32_t (line 101) | typedef signed int magick_int32_t; type magick_uint32_t (line 103) | typedef unsigned int magick_uint32_t; type magick_int64_t (line 106) | typedef signed long magick_int64_t; type magick_uint64_t (line 108) | typedef unsigned long magick_uint64_t; type magick_uintmax_t (line 111) | typedef unsigned long magick_uintmax_t; type magick_uintptr_t (line 114) | typedef unsigned long magick_uintptr_t; type magick_int64_t (line 126) | typedef magick_int64_t magick_off_t; FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/monitor.h type MagickPassFail (line 22) | typedef MagickPassFail FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/operator.h type QuantumOperator (line 22) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/pixel_cache.h type VirtualPixelMethod (line 24) | typedef enum type _CacheInfoPtr_ (line 36) | typedef _CacheInfoPtr_ Cache; FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/pixel_iterator.h type PixelIteratorOptions (line 34) | typedef struct _PixelIteratorOptions type MagickPassFail (line 52) | typedef MagickPassFail (*PixelIteratorMonoReadCallback) type MagickPassFail (line 77) | typedef MagickPassFail (*PixelIteratorMonoModifyCallback) type MagickPassFail (line 124) | typedef MagickPassFail (*PixelIteratorDualReadCallback) type MagickPassFail (line 160) | typedef MagickPassFail (*PixelIteratorDualModifyCallback) type PixelIteratorDualModifyCallback (line 195) | typedef PixelIteratorDualModifyCallback PixelIteratorDualNewCallback; type MagickPassFail (line 219) | typedef MagickPassFail (*PixelIteratorTripleModifyCallback) type PixelIteratorTripleModifyCallback (line 258) | typedef PixelIteratorTripleModifyCallback PixelIteratorTripleNewCallback; FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/quantize.h type QuantizeInfo (line 28) | typedef struct _QuantizeInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/random.h type MagickRandomKernel (line 21) | typedef struct _MagickRandomKernel FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/registry.h type RegistryType (line 21) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/render.h type AlignType (line 23) | typedef enum type ClipPathUnits (line 31) | typedef enum type DecorationType (line 38) | typedef enum type FillRule (line 46) | typedef enum type GradientType (line 54) | typedef enum type LineCap (line 61) | typedef enum type LineJoin (line 69) | typedef enum type PaintMethod (line 77) | typedef enum type PrimitiveType (line 86) | typedef enum type ReferenceType (line 106) | typedef enum type SpreadMethod (line 112) | typedef enum type GradientInfo (line 123) | typedef struct _GradientInfo type ElementReference (line 148) | typedef struct _ElementReference type _DrawInfoExtra (line 167) | struct _DrawInfoExtra type DrawInfo (line 169) | typedef struct _DrawInfo type PointInfo (line 311) | typedef struct _PointInfo type TypeMetric (line 322) | typedef struct _TypeMetric FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/resource.h type ResourceType (line 21) | typedef enum FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/signature.h type SignatureInfo (line 26) | typedef struct _SignatureInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/statistics.h type ImageChannelStatistics (line 25) | typedef struct _ImageChannelStatistics type ImageStatistics (line 39) | typedef struct _ImageStatistics FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/timer.h type TimerState (line 21) | typedef enum type Timer (line 31) | typedef struct _Timer type TimerInfo (line 39) | typedef struct _TimerInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/type.h type StretchType (line 21) | typedef enum type StyleType (line 35) | typedef enum type TypeInfo (line 46) | typedef struct _TypeInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/magick/utility.h type PathType (line 22) | typedef enum type TokenInfo (line 37) | typedef struct _TokenInfo FILE: pkg/gocv/cgo/third_path/graphics-magick/include/wand/drawing_wand.h type DrawingWand (line 242) | typedef struct _DrawingWand FILE: pkg/gocv/cgo/third_path/graphics-magick/include/wand/magick_wand.h type MagickWand (line 52) | typedef struct _MagickWand FILE: pkg/gocv/cgo/third_path/graphics-magick/include/wand/pixel_wand.h type PixelWand (line 20) | typedef struct _PixelWand PixelWand; FILE: pkg/gocv/cgo/third_path/graphics-magick/share/doc/GraphicsMagick/www/smile.c function main (line 113) | int main(int argc,char **argv) FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/calib3d/calib3d.hpp type CvPOSITObject (line 58) | struct CvPOSITObject type CvStereoBMState (line 311) | struct CvStereoBMState function CvLevMarq (line 374) | class CV_EXPORTS CvLevMarq type cv (line 410) | namespace cv function StereoBM (line 661) | class CV_EXPORTS_W StereoBM function StereoSGBM (line 687) | class CV_EXPORTS_W StereoSGBM type fisheye (line 748) | namespace fisheye FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/contrib/contrib.hpp function CvAdaptiveSkinDetector (line 57) | class CV_EXPORTS CvAdaptiveSkinDetector function CvFuzzyPoint (line 116) | class CV_EXPORTS CvFuzzyPoint { function CvFuzzyCurve (line 123) | class CV_EXPORTS CvFuzzyCurve { function CvFuzzyFunction (line 143) | class CV_EXPORTS CvFuzzyFunction { function CvFuzzyRule (line 155) | class CV_EXPORTS CvFuzzyRule { function CvFuzzyController (line 167) | class CV_EXPORTS CvFuzzyController { function CvFuzzyMeanShiftTracker (line 177) | class CV_EXPORTS CvFuzzyMeanShiftTracker type cv (line 256) | namespace cv function Octree (line 259) | class CV_EXPORTS Octree function Mesh3D (line 289) | class CV_EXPORTS Mesh3D function SpinImageModel (line 314) | class CV_EXPORTS SpinImageModel function TickMeter (line 382) | class CV_EXPORTS TickMeter function SelfSimDescriptor (line 404) | class CV_EXPORTS SelfSimDescriptor function LevMarqSparse (line 438) | class CV_EXPORTS LevMarqSparse { function StereoVar (line 568) | class CV_EXPORTS_W StereoVar function Directory (line 610) | class CV_EXPORTS Directory function LogPolar_Interp (line 654) | class CV_EXPORTS LogPolar_Interp function LogPolar_Overlapping (line 719) | class CV_EXPORTS LogPolar_Overlapping function LogPolar_Adjacent (line 793) | class CV_EXPORTS LogPolar_Adjacent function LDA (line 853) | class CV_EXPORTS LDA function FaceRecognizer (line 922) | class CV_EXPORTS_W FaceRecognizer : public Algorithm FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/contrib/detection_based_tracker.hpp class DetectionBasedTracker (line 10) | class DetectionBasedTracker type Parameters (line 13) | struct Parameters class SeparateDetectionWork (line 43) | class SeparateDetectionWork type InnerParameters (line 48) | struct InnerParameters type TrackedObject (line 64) | struct TrackedObject method TrackedObject (line 74) | TrackedObject(const cv::Rect& rect):numDetectedFrames(1), numFramesN... method getNextId (line 80) | static int getNextId() type cv (line 101) | namespace cv FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/contrib/hybridtracker.hpp type cv (line 55) | namespace cv function CvMotionModel (line 60) | struct CV_EXPORTS CvMotionModel function CvMeanShiftTrackerParams (line 72) | struct CV_EXPORTS CvMeanShiftTrackerParams function CvFeatureTrackerParams (line 86) | struct CV_EXPORTS CvFeatureTrackerParams function CvHybridTrackerParams (line 100) | struct CV_EXPORTS CvHybridTrackerParams function CvMeanShiftTracker (line 116) | class CV_EXPORTS CvMeanShiftTracker function CvFeatureTracker (line 143) | class CV_EXPORTS CvFeatureTracker function CvHybridTracker (line 175) | class CV_EXPORTS CvHybridTracker FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/contrib/openfabmap.hpp type cv (line 64) | namespace cv { type of2 (line 66) | namespace of2 { function IMatch (line 75) | struct CV_EXPORTS IMatch { function FabMap (line 100) | class CV_EXPORTS FabMap { function FabMap1 (line 198) | class CV_EXPORTS FabMap1: public FabMap { function FabMapLUT (line 214) | class CV_EXPORTS FabMapLUT: public FabMap { function FabMapFBO (line 236) | class CV_EXPORTS FabMapFBO: public FabMap { function FabMap2 (line 287) | class CV_EXPORTS FabMap2: public FabMap { function ChowLiuTree (line 338) | class CV_EXPORTS ChowLiuTree { function BOWMSCTrainer (line 386) | class CV_EXPORTS BOWMSCTrainer: public BOWTrainer { FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/contrib/retina.hpp type cv (line 78) | namespace cv type RETINA_COLORSAMPLINGMETHOD (line 81) | enum RETINA_COLORSAMPLINGMETHOD class RetinaFilter (line 88) | class RetinaFilter function Retina (line 113) | class CV_EXPORTS Retina { FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/features2d/features2d.hpp type cv (line 52) | namespace cv function KeyPoint (line 69) | class CV_EXPORTS_W_SIMPLE KeyPoint function KeyPointsFilter (line 121) | class CV_EXPORTS KeyPointsFilter function FeatureDetector (line 156) | class CV_EXPORTS_W FeatureDetector : public virtual Algorithm function DescriptorExtractor (line 205) | class CV_EXPORTS_W DescriptorExtractor : public virtual Algorithm class CV_EXPORTS_W (line 249) | class CV_EXPORTS_W function Feature2D (line 275) | class CV_EXPORTS_W BRISK : public Feature2D function Feature2D (line 367) | class CV_EXPORTS_W ORB : public Feature2D function DescriptorExtractor (line 411) | class CV_EXPORTS FREAK : public DescriptorExtractor function FeatureDetector (line 507) | class CV_EXPORTS_W MSER : public FeatureDetector function FeatureDetector (line 542) | class CV_EXPORTS_W StarDetector : public FeatureDetector function FastFeatureDetector (line 574) | class CV_EXPORTS_W FastFeatureDetector : public FeatureDetector function FeatureDetector (line 594) | class CV_EXPORTS_W GFTTDetector : public FeatureDetector function SimpleBlobDetector (line 615) | class CV_EXPORTS_W SimpleBlobDetector : public FeatureDetector type CV_EXPORTS (line 652) | struct CV_EXPORTS function DenseFeatureDetector (line 667) | class CV_EXPORTS DenseFeatureDetector : public FeatureDetector function GridAdaptedFeatureDetector (line 695) | class CV_EXPORTS_W GridAdaptedFeatureDetector : public FeatureDetector function PyramidAdaptedFeatureDetector (line 727) | class CV_EXPORTS_W PyramidAdaptedFeatureDetector : public FeatureDetector function FeatureDetector (line 746) | class CV_EXPORTS AdjusterAdapter: public FeatureDetector function DynamicAdaptedFeatureDetector (line 783) | class CV_EXPORTS DynamicAdaptedFeatureDetector: public FeatureDetector function AdjusterAdapter (line 812) | class CV_EXPORTS FastAdjuster: public AdjusterAdapter function AdjusterAdapter (line 840) | class CV_EXPORTS StarAdjuster: public AdjusterAdapter function AdjusterAdapter (line 857) | class CV_EXPORTS SurfAdjuster: public AdjusterAdapter function OpponentColorDescriptorExtractor (line 888) | class CV_EXPORTS OpponentColorDescriptorExtractor : public DescriptorExt... function BriefDescriptorExtractor (line 910) | class CV_EXPORTS BriefDescriptorExtractor : public DescriptorExtractor function Accumulator (line 944) | struct CV_EXPORTS Accumulator type Accumulator (line 949) | struct Accumulator { typedef float Type; } type Accumulator (line 950) | struct Accumulator { typedef float Type; } type Accumulator (line 951) | struct Accumulator { typedef float Type; } type Accumulator (line 952) | struct Accumulator { typedef float Type; } function SL2 (line 958) | struct CV_EXPORTS SL2 function L2 (line 974) | struct CV_EXPORTS L2 function L1 (line 990) | struct CV_EXPORTS L1 function Hamming (line 1006) | struct CV_EXPORTS Hamming type HammingMultilevel (line 1022) | struct HammingMultilevel method ResultType (line 1028) | ResultType operator()( const unsigned char* a, const unsigned char* b,... function DMatch (line 1040) | struct CV_EXPORTS_W_SIMPLE DMatch function DescriptorMatcher (line 1067) | class CV_EXPORTS_W DescriptorMatcher : public Algorithm function Mat (line 1187) | static Mat clone_op( Mat m ) { return m.clone(); } function DescriptorMatcher (line 1203) | class CV_EXPORTS_W BFMatcher : public DescriptorMatcher function FlannBasedMatcher (line 1228) | class CV_EXPORTS_W FlannBasedMatcher : public DescriptorMatcher class GenericDescriptorMatcher (line 1272) | class GenericDescriptorMatcher function GenericDescriptorMatcher (line 1275) | class CV_EXPORTS GenericDescriptorMatcher class VectorDescriptorMatcher (line 1433) | class VectorDescriptorMatcher function GenericDescriptorMatcher (line 1436) | class CV_EXPORTS VectorDescriptorMatcher : public GenericDescriptorMatcher function DrawMatchesFlags (line 1472) | struct CV_EXPORTS DrawMatchesFlags function BOWTrainer (line 1533) | class CV_EXPORTS_W BOWTrainer function BOWKMeansTrainer (line 1563) | class CV_EXPORTS_W BOWKMeansTrainer : public BOWTrainer function BOWImgDescriptorExtractor (line 1585) | class CV_EXPORTS_W BOWImgDescriptorExtractor FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/all_indices.h function namespace (line 46) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/allocator.h function namespace (line 38) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/any.h function namespace (line 20) | namespace cvflann function virtual (line 67) | virtual void static_delete(void**) { } function virtual (line 68) | virtual void copy_from_value(void const* src, void** dest) function virtual (line 72) | virtual void clone(void* const* src, void** dest) { *dest = *src; } function virtual (line 73) | virtual void move(void* const* src, void** dest) { *dest = *src; } function virtual (line 74) | virtual void* get_value(void** src) { return reinterpret_cast(src... function virtual (line 75) | virtual void print(std::ostream& out, void* const* src) { out << *reinte... function virtual (line 81) | virtual void static_delete(void** x) function virtual (line 85) | virtual void copy_from_value(void const* src, void** dest) function virtual (line 89) | virtual void clone(void* const* src, void** dest) function virtual (line 93) | virtual void move(void* const* src, void** dest) function virtual (line 98) | virtual void* get_value(void** src) { return *src; } function virtual (line 99) | virtual void print(std::ostream& out, void* const* src) { out << *reinte... function print (line 102) | inline void big_any_policy::print(std::ostream& ou... function print (line 107) | inline void big_any_policy::print(std::ostream& out, ... type big_any_policy (line 115) | typedef big_any_policy type; type any (line 124) | struct any function any (line 129) | struct choose_policy function any (line 176) | struct any function reset (line 283) | void reset() function compatible (line 290) | bool compatible(const any& x) const FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/autotuned_index.h function namespace (line 45) | namespace cvflann type typename (line 74) | typedef typename Distance::ResultType DistanceType; function addIndex (line 100) | void addIndex(const Matrix& /*wholeData*/, const Matrix& costs) function optimizeKDTree (line 377) | void optimizeKDTree(std::vector& costs) function IndexParams (line 419) | IndexParams estimateBuildParams() function estimateSearchParams (line 497) | float estimateSearchParams(SearchParams& searchParams) FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/composite_index.h function namespace (line 39) | namespace cvflann type typename (line 75) | typedef typename Distance::ResultType DistanceType; function index_params_ (line 85) | index_params_(params) function addIndex (line 136) | void addIndex(const Matrix& /*wholeData*/, const Matrix& result, const ElementType* v... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/defines.h function namespace (line 78) | namespace cvflann { FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/dist.h function namespace (line 54) | namespace cvflann type HammingLUT2 (line 414) | struct HammingLUT2 type False (line 452) | typedef False is_kdtree_distance; type False (line 453) | typedef False is_vector_space_distance; type T (line 456) | typedef T ElementType; type ResultType (line 457) | typedef int ResultType; type pop_t (line 482) | typedef unsigned long long pop_t; type pop_t (line 500) | typedef unsigned long long pop_t; type False (line 512) | typedef False is_kdtree_distance; type False (line 513) | typedef False is_vector_space_distance; type T (line 515) | typedef T ElementType; type ResultType (line 516) | typedef int ResultType; function popcnt32 (line 520) | unsigned int popcnt32(uint32_t n) const function popcnt64 (line 528) | unsigned int popcnt64(uint64_t n) const type True (line 571) | typedef True is_kdtree_distance; type True (line 572) | typedef True is_vector_space_distance; type T (line 574) | typedef T ElementType; type typename (line 575) | typedef typename Accumulator::Type ResultType; function ResultType (line 615) | ResultType accum_dist(const U& a, const V& b, int) const type True (line 626) | typedef True is_kdtree_distance; type True (line 627) | typedef True is_vector_space_distance; type T (line 629) | typedef T ElementType; type typename (line 630) | typedef typename Accumulator::Type ResultType; function ResultType (line 664) | ResultType accum_dist(const U& a, const V& b, int) const type True (line 674) | typedef True is_kdtree_distance; type True (line 675) | typedef True is_vector_space_distance; type T (line 677) | typedef T ElementType; type typename (line 678) | typedef typename Accumulator::Type ResultType; function ResultType (line 710) | ResultType accum_dist(const U& a, const V& b, int) const type True (line 728) | typedef True is_kdtree_distance; type True (line 729) | typedef True is_vector_space_distance; type T (line 731) | typedef T ElementType; type typename (line 732) | typedef typename Accumulator::Type ResultType; function ResultType (line 764) | ResultType accum_dist(const U& a, const V& b, int) const function T (line 788) | T operator*() function T (line 793) | T operator[](int) type typename (line 824) | typedef typename Distance::ResultType ResultType; function ResultType (line 825) | ResultType operator()( ResultType dist ) { return dist*dist; } type typename (line 832) | typedef typename L2_Simple::ResultType ResultType; function ResultType (line 833) | ResultType operator()( ResultType dist ) { return dist; } type typename (line 839) | typedef typename L2::ResultType ResultType; function ResultType (line 840) | ResultType operator()( ResultType dist ) { return dist; } type typename (line 847) | typedef typename MinkowskiDistance::ResultType ResultType; function ResultType (line 848) | ResultType operator()( ResultType dist ) { return dist; } type typename (line 854) | typedef typename HellingerDistance::ResultType ResultType; function ResultType (line 855) | ResultType operator()( ResultType dist ) { return dist; } type typename (line 861) | typedef typename ChiSquareDistance::ResultType ResultType; function ResultType (line 862) | ResultType operator()( ResultType dist ) { return dist; } type typename (line 884) | typedef typename Distance::ResultType ResultType; function ResultType (line 885) | ResultType operator()( ResultType dist ) { return dist; } type typename (line 892) | typedef typename L2_Simple::ResultType ResultType; function ResultType (line 893) | ResultType operator()( ResultType dist ) { return sqrt(dist); } type typename (line 899) | typedef typename L2::ResultType ResultType; function ResultType (line 900) | ResultType operator()( ResultType dist ) { return sqrt(dist); } type typename (line 907) | typedef typename MinkowskiDistance::ResultType ResultType; function ResultType (line 908) | ResultType operator()( ResultType dist ) { return sqrt(dist); } type typename (line 914) | typedef typename HellingerDistance::ResultType ResultType; function ResultType (line 915) | ResultType operator()( ResultType dist ) { return sqrt(dist); } type typename (line 921) | typedef typename ChiSquareDistance::ResultType ResultType; function ResultType (line 922) | ResultType operator()( ResultType dist ) { return sqrt(dist); } FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/dummy.h function namespace (line 5) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/dynamic_bitset.h type boost (line 44) | typedef boost::dynamic_bitset<> DynamicBitset; function namespace (line 51) | namespace cvflann { FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/flann.hpp type cvflann (line 53) | namespace cvflann type cv (line 60) | namespace cv type flann (line 62) | namespace flann type CvType (line 65) | struct CvType {} type CvType (line 66) | struct CvType { static int type() { return CV_8U; } } method type (line 66) | static int type() { return CV_8U; } type CvType (line 67) | struct CvType { static int type() { return CV_8S; } } method type (line 67) | static int type() { return CV_8S; } type CvType (line 68) | struct CvType { static int type() { return CV_16U; } } method type (line 68) | static int type() { return CV_16U; } type CvType (line 69) | struct CvType { static int type() { return CV_16S; } } method type (line 69) | static int type() { return CV_16S; } type CvType (line 70) | struct CvType { static int type() { return CV_32S; } } method type (line 70) | static int type() { return CV_32S; } type CvType (line 71) | struct CvType { static int type() { return CV_32F; } } method type (line 71) | static int type() { return CV_32F; } type CvType (line 72) | struct CvType { static int type() { return CV_64F; } } method type (line 72) | static int type() { return CV_64F; } class GenericIndex (line 96) | class GenericIndex method save (line 115) | void save(std::string filename) { nnIndex->save(filename); } method veclen (line 117) | int veclen() const { return nnIndex->veclen(); } method size (line 119) | int size() const { return nnIndex->size(); } method getParameters (line 121) | ::cvflann::IndexParams getParameters() { return nnIndex->getParame... function FLANN_DEPRECATED (line 228) | class class FLANN_DEPRECATED (line 286) | class FLANN_DEPRECATED function hierarchicalClustering (line 385) | int hierarchicalClustering(const Mat& features, Mat& centers, const ... function FLANN_DEPRECATED (line 404) | FLANN_DEPRECATED int hierarchicalClustering(const Mat& features, Mat... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/flann_base.hpp type cvflann (line 46) | namespace cvflann function log_verbosity (line 53) | inline void log_verbosity(int level) type SavedIndexParams (line 63) | struct SavedIndexParams : public IndexParams method SavedIndexParams (line 65) | SavedIndexParams(std::string filename) class Index (line 101) | class Index : public NNIndex method Index (line 107) | Index(const Matrix& features, const IndexParams& params... method addIndex (line 130) | void addIndex(const Matrix& wholeData, const Matrix& queries, Matrix& indi... method radiusSearch (line 239) | int radiusSearch(const Matrix& query, Matrix& indi... method findNeighbors (line 247) | void findNeighbors(ResultSet& result, const ElementTyp... method FLANN_DEPRECATED (line 255) | FLANN_DEPRECATED NNIndex* getIndex() method FLANN_DEPRECATED (line 264) | FLANN_DEPRECATED const IndexParams* getIndexParameters() function hierarchicalClustering (line 290) | int hierarchicalClustering(const Matrix& /*wholeData*/, const Matrix& result, const ElementType* v... type Node (line 511) | struct Node type Node (line 534) | typedef Node* NodePtr; type BranchStruct (line 541) | typedef BranchStruct BranchSt; function save_tree (line 545) | void save_tree(FILE* stream, NodePtr node, int num) function load_tree (line 560) | void load_tree(FILE* stream, NodePtr& node, int num) function computeLabels (line 580) | void computeLabels(int* dsindices, int indices_length, int* centers, in... function computeClustering (line 609) | void computeClustering(NodePtr node, int* dsindices, int indices_length,... function findNN (line 674) | void findNN(NodePtr node, ResultSet& result, const Element... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/index_testing.h function namespace (line 45) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/kdtree_index.h function namespace (line 50) | namespace cvflann type typename (line 74) | typedef typename Distance::ResultType DistanceType; function addIndex (line 123) | void addIndex(const Matrix& /*wholeData*/, const Matrix& result, const ElementType* v... type Node (line 228) | struct Node type Node (line 243) | typedef Node* NodePtr; type BranchStruct (line 244) | typedef BranchStruct BranchSt; type BranchSt (line 245) | typedef BranchSt* Branch; function save_tree (line 249) | void save_tree(FILE* stream, NodePtr tree) function load_tree (line 261) | void load_tree(FILE* stream, NodePtr& tree) function NodePtr (line 283) | NodePtr divideTree(int* ind, int count) function meanSplit (line 313) | void meanSplit(int* ind, int count, int& index, int& cutfeat, DistanceTy... function selectDivision (line 362) | int selectDivision(DistanceType* v) function planeSplit (line 400) | void planeSplit(int* ind, int count, int cutfeat, DistanceType cutval, i... function getExactNeighbors (line 426) | void getExactNeighbors(ResultSet& result, const ElementTyp... function getNeighbors (line 444) | void getNeighbors(ResultSet& result, const ElementType* ve... function searchLevel (line 474) | void searchLevel(ResultSet& result_set, const ElementType*... function searchLevelExact (line 526) | void searchLevelExact(ResultSet& result_set, const Element... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/kdtree_single_index.h function namespace (line 48) | namespace cvflann type typename (line 74) | typedef typename Distance::ResultType DistanceType; function addIndex (line 116) | void addIndex(const Matrix& /*wholeData*/, const Matrix& queries, Matrix& indices,... function findNeighbors (line 248) | void findNeighbors(ResultSet& result, const ElementType* v... type Node (line 261) | struct Node type Node (line 280) | typedef Node* NodePtr; type Interval (line 283) | struct Interval type std (line 288) | typedef std::vector BoundingBox; type BranchStruct (line 290) | typedef BranchStruct BranchSt; type BranchSt (line 291) | typedef BranchSt* Branch; function save_tree (line 296) | void save_tree(FILE* stream, NodePtr tree) function load_tree (line 308) | void load_tree(FILE* stream, NodePtr& tree) function computeBoundingBox (line 321) | void computeBoundingBox(BoundingBox& bbox) function NodePtr (line 346) | NodePtr divideTree(int left, int right, BoundingBox& bbox) function computeMinMax (line 396) | void computeMinMax(int* ind, int count, int dim, ElementType& min_elem, ... function middleSplit (line 407) | void middleSplit(int* ind, int count, int& index, int& cutfeat, Distance... function middleSplit_ (line 452) | void middleSplit_(int* ind, int count, int& index, int& cutfeat, Distanc... function planeSplit (line 503) | void planeSplit(int* ind, int count, int cutfeat, DistanceType cutval, i... function DistanceType (line 528) | DistanceType computeInitialDistances(const ElementType* vec, std::vector... function searchLevel (line 549) | void searchLevel(ResultSet& result_set, const ElementType*... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/kmeans_index.h function namespace (line 53) | namespace cvflann type typename (line 85) | typedef typename Distance::ResultType DistanceType; function chooseCentersRandom (line 108) | void chooseCentersRandom(int k, int* indices, int indices_length, int* c... function chooseCentersGonzales (line 149) | void chooseCentersGonzales(int k, int* indices, int indices_length, int*... function chooseCentersKMeanspp (line 200) | void chooseCentersKMeanspp(int k, int* indices, int indices_length, int*... function virtual (line 324) | virtual ~KMeansIndex() function set_cb_index (line 351) | void set_cb_index( float index) function addIndex (line 368) | void addIndex(const Matrix& /*wholeData*/, const Matrix& result, const ElementType* v... function getClusterCenters (line 473) | int getClusterCenters(Matrix& centers) type KMeansNode (line 508) | struct KMeansNode type KMeansNode (line 543) | typedef KMeansNode* KMeansNodePtr; type BranchStruct (line 548) | typedef BranchStruct BranchSt; function save_tree (line 553) | void save_tree(FILE* stream, KMeansNodePtr node) function load_tree (line 569) | void load_tree(FILE* stream, KMeansNodePtr& node) function free_centers (line 592) | void free_centers(KMeansNodePtr node) function computeNodeStatistics (line 609) | void computeNodeStatistics(KMeansNodePtr node, int* indices, int indices... function computeClustering (line 657) | void computeClustering(KMeansNodePtr node, int* indices, int indices_len... function findNN (line 856) | void findNN(KMeansNodePtr node, ResultSet& result, const E... function exploreNodeBranches (line 901) | int exploreNodeBranches(KMeansNodePtr node, const ElementType* q, Distan... function findExactNN (line 933) | void findExactNN(KMeansNodePtr node, ResultSet& result, co... function getCenterOrdering (line 977) | void getCenterOrdering(KMeansNodePtr node, const ElementType* q, int* so... function DistanceType (line 1000) | DistanceType getDistanceToBorder(DistanceType* p, DistanceType* c, Dista... function getMinVarianceClusters (line 1024) | int getMinVarianceClusters(KMeansNodePtr root, KMeansNodePtr* clusters, ... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/linear_index.h function namespace (line 37) | namespace cvflann type typename (line 54) | typedef typename Distance::ResultType DistanceType; function addIndex (line 91) | void addIndex(const Matrix& /*wholeData*/, const Matrix& resultSet, const ElementType... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/logger.h function namespace (line 40) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/lsh_index.h function namespace (line 54) | namespace cvflann type typename (line 82) | typedef typename Distance::ResultType DistanceType; function addIndex (line 112) | void addIndex(const Matrix& wholeData, const Matrix& queries, Matrix& ... function findNeighbors (line 248) | void findNeighbors(ResultSet& result, const ElementType* v... type SortScoreIndexPairOnSecond (line 257) | struct SortScoreIndexPairOnSecond function fill_xor_mask (line 271) | void fill_xor_mask(lsh::BucketKey key, int lowest_index, unsigned int le... function getNeighbors (line 291) | void getNeighbors(const ElementType* vec, bool /*do_radius*/, float radi... function getNeighbors (line 367) | void getNeighbors(const ElementType* vec, ResultSet& result) FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/lsh_table.h function namespace (line 59) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/matrix.h function namespace (line 38) | namespace cvflann function class (line 87) | class UntypedMatrix FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/miniflann.hpp type cv (line 51) | namespace cv type flann (line 54) | namespace flann function IndexParams (line 57) | struct CV_EXPORTS IndexParams function KDTreeIndexParams (line 81) | struct CV_EXPORTS KDTreeIndexParams : public IndexParams function LinearIndexParams (line 86) | struct CV_EXPORTS LinearIndexParams : public IndexParams function CompositeIndexParams (line 91) | struct CV_EXPORTS CompositeIndexParams : public IndexParams function AutotunedIndexParams (line 97) | struct CV_EXPORTS AutotunedIndexParams : public IndexParams function HierarchicalClusteringIndexParams (line 103) | struct CV_EXPORTS HierarchicalClusteringIndexParams : public IndexPa... function KMeansIndexParams (line 109) | struct CV_EXPORTS KMeansIndexParams : public IndexParams function LshIndexParams (line 115) | struct CV_EXPORTS LshIndexParams : public IndexParams function SavedIndexParams (line 120) | struct CV_EXPORTS SavedIndexParams : public IndexParams function SearchParams (line 125) | struct CV_EXPORTS SearchParams : public IndexParams function Index (line 130) | class CV_EXPORTS_W Index FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/nn_index.h function namespace (line 41) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/object_factory.h function namespace (line 36) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/params.h function namespace (line 39) | namespace cvflann function string (line 71) | string name) function print_params (line 82) | inline void print_params(const IndexParams& params, std::ostream& stream) function print_params (line 91) | inline void print_params(const IndexParams& params) FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/random.h function namespace (line 40) | namespace cvflann function class (line 81) | class UniqueRandom function init (line 102) | void init(int n) function next (line 120) | int next() FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/result_set.h function namespace (line 41) | namespace cvflann function init (line 248) | void init() function addPoint (line 263) | void addPoint(DistanceType dist, int index) type DistIndex (line 290) | struct DistIndex function addPoint (line 405) | inline void addPoint(DistanceType dist, int index) function clear (line 425) | void clear() function addPoint (line 464) | void addPoint(DistanceType dist, int index) function clear (line 471) | inline void clear() function clear (line 524) | void clear() FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/sampling.h function namespace (line 36) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/saving.h function namespace (line 43) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/simplex_downhill.h function namespace (line 34) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/flann/timer.h function namespace (line 37) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/block.hpp type cv (line 46) | namespace cv { namespace gpu { namespace device type gpu (line 46) | namespace gpu { namespace device type device (line 46) | namespace device type Block (line 48) | struct Block method id (line 50) | unsigned int id() method stride (line 55) | unsigned int stride() method sync (line 60) | void sync() method flattenedThreadId (line 65) | int flattenedThreadId() method __device__ (line 71) | static __device__ __forceinline__ void fill(It beg, It end, cons... method __device__ (line 81) | static __device__ __forceinline__ void yota(OutIt beg, OutIt end... method __device__ (line 92) | static __device__ __forceinline__ void copy(InIt beg, InIt end, ... method __device__ (line 103) | static __device__ __forceinline__ void transfrom(InIt beg, InIt ... method __device__ (line 114) | static __device__ __forceinline__ void transfrom(InIt1 beg1, InI... method __device__ (line 126) | static __device__ __forceinline__ void reduce(volatile T* buffer... method __device__ (line 148) | static __device__ __forceinline__ T reduce(volatile T* buffer, T... method __device__ (line 173) | static __device__ __forceinline__ void reduce_n(T* data, unsigne... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/border_interpolate.hpp type cv (line 50) | namespace cv { namespace gpu { namespace device type gpu (line 50) | namespace gpu { namespace device type device (line 50) | namespace device type BrdRowConstant (line 55) | struct BrdRowConstant method BrdRowConstant (line 59) | explicit __host__ __device__ __forceinline__ BrdRowConstant(int ... method __device__ (line 61) | __device__ __forceinline__ D at_low(int x, const T* data) const method __device__ (line 66) | __device__ __forceinline__ D at_high(int x, const T* data) const method __device__ (line 71) | __device__ __forceinline__ D at(int x, const T* data) const type BrdColConstant (line 80) | struct BrdColConstant method BrdColConstant (line 84) | explicit __host__ __device__ __forceinline__ BrdColConstant(int ... method __device__ (line 86) | __device__ __forceinline__ D at_low(int y, const T* data, size_t... method __device__ (line 91) | __device__ __forceinline__ D at_high(int y, const T* data, size_... method __device__ (line 96) | __device__ __forceinline__ D at(int y, const T* data, size_t ste... type BrdConstant (line 105) | struct BrdConstant method __device__ (line 113) | __device__ __forceinline__ D at(int y, int x, const T* data, siz... method __device__ (line 118) | __device__ __forceinline__ D at(typename Ptr2D::index_type y, ty... type BrdRowReplicate (line 131) | struct BrdRowReplicate method BrdRowReplicate (line 135) | explicit __host__ __device__ __forceinline__ BrdRowReplicate(int... method __host__ (line 136) | __host__ __device__ __forceinline__ BrdRowReplicate(int width, U... method idx_col_high (line 143) | int idx_col_high(int x) const method idx_col (line 148) | int idx_col(int x) const method __device__ (line 153) | __device__ __forceinline__ D at_low(int x, const T* data) const method __device__ (line 158) | __device__ __forceinline__ D at_high(int x, const T* data) const method __device__ (line 163) | __device__ __forceinline__ D at(int x, const T* data) const type BrdColReplicate (line 171) | struct BrdColReplicate method BrdColReplicate (line 175) | explicit __host__ __device__ __forceinline__ BrdColReplicate(int... method __host__ (line 176) | __host__ __device__ __forceinline__ BrdColReplicate(int height, ... method idx_row_high (line 183) | int idx_row_high(int y) const method idx_row (line 188) | int idx_row(int y) const method __device__ (line 193) | __device__ __forceinline__ D at_low(int y, const T* data, size_t... method __device__ (line 198) | __device__ __forceinline__ D at_high(int y, const T* data, size_... method __device__ (line 203) | __device__ __forceinline__ D at(int y, const T* data, size_t ste... type BrdReplicate (line 211) | struct BrdReplicate method __host__ (line 216) | __host__ __device__ __forceinline__ BrdReplicate(int height, int... method idx_row_high (line 223) | int idx_row_high(int y) const method idx_row (line 228) | int idx_row(int y) const method idx_col_low (line 233) | int idx_col_low(int x) const method idx_col_high (line 238) | int idx_col_high(int x) const method idx_col (line 243) | int idx_col(int x) const method __device__ (line 248) | __device__ __forceinline__ D at(int y, int x, const T* data, siz... method __device__ (line 253) | __device__ __forceinline__ D at(typename Ptr2D::index_type y, ty... type BrdRowReflect101 (line 265) | struct BrdRowReflect101 method BrdRowReflect101 (line 269) | explicit __host__ __device__ __forceinline__ BrdRowReflect101(in... method __host__ (line 270) | __host__ __device__ __forceinline__ BrdRowReflect101(int width, ... method idx_col_high (line 277) | int idx_col_high(int x) const method idx_col (line 282) | int idx_col(int x) const method __device__ (line 287) | __device__ __forceinline__ D at_low(int x, const T* data) const method __device__ (line 292) | __device__ __forceinline__ D at_high(int x, const T* data) const method __device__ (line 297) | __device__ __forceinline__ D at(int x, const T* data) const type BrdColReflect101 (line 305) | struct BrdColReflect101 method BrdColReflect101 (line 309) | explicit __host__ __device__ __forceinline__ BrdColReflect101(in... method __host__ (line 310) | __host__ __device__ __forceinline__ BrdColReflect101(int height,... method idx_row_high (line 317) | int idx_row_high(int y) const method idx_row (line 322) | int idx_row(int y) const method __device__ (line 327) | __device__ __forceinline__ D at_low(int y, const T* data, size_t... method __device__ (line 332) | __device__ __forceinline__ D at_high(int y, const T* data, size_... method __device__ (line 337) | __device__ __forceinline__ D at(int y, const T* data, size_t ste... type BrdReflect101 (line 345) | struct BrdReflect101 method __host__ (line 350) | __host__ __device__ __forceinline__ BrdReflect101(int height, in... method idx_row_high (line 357) | int idx_row_high(int y) const method idx_row (line 362) | int idx_row(int y) const method idx_col_low (line 367) | int idx_col_low(int x) const method idx_col_high (line 372) | int idx_col_high(int x) const method idx_col (line 377) | int idx_col(int x) const method __device__ (line 382) | __device__ __forceinline__ D at(int y, int x, const T* data, siz... method __device__ (line 387) | __device__ __forceinline__ D at(typename Ptr2D::index_type y, ty... type BrdRowReflect (line 399) | struct BrdRowReflect method BrdRowReflect (line 403) | explicit __host__ __device__ __forceinline__ BrdRowReflect(int w... method __host__ (line 404) | __host__ __device__ __forceinline__ BrdRowReflect(int width, U) ... method idx_col_high (line 411) | int idx_col_high(int x) const method idx_col (line 416) | int idx_col(int x) const method __device__ (line 421) | __device__ __forceinline__ D at_low(int x, const T* data) const method __device__ (line 426) | __device__ __forceinline__ D at_high(int x, const T* data) const method __device__ (line 431) | __device__ __forceinline__ D at(int x, const T* data) const type BrdColReflect (line 439) | struct BrdColReflect method BrdColReflect (line 443) | explicit __host__ __device__ __forceinline__ BrdColReflect(int h... method __host__ (line 444) | __host__ __device__ __forceinline__ BrdColReflect(int height, U)... method idx_row_high (line 451) | int idx_row_high(int y) const method idx_row (line 456) | int idx_row(int y) const method __device__ (line 461) | __device__ __forceinline__ D at_low(int y, const T* data, size_t... method __device__ (line 466) | __device__ __forceinline__ D at_high(int y, const T* data, size_... method __device__ (line 471) | __device__ __forceinline__ D at(int y, const T* data, size_t ste... type BrdReflect (line 479) | struct BrdReflect method __host__ (line 484) | __host__ __device__ __forceinline__ BrdReflect(int height, int w... method idx_row_high (line 491) | int idx_row_high(int y) const method idx_row (line 496) | int idx_row(int y) const method idx_col_low (line 501) | int idx_col_low(int x) const method idx_col_high (line 506) | int idx_col_high(int x) const method idx_col (line 511) | int idx_col(int x) const method __device__ (line 516) | __device__ __forceinline__ D at(int y, int x, const T* data, siz... method __device__ (line 521) | __device__ __forceinline__ D at(typename Ptr2D::index_type y, ty... type BrdRowWrap (line 533) | struct BrdRowWrap method BrdRowWrap (line 537) | explicit __host__ __device__ __forceinline__ BrdRowWrap(int widt... method __host__ (line 538) | __host__ __device__ __forceinline__ BrdRowWrap(int width_, U) : ... method idx_col_low (line 540) | int idx_col_low(int x) const method idx_col_high (line 545) | int idx_col_high(int x) const method idx_col (line 550) | int idx_col(int x) const method __device__ (line 555) | __device__ __forceinline__ D at_low(int x, const T* data) const method __device__ (line 560) | __device__ __forceinline__ D at_high(int x, const T* data) const method __device__ (line 565) | __device__ __forceinline__ D at(int x, const T* data) const type BrdColWrap (line 573) | struct BrdColWrap method BrdColWrap (line 577) | explicit __host__ __device__ __forceinline__ BrdColWrap(int heig... method __host__ (line 578) | __host__ __device__ __forceinline__ BrdColWrap(int height_, U) :... method idx_row_low (line 580) | int idx_row_low(int y) const method idx_row_high (line 585) | int idx_row_high(int y) const method idx_row (line 590) | int idx_row(int y) const method __device__ (line 595) | __device__ __forceinline__ D at_low(int y, const T* data, size_t... method __device__ (line 600) | __device__ __forceinline__ D at_high(int y, const T* data, size_... method __device__ (line 605) | __device__ __forceinline__ D at(int y, const T* data, size_t ste... type BrdWrap (line 613) | struct BrdWrap method idx_row_low (line 627) | int idx_row_low(int y) const method idx_row_high (line 632) | int idx_row_high(int y) const method idx_row (line 637) | int idx_row(int y) const method idx_col_low (line 642) | int idx_col_low(int x) const method idx_col_high (line 647) | int idx_col_high(int x) const method idx_col (line 652) | int idx_col(int x) const method __device__ (line 657) | __device__ __forceinline__ D at(int y, int x, const T* data, siz... method __device__ (line 662) | __device__ __forceinline__ D at(typename Ptr2D::index_type y, ty... type BorderReader (line 674) | struct BorderReader method elem_type (line 681) | elem_type operator ()(index_type y, index_type x) const type BorderReader< Ptr2D, BrdConstant > (line 692) | struct BorderReader< Ptr2D, BrdConstant > method D (line 702) | D operator ()(index_type y, index_type x) const FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/color.hpp type cv (line 48) | namespace cv { namespace gpu { namespace device type gpu (line 48) | namespace gpu { namespace device type device (line 48) | namespace device FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/common.hpp type cv (line 67) | namespace cv { namespace gpu type gpu (line 67) | namespace gpu function isAligned (line 71) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 76) | static inline bool isAligned(size_t step, size_t size) function __host__ (line 90) | __host__ __device__ __forceinline__ int divUp(int total, int grain) type device (line 95) | namespace device function bindTexture (line 107) | inline void bindTexture(const textureReference* tex, const PtrStep... type gpu (line 88) | namespace gpu function isAligned (line 71) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 76) | static inline bool isAligned(size_t step, size_t size) function __host__ (line 90) | __host__ __device__ __forceinline__ int divUp(int total, int grain) type device (line 95) | namespace device function bindTexture (line 107) | inline void bindTexture(const textureReference* tex, const PtrStep... function ___cudaSafeCall (line 82) | static inline void ___cudaSafeCall(cudaError_t err, const char *file, co... type cv (line 88) | namespace cv { namespace gpu type gpu (line 67) | namespace gpu function isAligned (line 71) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 76) | static inline bool isAligned(size_t step, size_t size) function __host__ (line 90) | __host__ __device__ __forceinline__ int divUp(int total, int grain) type device (line 95) | namespace device function bindTexture (line 107) | inline void bindTexture(const textureReference* tex, const PtrStep... type gpu (line 88) | namespace gpu function isAligned (line 71) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 76) | static inline bool isAligned(size_t step, size_t size) function __host__ (line 90) | __host__ __device__ __forceinline__ int divUp(int total, int grain) type device (line 95) | namespace device function bindTexture (line 107) | inline void bindTexture(const textureReference* tex, const PtrStep... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/datamov_utils.hpp type cv (line 48) | namespace cv { namespace gpu { namespace device type gpu (line 48) | namespace gpu { namespace device type device (line 48) | namespace device type ForceGlob (line 53) | struct ForceGlob method Load (line 55) | static void Load(const T* ptr, int offset, T& val) { val = ptr[... type ForceGlob (line 68) | struct ForceGlob method Load (line 55) | static void Load(const T* ptr, int offset, T& val) { val = ptr[... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/detail/color_detail.hpp type cv (line 52) | namespace cv { namespace gpu { namespace device type gpu (line 52) | namespace gpu { namespace device type device (line 52) | namespace device type color_detail (line 58) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 106) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 158) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 217) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 301) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 347) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 392) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 434) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 507) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 579) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 688) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 788) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 889) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 989) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1085) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1269) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1430) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1582) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1743) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1890) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 2009) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 2110) | namespace color_detail type ColorChannel (line 60) | struct ColorChannel method T (line 63) | T max() { return numeric_limits::max(); } method T (line 64) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 67) | struct ColorChannel method max (line 70) | float max() { return 1.f; } method half (line 71) | float half() { return 0.5f; } function __device__ (line 74) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 78) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 83) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 88) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 108) | struct RGB2RGB method __forceinline__ (line 123) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 124) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 127) | struct RGB2RGB : unary_function method __device__ (line 129) | __device__ uint operator()(uint src) const method __forceinline__ (line 141) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 142) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 160) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 162) | struct RGB2RGB5x5Converter<6, bidx> method __device__ (line 165) | static __device__ __forceinline__ ushort cvt(const T& src) type RGB2RGB5x5Converter<5, bidx> (line 174) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 176) | ushort cvt(const uchar3& src) method ushort (line 184) | ushort cvt(const uchar4& src) type RGB2RGB5x5 (line 194) | struct RGB2RGB5x5: method ushort (line 197) | ushort operator()(const typename TypeVec::vec_type... method __forceinline__ (line 202) | __forceinline__ RGB2RGB5x5() {} method __forceinline__ (line 203) | __forceinline__ RGB2RGB5x5(const RGB2RGB5x5&) {} type RGB5x52RGBConverter (line 219) | struct RGB5x52RGBConverter type RGB5x52RGBConverter<5, bidx> (line 221) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 223) | void cvt(uint src, uchar3& dst) method cvt (line 230) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 241) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 243) | void cvt(uint src, uchar3& dst) method cvt (line 250) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 260) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 262) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 275) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 315) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 316) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 319) | struct Gray2RGB : unary_function method uint (line 321) | uint operator()(uint src) const method __forceinline__ (line 332) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 333) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 349) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 351) | struct Gray2RGB5x5Converter<6> method ushort (line 353) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 359) | struct Gray2RGB5x5Converter<5> method ushort (line 361) | ushort cvt(uint t) type Gray2RGB5x5 (line 368) | struct Gray2RGB5x5 : unary_function method ushort (line 370) | ushort operator()(uint src) const method __forceinline__ (line 375) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 376) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 394) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 396) | struct RGB5x52GrayConverter<6> method uchar (line 398) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 404) | struct RGB5x52GrayConverter<5> method uchar (line 406) | uchar cvt(uint t) type RGB5x52Gray (line 412) | struct RGB5x52Gray : unary_function method uchar (line 414) | uchar operator()(uint src) const method __forceinline__ (line 419) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 420) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 436) | static __device__ __forceinline__ uint RGB2GrayConvert_8U(const ... function __device__ (line 444) | static __device__ __forceinline__ uchar RGB2GrayConvert_8UC4(uin... function __device__ (line 452) | static __device__ __forceinline__ float RGB2GrayConvert_32F(cons... type RGB2Gray (line 460) | struct RGB2Gray : unary_function::vec_t... method T (line 462) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 467) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 468) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 471) | struct RGB2Gray : method __forceinline__ (line 479) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 480) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 483) | struct RGB2Gray : unary_function method uchar (line 485) | uchar operator()(uint src) const method __forceinline__ (line 490) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 491) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 512) | static __device__ void RGB2YUVConvert(const T& src, D& dst) function __device__ (line 529) | static __device__ __forceinline__ void RGB2YUVConvert_32F(const ... type RGB2YUV (line 540) | struct RGB2YUV method __forceinline__ (line 550) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 551) | __forceinline__ RGB2YUV(const RGB2YUV&) {} type RGB2YUV (line 554) | struct RGB2YUV method __forceinline__ (line 564) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 565) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 584) | static __device__ void YUV2RGBConvert(const T& src, D& dst) function __device__ (line 598) | static __device__ uint YUV2RGBConvert_8UC4(uint src) function __device__ (line 620) | static __device__ __forceinline__ void YUV2RGBConvert_32F(const ... type YUV2RGB (line 630) | struct YUV2RGB method __forceinline__ (line 643) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 644) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 647) | struct YUV2RGB method __forceinline__ (line 660) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 661) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 664) | struct YUV2RGB : unary_function method uint (line 666) | uint operator ()(uint src) const method __forceinline__ (line 671) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 672) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 693) | static __device__ void RGB2YCrCbConvert(const T& src, D& dst) function __device__ (line 710) | static __device__ uint RGB2YCrCbConvert_8UC4(uint src) function __device__ (line 727) | static __device__ __forceinline__ void RGB2YCrCbConvert_32F(cons... type RGB2YCrCb (line 738) | struct RGB2YCrCb method __forceinline__ (line 748) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 749) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 752) | struct RGB2YCrCb method __forceinline__ (line 762) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 763) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 766) | struct RGB2YCrCb : unary_function method uint (line 768) | uint operator ()(uint src) const method __forceinline__ (line 773) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 774) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 793) | static __device__ void YCrCb2RGBConvert(const T& src, D& dst) function __device__ (line 805) | static __device__ uint YCrCb2RGBConvert_8UC4(uint src) function __device__ (line 824) | __device__ __forceinline__ void YCrCb2RGBConvert_32F(const T& sr... type YCrCb2RGB (line 831) | struct YCrCb2RGB method __forceinline__ (line 844) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 845) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 848) | struct YCrCb2RGB method __forceinline__ (line 861) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 862) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 865) | struct YCrCb2RGB : unary_function method uint (line 867) | uint operator ()(uint src) const method __forceinline__ (line 872) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 873) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 894) | static __device__ __forceinline__ void RGB2XYZConvert_8U(const T... function __device__ (line 905) | static __device__ __forceinline__ uint RGB2XYZConvert_8UC4(uint ... function __device__ (line 924) | static __device__ __forceinline__ void RGB2XYZConvert_32F(const ... type RGB2XYZ (line 935) | struct RGB2XYZ method __forceinline__ (line 947) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 948) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 951) | struct RGB2XYZ method __forceinline__ (line 963) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 964) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 967) | struct RGB2XYZ : unary_function method uint (line 969) | uint operator()(uint src) const method __forceinline__ (line 974) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 975) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 994) | static __device__ __forceinline__ void XYZ2RGBConvert_8U(const T... function __device__ (line 1001) | static __device__ __forceinline__ uint XYZ2RGBConvert_8UC4(uint ... function __device__ (line 1020) | static __device__ __forceinline__ void XYZ2RGBConvert_32F(const ... type XYZ2RGB (line 1027) | struct XYZ2RGB method __forceinline__ (line 1040) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1041) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1044) | struct XYZ2RGB method __forceinline__ (line 1057) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1058) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 1061) | struct XYZ2RGB : unary_function method uint (line 1063) | uint operator()(uint src) const method __forceinline__ (line 1068) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 1069) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 1091) | static __device__ void RGB2HSVConvert_8U(const T& src, D& dst) function __device__ (line 1123) | static __device__ uint RGB2HSVConvert_8UC4(uint src) function __device__ (line 1159) | static __device__ void RGB2HSVConvert_32F(const T& src, D& dst) type RGB2HSV (line 1191) | struct RGB2HSV method __forceinline__ (line 1203) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1204) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1207) | struct RGB2HSV method __forceinline__ (line 1219) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1220) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1223) | struct RGB2HSV : unary_function method uint (line 1225) | uint operator()(uint src) const method __forceinline__ (line 1230) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1231) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1273) | static __device__ void HSV2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1314) | static __device__ void HSV2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1329) | static __device__ uint HSV2RGBConvert_8UC4(uint src) type HSV2RGB (line 1348) | struct HSV2RGB method __forceinline__ (line 1361) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1362) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1365) | struct HSV2RGB method __forceinline__ (line 1378) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1379) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1382) | struct HSV2RGB : unary_function method uint (line 1384) | uint operator()(uint src) const method __forceinline__ (line 1389) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1390) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1432) | static __device__ void RGB2HLSConvert_32F(const T& src, D& dst) function __device__ (line 1470) | static __device__ void RGB2HLSConvert_8U(const T& src, D& dst) function __device__ (line 1485) | static __device__ uint RGB2HLSConvert_8UC4(uint src) type RGB2HLS (line 1504) | struct RGB2HLS method __forceinline__ (line 1516) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1517) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1520) | struct RGB2HLS method __forceinline__ (line 1532) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1533) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1536) | struct RGB2HLS : unary_function method uint (line 1538) | uint operator()(uint src) const method __forceinline__ (line 1543) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1544) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1586) | static __device__ void HLS2RGBConvert_32F(const T& src, D& dst) function __device__ (line 1627) | static __device__ void HLS2RGBConvert_8U(const T& src, D& dst) function __device__ (line 1642) | static __device__ uint HLS2RGBConvert_8UC4(uint src) type HLS2RGB (line 1661) | struct HLS2RGB method __forceinline__ (line 1674) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1675) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1678) | struct HLS2RGB method __forceinline__ (line 1691) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1692) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1695) | struct HLS2RGB : unary_function method uint (line 1697) | uint operator()(uint src) const method __forceinline__ (line 1702) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1703) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1757) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1764) | __device__ __forceinline__ void RGB2LabConvert_8U(const T& src, ... function __device__ (line 1799) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1810) | __device__ __forceinline__ void RGB2LabConvert_32F(const T& src,... type RGB2Lab (line 1843) | struct RGB2Lab type RGB2Lab (line 1846) | struct RGB2Lab method __forceinline__ (line 1858) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1859) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1863) | struct RGB2Lab method __forceinline__ (line 1875) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1876) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1895) | __device__ __forceinline__ void Lab2RGBConvert_32F(const T& src,... function __device__ (line 1944) | __device__ __forceinline__ void Lab2RGBConvert_8U(const T& src, ... type Lab2RGB (line 1960) | struct Lab2RGB type Lab2RGB (line 1963) | struct Lab2RGB method __forceinline__ (line 1975) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1976) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1980) | struct Lab2RGB method __forceinline__ (line 1992) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1993) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 2014) | __device__ __forceinline__ void RGB2LuvConvert_32F(const T& src,... function __device__ (line 2048) | __device__ __forceinline__ void RGB2LuvConvert_8U(const T& src, ... type RGB2Luv (line 2063) | struct RGB2Luv type RGB2Luv (line 2066) | struct RGB2Luv method __forceinline__ (line 2078) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2079) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 2083) | struct RGB2Luv method __forceinline__ (line 2095) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 2096) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 2113) | __device__ __forceinline__ void Luv2RGBConvert_32F(const T& src,... function __device__ (line 2152) | __device__ __forceinline__ void Luv2RGBConvert_8U(const T& src, ... type Luv2RGB (line 2168) | struct Luv2RGB type Luv2RGB (line 2171) | struct Luv2RGB method __forceinline__ (line 2183) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2184) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 2188) | struct Luv2RGB method __forceinline__ (line 2200) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 2201) | __forceinline__ Luv2RGB(const Luv2RGB&) {} FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/detail/reduce.hpp type cv (line 50) | namespace cv { namespace gpu { namespace device type gpu (line 50) | namespace gpu { namespace device type device (line 50) | namespace device type reduce_detail (line 52) | namespace reduce_detail type GetType (line 54) | struct GetType type GetType (line 55) | struct GetType type GetType (line 59) | struct GetType type GetType (line 63) | struct GetType type For (line 69) | struct For method __device__ (line 72) | static __device__ void loadToSmem(const PointerTuple& smem, co... method __device__ (line 79) | static __device__ void loadFromSmem(const PointerTuple& smem, ... method __device__ (line 87) | static __device__ void merge(const PointerTuple& smem, const V... method __device__ (line 95) | static __device__ void mergeShfl(const ValTuple& val, unsigned... type For (line 104) | struct For method __device__ (line 107) | static __device__ void loadToSmem(const PointerTuple&, const V... method __device__ (line 111) | static __device__ void loadFromSmem(const PointerTuple&, const... method __device__ (line 116) | static __device__ void merge(const PointerTuple&, const ValTup... method __device__ (line 120) | static __device__ void mergeShfl(const ValTuple&, unsigned int... function __device__ (line 126) | __device__ __forceinline__ void loadToSmem(volatile T* smem, T& ... function __device__ (line 131) | __device__ __forceinline__ void loadFromSmem(volatile T* smem, T... function __device__ (line 137) | __device__ __forceinline__ void loadToSmem(const thrust::tuple (line 261) | struct Unroll<0, Pointer, Reference, Op> method __device__ (line 263) | static __device__ void loopShfl(Reference, Op, unsigned int) method __device__ (line 266) | static __device__ void loop(Pointer, Reference, unsigned int, Op) type WarpOptimized (line 271) | struct WarpOptimized method __device__ (line 274) | static __device__ void reduce(Pointer smem, Reference val, uns... type GenericOptimized32 (line 290) | struct GenericOptimized32 method __device__ (line 295) | static __device__ void reduce(Pointer smem, Reference val, uns... type StaticIf (line 331) | struct StaticIf type StaticIf (line 332) | struct StaticIf type StaticIf (line 336) | struct StaticIf type IsPowerOf2 (line 341) | struct IsPowerOf2 type Dispatcher (line 346) | struct Dispatcher FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/detail/reduce_key_val.hpp type cv (line 50) | namespace cv { namespace gpu { namespace device type gpu (line 50) | namespace gpu { namespace device type device (line 50) | namespace device type reduce_key_val_detail (line 52) | namespace reduce_key_val_detail type GetType (line 54) | struct GetType type GetType (line 55) | struct GetType type GetType (line 59) | struct GetType type GetType (line 63) | struct GetType type For (line 69) | struct For method __device__ (line 72) | static __device__ void loadToSmem(const PointerTuple& smem, co... method __device__ (line 79) | static __device__ void loadFromSmem(const PointerTuple& smem, ... method __device__ (line 87) | static __device__ void copyShfl(const ReferenceTuple& val, uns... method __device__ (line 94) | static __device__ void copy(const PointerTuple& svals, const R... method __device__ (line 102) | static __device__ void mergeShfl(const KeyReferenceTuple& key,... method __device__ (line 115) | static __device__ void merge(const KeyPointerTuple& skeys, con... type For (line 132) | struct For method __device__ (line 135) | static __device__ void loadToSmem(const PointerTuple&, const R... method __device__ (line 139) | static __device__ void loadFromSmem(const PointerTuple&, const... method __device__ (line 144) | static __device__ void copyShfl(const ReferenceTuple&, unsigne... method __device__ (line 148) | static __device__ void copy(const PointerTuple&, const Referen... method __device__ (line 153) | static __device__ void mergeShfl(const KeyReferenceTuple&, con... method __device__ (line 157) | static __device__ void merge(const KeyPointerTuple&, const Key... function __device__ (line 169) | __device__ __forceinline__ void loadToSmem(volatile T* smem, T& ... function __device__ (line 174) | __device__ __forceinline__ void loadFromSmem(volatile T* smem, T... function __device__ (line 180) | __device__ __forceinline__ void loadToSmem(const thrust::tuple (line 387) | struct Unroll<0, KP, KR, VP, VR, Cmp> method __device__ (line 389) | static __device__ void loopShfl(KR, VR, Cmp, unsigned int) method __device__ (line 392) | static __device__ void loop(KP, KR, VP, VR, unsigned int, Cmp) type WarpOptimized (line 397) | struct WarpOptimized method __device__ (line 400) | static __device__ void reduce(KP skeys, KR key, VP svals, VR v... type GenericOptimized32 (line 418) | struct GenericOptimized32 method __device__ (line 423) | static __device__ void reduce(KP skeys, KR key, VP svals, VR v... type StaticIf (line 468) | struct StaticIf type StaticIf (line 469) | struct StaticIf type StaticIf (line 473) | struct StaticIf type IsPowerOf2 (line 478) | struct IsPowerOf2 type Dispatcher (line 483) | struct Dispatcher FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/detail/transform_detail.hpp type cv (line 50) | namespace cv { namespace gpu { namespace device type gpu (line 50) | namespace gpu { namespace device type device (line 50) | namespace device type transform_detail (line 52) | namespace transform_detail type UnaryReadWriteTraits (line 56) | struct UnaryReadWriteTraits type BinaryReadWriteTraits (line 62) | struct BinaryReadWriteTraits type OpUnroller (line 71) | struct OpUnroller type OpUnroller<1> (line 72) | struct OpUnroller<1> method __device__ (line 75) | static __device__ __forceinline__ void unroll(const T& src, D&... method __device__ (line 82) | static __device__ __forceinline__ void unroll(const T1& src1, ... type OpUnroller<2> (line 88) | struct OpUnroller<2> method __device__ (line 91) | static __device__ __forceinline__ void unroll(const T& src, D&... method __device__ (line 100) | static __device__ __forceinline__ void unroll(const T1& src1, ... type OpUnroller<3> (line 108) | struct OpUnroller<3> method __device__ (line 111) | static __device__ __forceinline__ void unroll(const T& src, D&... method __device__ (line 122) | static __device__ __forceinline__ void unroll(const T1& src1, ... type OpUnroller<4> (line 132) | struct OpUnroller<4> method __device__ (line 135) | static __device__ __forceinline__ void unroll(const T& src, D&... method __device__ (line 148) | static __device__ __forceinline__ void unroll(const T1& src1, ... type OpUnroller<8> (line 160) | struct OpUnroller<8> method __device__ (line 163) | static __device__ __forceinline__ void unroll(const T& src, D&... method __device__ (line 184) | static __device__ __forceinline__ void unroll(const T1& src1, ... function __global__ (line 206) | static __global__ void transformSmart(const PtrStepSz src_, P... function __global__ (line 242) | __global__ static void transformSimple(const PtrStepSz src, P... function __global__ (line 254) | static __global__ void transformSmart(const PtrStepSz src1_,... function __global__ (line 294) | static __global__ void transformSimple(const PtrStepSz src1,... type TransformDispatcher (line 308) | struct TransformDispatcher type TransformDispatcher (line 309) | struct TransformDispatcher method call (line 312) | static void call(PtrStepSz src, PtrStepSz dst, UnOp op, ... method call (line 327) | static void call(PtrStepSz src1, PtrStepSz src2, PtrSt... type TransformDispatcher (line 341) | struct TransformDispatcher method call (line 344) | static void call(PtrStepSz src, PtrStepSz dst, UnOp op, ... method call (line 368) | static void call(PtrStepSz src1, PtrStepSz src2, PtrSt... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/detail/type_traits_detail.hpp type cv (line 49) | namespace cv { namespace gpu { namespace device type gpu (line 49) | namespace gpu { namespace device type device (line 49) | namespace device type type_traits_detail (line 51) | namespace type_traits_detail type Select (line 53) | struct Select { typedef T1 type; } type Select (line 54) | struct Select { typedef T2 type; } type IsSignedIntergral (line 56) | struct IsSignedIntergral { enum {value = 0}; } type IsSignedIntergral (line 57) | struct IsSignedIntergral { enum {value = 1}; } type IsSignedIntergral (line 58) | struct IsSignedIntergral { enum {value = 1}; } type IsSignedIntergral (line 59) | struct IsSignedIntergral { enum {value = 1}; } type IsSignedIntergral (line 60) | struct IsSignedIntergral { enum {value = 1}; } type IsSignedIntergral (line 61) | struct IsSignedIntergral { enum {value = 1}; } type IsSignedIntergral (line 62) | struct IsSignedIntergral { enum {value = 1}; } type IsUnsignedIntegral (line 64) | struct IsUnsignedIntegral { enum {value = 0}; } type IsUnsignedIntegral (line 65) | struct IsUnsignedIntegral { enum {value = 1}; } type IsUnsignedIntegral (line 66) | struct IsUnsignedIntegral { enum {value = 1}; } type IsUnsignedIntegral (line 67) | struct IsUnsignedIntegral { enum {value = 1}; } type IsUnsignedIntegral (line 68) | struct IsUnsignedIntegral { enum {value = 1}; } type IsUnsignedIntegral (line 69) | struct IsUnsignedIntegral { enum {value = 1}; } type IsUnsignedIntegral (line 70) | struct IsUnsignedIntegral { enum {value = 1}; } type IsIntegral (line 72) | struct IsIntegral { enum {value = IsSignedIntergral::value ||... type IsIntegral (line 73) | struct IsIntegral { enum {value = 1}; } type IsIntegral (line 74) | struct IsIntegral { enum {value = 1}; } type IsFloat (line 76) | struct IsFloat { enum {value = 0}; } type IsFloat (line 77) | struct IsFloat { enum {value = 1}; } type IsFloat (line 78) | struct IsFloat { enum {value = 1}; } type IsVec (line 80) | struct IsVec { enum {value = 0}; } type IsVec (line 81) | struct IsVec { enum {value = 1}; } type IsVec (line 82) | struct IsVec { enum {value = 1}; } type IsVec (line 83) | struct IsVec { enum {value = 1}; } type IsVec (line 84) | struct IsVec { enum {value = 1}; } type IsVec (line 85) | struct IsVec { enum {value = 1}; } type IsVec (line 86) | struct IsVec { enum {value = 1}; } type IsVec (line 87) | struct IsVec { enum {value = 1}; } type IsVec (line 88) | struct IsVec { enum {value = 1}; } type IsVec (line 89) | struct IsVec { enum {value = 1}; } type IsVec (line 90) | struct IsVec { enum {value = 1}; } type IsVec (line 91) | struct IsVec { enum {value = 1}; } type IsVec (line 92) | struct IsVec { enum {value = 1}; } type IsVec (line 93) | struct IsVec { enum {value = 1}; } type IsVec (line 94) | struct IsVec { enum {value = 1}; } type IsVec (line 95) | struct IsVec { enum {value = 1}; } type IsVec (line 96) | struct IsVec { enum {value = 1}; } type IsVec (line 97) | struct IsVec { enum {value = 1}; } type IsVec (line 98) | struct IsVec { enum {value = 1}; } type IsVec (line 99) | struct IsVec { enum {value = 1}; } type IsVec (line 100) | struct IsVec { enum {value = 1}; } type IsVec (line 101) | struct IsVec { enum {value = 1}; } type IsVec (line 102) | struct IsVec { enum {value = 1}; } type IsVec (line 103) | struct IsVec { enum {value = 1}; } type IsVec (line 104) | struct IsVec { enum {value = 1}; } type IsVec (line 105) | struct IsVec { enum {value = 1}; } type IsVec (line 106) | struct IsVec { enum {value = 1}; } type IsVec (line 107) | struct IsVec { enum {value = 1}; } type IsVec (line 108) | struct IsVec { enum {value = 1}; } type IsVec (line 109) | struct IsVec { enum {value = 1}; } type IsVec (line 110) | struct IsVec { enum {value = 1}; } type IsVec (line 111) | struct IsVec { enum {value = 1}; } type IsVec (line 112) | struct IsVec { enum {value = 1}; } type IsVec (line 113) | struct IsVec { enum {value = 1}; } type IsVec (line 114) | struct IsVec { enum {value = 1}; } type IsVec (line 115) | struct IsVec { enum {value = 1}; } type IsVec (line 116) | struct IsVec { enum {value = 1}; } type IsVec (line 117) | struct IsVec { enum {value = 1}; } type IsVec (line 118) | struct IsVec { enum {value = 1}; } type IsVec (line 119) | struct IsVec { enum {value = 1}; } type IsVec (line 120) | struct IsVec { enum {value = 1}; } type AddParameterType (line 122) | struct AddParameterType { typedef const U& type; } type AddParameterType (line 123) | struct AddParameterType { typedef U& type; } type AddParameterType (line 124) | struct AddParameterType { typedef void type; } type ReferenceTraits (line 126) | struct ReferenceTraits type ReferenceTraits (line 131) | struct ReferenceTraits type PointerTraits (line 137) | struct PointerTraits type PointerTraits (line 142) | struct PointerTraits type PointerTraits (line 147) | struct PointerTraits type UnConst (line 153) | struct UnConst type UnConst (line 158) | struct UnConst type UnConst (line 163) | struct UnConst type UnVolatile (line 169) | struct UnVolatile type UnVolatile (line 174) | struct UnVolatile type UnVolatile (line 179) | struct UnVolatile FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/detail/vec_distance_detail.hpp type cv (line 48) | namespace cv { namespace gpu { namespace device type gpu (line 48) | namespace gpu { namespace device type device (line 48) | namespace device type vec_distance_detail (line 50) | namespace vec_distance_detail type UnrollVecDiffCached (line 52) | struct UnrollVecDiffCached method __device__ (line 55) | static __device__ void calcCheck(const T1* vecCached, const T2... method __device__ (line 71) | static __device__ void calcWithoutCheck(const T1* vecCached, c... type UnrollVecDiffCached (line 84) | struct UnrollVecDiffCached method __device__ (line 87) | static __device__ __forceinline__ void calcCheck(const T1*, co... method __device__ (line 92) | static __device__ __forceinline__ void calcWithoutCheck(const ... type VecDiffCachedCalculator (line 97) | struct VecDiffCachedCalculator type VecDiffCachedCalculator (line 98) | struct VecDiffCachedCalculator method __device__ (line 101) | static __device__ __forceinline__ void calc(const T1* vecCache... type VecDiffCachedCalculator (line 106) | struct VecDiffCachedCalculator method __device__ (line 109) | static __device__ __forceinline__ void calc(const T1* vecCache... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/dynamic_smem.hpp type cv (line 46) | namespace cv { namespace gpu { namespace device type gpu (line 46) | namespace gpu { namespace device type device (line 46) | namespace device type DynamicSharedMem (line 48) | struct DynamicSharedMem type DynamicSharedMem (line 64) | struct DynamicSharedMem FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/emulation.hpp type cv (line 48) | namespace cv { namespace gpu { namespace device type gpu (line 48) | namespace gpu { namespace device type device (line 48) | namespace device type Emulation (line 50) | struct Emulation method syncthreadsOr (line 53) | int syncthreadsOr(int pred) method __forceinline__ (line 64) | static __forceinline__ __device__ int Ballot(int predicate) type smem (line 77) | struct smem method __device__ (line 82) | static __device__ __forceinline__ T atomicInc(T* address, T val) method __device__ (line 101) | static __device__ __forceinline__ T atomicAdd(T* address, T val) method __device__ (line 120) | static __device__ __forceinline__ T atomicMin(T* address, T val) FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/filters.hpp type cv (line 51) | namespace cv { namespace gpu { namespace device type gpu (line 51) | namespace gpu { namespace device type device (line 51) | namespace device type PointFilter (line 53) | struct PointFilter method PointFilter (line 58) | explicit __host__ __device__ __forceinline__ PointFilter(const P... method elem_type (line 65) | elem_type operator ()(float y, float x) const type LinearFilter (line 73) | struct LinearFilter method LinearFilter (line 78) | explicit __host__ __device__ __forceinline__ LinearFilter(const ... method elem_type (line 84) | elem_type operator ()(float y, float x) const type CubicFilter (line 113) | struct CubicFilter method CubicFilter (line 119) | explicit __host__ __device__ __forceinline__ CubicFilter(const P... method bicubicCoeff (line 126) | float bicubicCoeff(float x_) method __device__ (line 143) | __device__ elem_type operator ()(float y, float x) const type IntegerAreaFilter (line 172) | struct IntegerAreaFilter method IntegerAreaFilter (line 177) | explicit __host__ __device__ __forceinline__ IntegerAreaFilter(c... method elem_type (line 180) | elem_type operator ()(float y, float x) const type AreaFilter (line 210) | struct AreaFilter method AreaFilter (line 215) | explicit __host__ __device__ __forceinline__ AreaFilter(const Pt... method elem_type (line 218) | elem_type operator ()(float y, float x) const FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/funcattrib.hpp type cv (line 48) | namespace cv { namespace gpu { namespace device type gpu (line 48) | namespace gpu { namespace device type device (line 48) | namespace device function printFuncAttrib (line 51) | void printFuncAttrib(Func& func) FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/functional.hpp type cv (line 52) | namespace cv { namespace gpu { namespace device type gpu (line 52) | namespace gpu { namespace device type device (line 52) | namespace device type unary_function (line 55) | struct unary_function : public std::unary_function method T (line 61) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 66) | __forceinline__ plus() {} method __forceinline__ (line 67) | __forceinline__ plus(const plus&) {} type minus (line 70) | struct minus : binary_function method T (line 72) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 77) | __forceinline__ minus() {} method __forceinline__ (line 78) | __forceinline__ minus(const minus&) {} type multiplies (line 81) | struct multiplies : binary_function method T (line 83) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 88) | __forceinline__ multiplies() {} method __forceinline__ (line 89) | __forceinline__ multiplies(const multiplies&) {} type divides (line 92) | struct divides : binary_function method T (line 94) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 99) | __forceinline__ divides() {} method __forceinline__ (line 100) | __forceinline__ divides(const divides&) {} type modulus (line 103) | struct modulus : binary_function method T (line 105) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 110) | __forceinline__ modulus() {} method __forceinline__ (line 111) | __forceinline__ modulus(const modulus&) {} type negate (line 114) | struct negate : unary_function method T (line 116) | T operator ()(typename TypeTraits::ParameterType a) const method __forceinline__ (line 120) | __forceinline__ negate() {} method __forceinline__ (line 121) | __forceinline__ negate(const negate&) {} type equal_to (line 125) | struct equal_to : binary_function method __forceinline__ (line 132) | __forceinline__ equal_to() {} method __forceinline__ (line 133) | __forceinline__ equal_to(const equal_to&) {} type not_equal_to (line 136) | struct not_equal_to : binary_function method __forceinline__ (line 143) | __forceinline__ not_equal_to() {} method __forceinline__ (line 144) | __forceinline__ not_equal_to(const not_equal_to&) {} type greater (line 147) | struct greater : binary_function method __forceinline__ (line 154) | __forceinline__ greater() {} method __forceinline__ (line 155) | __forceinline__ greater(const greater&) {} type less (line 158) | struct less : binary_function method __forceinline__ (line 165) | __forceinline__ less() {} method __forceinline__ (line 166) | __forceinline__ less(const less&) {} type greater_equal (line 169) | struct greater_equal : binary_function method __forceinline__ (line 176) | __forceinline__ greater_equal() {} method __forceinline__ (line 177) | __forceinline__ greater_equal(const greater_equal&) {} type less_equal (line 180) | struct less_equal : binary_function method __forceinline__ (line 187) | __forceinline__ less_equal() {} method __forceinline__ (line 188) | __forceinline__ less_equal(const less_equal&) {} type logical_and (line 192) | struct logical_and : binary_function method __forceinline__ (line 199) | __forceinline__ logical_and() {} method __forceinline__ (line 200) | __forceinline__ logical_and(const logical_and&) {} type logical_or (line 203) | struct logical_or : binary_function method __forceinline__ (line 210) | __forceinline__ logical_or() {} method __forceinline__ (line 211) | __forceinline__ logical_or(const logical_or&) {} type logical_not (line 214) | struct logical_not : unary_function method __forceinline__ (line 220) | __forceinline__ logical_not() {} method __forceinline__ (line 221) | __forceinline__ logical_not(const logical_not&) {} type bit_and (line 225) | struct bit_and : binary_function method T (line 227) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 232) | __forceinline__ bit_and() {} method __forceinline__ (line 233) | __forceinline__ bit_and(const bit_and&) {} type bit_or (line 236) | struct bit_or : binary_function method T (line 238) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 243) | __forceinline__ bit_or() {} method __forceinline__ (line 244) | __forceinline__ bit_or(const bit_or&) {} type bit_xor (line 247) | struct bit_xor : binary_function method T (line 249) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 254) | __forceinline__ bit_xor() {} method __forceinline__ (line 255) | __forceinline__ bit_xor(const bit_xor&) {} type bit_not (line 258) | struct bit_not : unary_function method T (line 260) | T operator ()(typename TypeTraits::ParameterType v) const method __forceinline__ (line 264) | __forceinline__ bit_not() {} method __forceinline__ (line 265) | __forceinline__ bit_not(const bit_not&) {} type identity (line 269) | struct identity : unary_function method __forceinline__ (line 275) | __forceinline__ identity() {} method __forceinline__ (line 276) | __forceinline__ identity(const identity&) {} type project1st (line 279) | struct project1st : binary_function method __forceinline__ (line 285) | __forceinline__ project1st() {} method __forceinline__ (line 286) | __forceinline__ project1st(const project1st&) {} type project2nd (line 289) | struct project2nd : binary_function method __forceinline__ (line 295) | __forceinline__ project2nd() {} method __forceinline__ (line 296) | __forceinline__ project2nd(const project2nd&) {} type maximum (line 309) | struct maximum : binary_function method T (line 311) | T operator()(typename TypeTraits::ParameterType lhs, typename... method __forceinline__ (line 315) | __forceinline__ maximum() {} method __forceinline__ (line 316) | __forceinline__ maximum(const maximum&) {} type minimum (line 329) | struct minimum : binary_function method T (line 331) | T operator()(typename TypeTraits::ParameterType lhs, typename... method __forceinline__ (line 335) | __forceinline__ minimum() {} method __forceinline__ (line 336) | __forceinline__ minimum(const minimum&) {} type abs_func (line 353) | struct abs_func : unary_function method T (line 355) | T operator ()(typename TypeTraits::ParameterType x) const method __forceinline__ (line 360) | __forceinline__ abs_func() {} method __forceinline__ (line 361) | __forceinline__ abs_func(const abs_func&) {} type abs_func (line 363) | struct abs_func : unary_function (line 373) | struct abs_func : unary_function (line 383) | struct abs_func : unary_function method __forceinline__ (line 390) | __forceinline__ abs_func() {} method __forceinline__ (line 391) | __forceinline__ abs_func(const abs_func&) {} type abs_func (line 393) | struct abs_func : unary_function (line 403) | struct abs_func : unary_function method __forceinline__ (line 410) | __forceinline__ abs_func() {} method __forceinline__ (line 411) | __forceinline__ abs_func(const abs_func&) {} type abs_func (line 413) | struct abs_func : unary_function (line 423) | struct abs_func : unary_function method __forceinline__ (line 430) | __forceinline__ abs_func() {} method __forceinline__ (line 431) | __forceinline__ abs_func(const abs_func&) {} type abs_func (line 433) | struct abs_func : unary_function method __forceinline__ (line 440) | __forceinline__ abs_func() {} method __forceinline__ (line 441) | __forceinline__ abs_func(const abs_func&) {} type abs_func (line 443) | struct abs_func : unary_function method __forceinline__ (line 450) | __forceinline__ abs_func() {} method __forceinline__ (line 451) | __forceinline__ abs_func(const abs_func&) {} type hypot_sqr_func (line 522) | struct hypot_sqr_func : binary_function method T (line 524) | T operator ()(typename TypeTraits::ParameterType src1, typena... method __forceinline__ (line 528) | __forceinline__ hypot_sqr_func() {} method __forceinline__ (line 529) | __forceinline__ hypot_sqr_func(const hypot_sqr_func&) {} type saturate_cast_func (line 533) | struct saturate_cast_func : unary_function method D (line 535) | D operator ()(typename TypeTraits::ParameterType v) const method __forceinline__ (line 539) | __forceinline__ saturate_cast_func() {} method __forceinline__ (line 540) | __forceinline__ saturate_cast_func(const saturate_cast_func&) {} type thresh_binary_func (line 544) | struct thresh_binary_func : unary_function method T (line 548) | T operator()(typename TypeTraits::ParameterType src) const method __forceinline__ (line 553) | __forceinline__ thresh_binary_func() {} type thresh_binary_inv_func (line 561) | struct thresh_binary_inv_func : unary_function method T (line 565) | T operator()(typename TypeTraits::ParameterType src) const method __forceinline__ (line 570) | __forceinline__ thresh_binary_inv_func() {} type thresh_trunc_func (line 578) | struct thresh_trunc_func : unary_function method thresh_trunc_func (line 580) | explicit __host__ __device__ __forceinline__ thresh_trunc_func(T... method T (line 582) | T operator()(typename TypeTraits::ParameterType src) const method __forceinline__ (line 587) | __forceinline__ thresh_trunc_func() {} method __forceinline__ (line 588) | __forceinline__ thresh_trunc_func(const thresh_trunc_func& other) type thresh_to_zero_func (line 594) | struct thresh_to_zero_func : unary_function method thresh_to_zero_func (line 596) | explicit __host__ __device__ __forceinline__ thresh_to_zero_func... method T (line 598) | T operator()(typename TypeTraits::ParameterType src) const method __forceinline__ (line 603) | __forceinline__ thresh_to_zero_func() {} method __forceinline__ (line 604) | __forceinline__ thresh_to_zero_func(const thresh_to_zero_func& o... type thresh_to_zero_inv_func (line 610) | struct thresh_to_zero_inv_func : unary_function method thresh_to_zero_inv_func (line 612) | explicit __host__ __device__ __forceinline__ thresh_to_zero_inv_... method T (line 614) | T operator()(typename TypeTraits::ParameterType src) const method __forceinline__ (line 619) | __forceinline__ thresh_to_zero_inv_func() {} method __forceinline__ (line 620) | __forceinline__ thresh_to_zero_inv_func(const thresh_to_zero_inv... type unary_negate (line 627) | struct unary_negate : unary_function not1(c... type binary_negate (line 647) | struct binary_negate : binary_function... type binder1st (line 668) | struct binder1st : unary_function bind1st(const Op... type binder2nd (line 689) | struct binder2nd : unary_function bind2nd(const Op... type IsUnaryFunction (line 711) | struct IsUnaryFunction type No (line 714) | struct No {Yes a[2];} type IsBinaryFunction (line 724) | struct IsBinaryFunction type No (line 727) | struct No {Yes a[2];} type functional_detail (line 737) | namespace functional_detail type UnOpShift (line 739) | struct UnOpShift { enum { shift = 1 }; } type UnOpShift (line 740) | struct UnOpShift { enum { shift = 4 }; } type UnOpShift (line 741) | struct UnOpShift { enum { shift = 2 }; } type DefaultUnaryShift (line 743) | struct DefaultUnaryShift type BinOpShift (line 748) | struct BinOpShift { enum { shift = 1 }; } type BinOpShift (line 749) | struct BinOpShift { enum { sh... type BinOpShift (line 750) | struct BinOpShift { enum { sh... type DefaultBinaryShift (line 752) | struct DefaultBinaryShift type ShiftDispatcher (line 757) | struct ShiftDispatcher type ShiftDispatcher (line 758) | struct ShiftDispatcher type ShiftDispatcher (line 762) | struct ShiftDispatcher type DefaultTransformShift (line 768) | struct DefaultTransformShift type DefaultTransformFunctorTraits (line 773) | struct DefaultTransformFunctorTraits type TransformFunctorTraits (line 783) | struct TransformFunctorTraits : DefaultTransformFunctorTraits (line 55) | struct numeric_limits method min (line 57) | static bool min() { return false; } method max (line 58) | static bool max() { return true; } type numeric_limits (line 62) | struct numeric_limits method min (line 64) | static signed char min() { return SCHAR_MIN; } method max (line 65) | static signed char max() { return SCHAR_MAX; } type numeric_limits (line 69) | struct numeric_limits method min (line 71) | static unsigned char min() { return 0; } method max (line 72) | static unsigned char max() { return UCHAR_MAX; } type numeric_limits (line 76) | struct numeric_limits method min (line 78) | static short min() { return SHRT_MIN; } method max (line 79) | static short max() { return SHRT_MAX; } type numeric_limits (line 83) | struct numeric_limits method min (line 85) | static unsigned short min() { return 0; } method max (line 86) | static unsigned short max() { return USHRT_MAX; } type numeric_limits (line 90) | struct numeric_limits method min (line 92) | static int min() { return INT_MIN; } method max (line 93) | static int max() { return INT_MAX; } type numeric_limits (line 97) | struct numeric_limits method min (line 99) | static unsigned int min() { return 0; } method max (line 100) | static unsigned int max() { return UINT_MAX; } type numeric_limits (line 104) | struct numeric_limits method min (line 106) | static float min() { return FLT_MIN; } method max (line 107) | static float max() { return FLT_MAX; } method epsilon (line 108) | static float epsilon() { return FLT_EPSILON; } type numeric_limits (line 112) | struct numeric_limits method min (line 114) | static double min() { return DBL_MIN; } method max (line 115) | static double max() { return DBL_MAX; } method epsilon (line 116) | static double epsilon() { return DBL_EPSILON; } FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/reduce.hpp type cv (line 50) | namespace cv { namespace gpu { namespace device type gpu (line 50) | namespace gpu { namespace device type device (line 50) | namespace device function __device__ (line 53) | __device__ __forceinline__ void reduce(volatile T* smem, T& val, u... function __device__ (line 61) | __device__ __forceinline__ void reduce(const thrust::tuple(schar v) function __device__ (line 66) | __device__ __forceinline__ uchar saturate_cast(short v) function __device__ (line 72) | __device__ __forceinline__ uchar saturate_cast(ushort v) function __device__ (line 78) | __device__ __forceinline__ uchar saturate_cast(int v) function __device__ (line 84) | __device__ __forceinline__ uchar saturate_cast(uint v) function __device__ (line 90) | __device__ __forceinline__ uchar saturate_cast(float v) function __device__ (line 96) | __device__ __forceinline__ uchar saturate_cast(double v) function __device__ (line 107) | __device__ __forceinline__ schar saturate_cast(uchar v) function __device__ (line 114) | __device__ __forceinline__ schar saturate_cast(short v) function __device__ (line 120) | __device__ __forceinline__ schar saturate_cast(ushort v) function __device__ (line 126) | __device__ __forceinline__ schar saturate_cast(int v) function __device__ (line 132) | __device__ __forceinline__ schar saturate_cast(uint v) function __device__ (line 138) | __device__ __forceinline__ schar saturate_cast(float v) function __device__ (line 144) | __device__ __forceinline__ schar saturate_cast(double v) function __device__ (line 155) | __device__ __forceinline__ ushort saturate_cast(schar v) function __device__ (line 162) | __device__ __forceinline__ ushort saturate_cast(short v) function __device__ (line 168) | __device__ __forceinline__ ushort saturate_cast(int v) function __device__ (line 174) | __device__ __forceinline__ ushort saturate_cast(uint v) function __device__ (line 180) | __device__ __forceinline__ ushort saturate_cast(float v) function __device__ (line 186) | __device__ __forceinline__ ushort saturate_cast(double v) function __device__ (line 197) | __device__ __forceinline__ short saturate_cast(ushort v) function __device__ (line 203) | __device__ __forceinline__ short saturate_cast(int v) function __device__ (line 209) | __device__ __forceinline__ short saturate_cast(uint v) function __device__ (line 215) | __device__ __forceinline__ short saturate_cast(float v) function __device__ (line 221) | __device__ __forceinline__ short saturate_cast(double v) function __device__ (line 232) | __device__ __forceinline__ int saturate_cast(uint v) function __device__ (line 238) | __device__ __forceinline__ int saturate_cast(float v) function __device__ (line 242) | __device__ __forceinline__ int saturate_cast(double v) function __device__ (line 251) | __device__ __forceinline__ uint saturate_cast(schar v) function __device__ (line 258) | __device__ __forceinline__ uint saturate_cast(short v) function __device__ (line 264) | __device__ __forceinline__ uint saturate_cast(int v) function __device__ (line 270) | __device__ __forceinline__ uint saturate_cast(float v) function __device__ (line 274) | __device__ __forceinline__ uint saturate_cast(double v) FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/scan.hpp type cv (line 51) | namespace cv { namespace gpu { namespace device type gpu (line 51) | namespace gpu { namespace device type device (line 51) | namespace device type ScanKind (line 53) | enum ScanKind { EXCLUSIVE = 0, INCLUSIVE = 1 } type WarpScan (line 55) | struct WarpScan method WarpScan (line 57) | WarpScan() {} method WarpScan (line 58) | WarpScan(const WarpScan& other) { (void)other; } method T (line 60) | T operator()( volatile T *ptr , const unsigned int idx) method index (line 77) | unsigned int index(const unsigned int tid) method init (line 82) | void init(volatile T *ptr){} type WarpScanNoComp (line 89) | struct WarpScanNoComp method WarpScanNoComp (line 91) | WarpScanNoComp() {} method WarpScanNoComp (line 92) | WarpScanNoComp(const WarpScanNoComp& other) { (void)other; } method T (line 94) | T operator()( volatile T *ptr , const unsigned int idx) method index (line 111) | unsigned int index(const unsigned int tid) method init (line 116) | void init(volatile T *ptr) type BlockScan (line 129) | struct BlockScan method BlockScan (line 131) | BlockScan() {} method BlockScan (line 132) | BlockScan(const BlockScan& other) { (void)other; } method T (line 134) | T operator()(volatile T *ptr) function __device__ (line 174) | __device__ T warpScanInclusive(T idata, volatile T* s_Data, unsign... function __device__ (line 206) | __device__ __forceinline__ T warpScanExclusive(T idata, volatile T... function __device__ (line 212) | __device__ T blockScanInclusive(T idata, volatile T* s_Data, unsig... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/simd_functions.hpp type cv (line 126) | namespace cv { namespace gpu { namespace device type gpu (line 126) | namespace gpu { namespace device type device (line 126) | namespace device function __device__ (line 130) | static __device__ __forceinline__ unsigned int vadd2(unsigned int ... function __device__ (line 151) | static __device__ __forceinline__ unsigned int vsub2(unsigned int ... function __device__ (line 172) | static __device__ __forceinline__ unsigned int vabsdiff2(unsigned ... function __device__ (line 199) | static __device__ __forceinline__ unsigned int vavg2(unsigned int ... function __device__ (line 214) | static __device__ __forceinline__ unsigned int vavrg2(unsigned int... function __device__ (line 234) | static __device__ __forceinline__ unsigned int vseteq2(unsigned in... function __device__ (line 255) | static __device__ __forceinline__ unsigned int vcmpeq2(unsigned in... function __device__ (line 279) | static __device__ __forceinline__ unsigned int vsetge2(unsigned in... function __device__ (line 296) | static __device__ __forceinline__ unsigned int vcmpge2(unsigned in... function __device__ (line 316) | static __device__ __forceinline__ unsigned int vsetgt2(unsigned in... function __device__ (line 333) | static __device__ __forceinline__ unsigned int vcmpgt2(unsigned in... function __device__ (line 353) | static __device__ __forceinline__ unsigned int vsetle2(unsigned in... function __device__ (line 370) | static __device__ __forceinline__ unsigned int vcmple2(unsigned in... function __device__ (line 390) | static __device__ __forceinline__ unsigned int vsetlt2(unsigned in... function __device__ (line 407) | static __device__ __forceinline__ unsigned int vcmplt2(unsigned in... function __device__ (line 427) | static __device__ __forceinline__ unsigned int vsetne2(unsigned in... function __device__ (line 448) | static __device__ __forceinline__ unsigned int vcmpne2(unsigned in... function __device__ (line 472) | static __device__ __forceinline__ unsigned int vmax2(unsigned int ... function __device__ (line 495) | static __device__ __forceinline__ unsigned int vmin2(unsigned int ... function __device__ (line 520) | static __device__ __forceinline__ unsigned int vadd4(unsigned int ... function __device__ (line 544) | static __device__ __forceinline__ unsigned int vsub4(unsigned int ... function __device__ (line 568) | static __device__ __forceinline__ unsigned int vavg4(unsigned int ... function __device__ (line 583) | static __device__ __forceinline__ unsigned int vavrg4(unsigned int... function __device__ (line 603) | static __device__ __forceinline__ unsigned int vseteq4(unsigned in... function __device__ (line 624) | static __device__ __forceinline__ unsigned int vcmpeq4(unsigned in... function __device__ (line 648) | static __device__ __forceinline__ unsigned int vsetle4(unsigned in... function __device__ (line 665) | static __device__ __forceinline__ unsigned int vcmple4(unsigned in... function __device__ (line 685) | static __device__ __forceinline__ unsigned int vsetlt4(unsigned in... function __device__ (line 702) | static __device__ __forceinline__ unsigned int vcmplt4(unsigned in... function __device__ (line 722) | static __device__ __forceinline__ unsigned int vsetge4(unsigned in... function __device__ (line 739) | static __device__ __forceinline__ unsigned int vcmpge4(unsigned in... function __device__ (line 759) | static __device__ __forceinline__ unsigned int vsetgt4(unsigned in... function __device__ (line 776) | static __device__ __forceinline__ unsigned int vcmpgt4(unsigned in... function __device__ (line 796) | static __device__ __forceinline__ unsigned int vsetne4(unsigned in... function __device__ (line 817) | static __device__ __forceinline__ unsigned int vcmpne4(unsigned in... function __device__ (line 841) | static __device__ __forceinline__ unsigned int vabsdiff4(unsigned ... function __device__ (line 864) | static __device__ __forceinline__ unsigned int vmax4(unsigned int ... function __device__ (line 886) | static __device__ __forceinline__ unsigned int vmin4(unsigned int ... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/static_check.hpp type cv (line 52) | namespace cv { namespace gpu type gpu (line 52) | namespace gpu type device (line 54) | namespace device type Static (line 56) | struct Static {} type Static (line 58) | struct Static FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/transform.hpp type cv (line 50) | namespace cv { namespace gpu { namespace device type gpu (line 50) | namespace gpu { namespace device type device (line 50) | namespace device function transform (line 53) | static inline void transform(PtrStepSz src, PtrStepSz dst, U... function transform (line 60) | static inline void transform(PtrStepSz src1, PtrStepSz src... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/type_traits.hpp type cv (line 48) | namespace cv { namespace gpu { namespace device type gpu (line 48) | namespace gpu { namespace device type device (line 48) | namespace device type IsSimpleParameter (line 50) | struct IsSimpleParameter type TypeTraits (line 56) | struct TypeTraits FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/utility.hpp type cv (line 49) | namespace cv { namespace gpu { namespace device type gpu (line 49) | namespace gpu { namespace device type device (line 49) | namespace device function swap (line 59) | void __device__ __host__ __forceinline__ swap(T& a, T& b) type SingleMask (line 69) | struct SingleMask method SingleMask (line 71) | explicit __host__ __device__ __forceinline__ SingleMask(PtrStepb... method __forceinline__ (line 72) | __forceinline__ SingleMask(const SingleMask& mask_): mask(mask_.... type SingleMaskChannels (line 82) | struct SingleMaskChannels type MaskCollection (line 98) | struct MaskCollection method MaskCollection (line 100) | explicit __host__ __device__ __forceinline__ MaskCollection(PtrS... method MaskCollection (line 103) | MaskCollection(const MaskCollection& masks_) method next (line 106) | void next() method setMask (line 110) | void setMask(int z) type WithOutMask (line 125) | struct WithOutMask method __forceinline__ (line 127) | __forceinline__ WithOutMask(){} method __forceinline__ (line 128) | __forceinline__ WithOutMask(const WithOutMask&){} method next (line 130) | void next() const method setMask (line 133) | void setMask(int) const method check (line 147) | bool check(int, int) method check (line 152) | bool check(int, int, int) function __device__ (line 162) | __device__ __forceinline__ bool solve2x2(const T A[2][2], const T ... function __device__ (line 181) | __device__ __forceinline__ bool solve3x3(const T A[3][3], const T ... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/vec_distance.hpp type cv (line 50) | namespace cv { namespace gpu { namespace device type gpu (line 50) | namespace gpu { namespace device type device (line 50) | namespace device type L1Dist (line 52) | struct L1Dist method L1Dist (line 57) | L1Dist() : mySum(0) {} method reduceIter (line 59) | void reduceIter(int val1, int val2) method __device__ (line 64) | __device__ __forceinline__ void reduceAll(int* smem, int tid) type L1Dist (line 76) | struct L1Dist method L1Dist (line 81) | L1Dist() : mySum(0.0f) {} method reduceIter (line 83) | void reduceIter(float val1, float val2) method __device__ (line 88) | __device__ __forceinline__ void reduceAll(float* smem, int tid) type L2Dist (line 101) | struct L2Dist method L2Dist (line 106) | L2Dist() : mySum(0.0f) {} method reduceIter (line 108) | void reduceIter(float val1, float val2) method __device__ (line 114) | __device__ __forceinline__ void reduceAll(float* smem, int tid) type HammingDist (line 127) | struct HammingDist method HammingDist (line 132) | HammingDist() : mySum(0) {} method reduceIter (line 134) | void reduceIter(int val1, int val2) method __device__ (line 139) | __device__ __forceinline__ void reduceAll(int* smem, int tid) function __device__ (line 154) | __device__ void calcVecDiffGlobal(const T1* vec1, const T2* vec2, ... function __device__ (line 172) | __device__ __forceinline__ void calcVecDiffCached(const T1* vecCac... type VecDiffGlobal (line 180) | struct VecDiffGlobal method VecDiffGlobal (line 182) | explicit __device__ __forceinline__ VecDiffGlobal(const T1* vec1... method __device__ (line 188) | __device__ __forceinline__ void calc(const T2* vec2, int len, Di... type VecDiffCachedRegister (line 197) | struct VecDiffCachedRegister method __device__ (line 199) | __device__ __forceinline__ VecDiffCachedRegister(const T1* vec1,... method __device__ (line 215) | __device__ __forceinline__ void calc(const T2* vec2, int len, Di... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/vec_math.hpp type vec_math_detail (line 54) | namespace vec_math_detail type SatCastHelper (line 56) | struct SatCastHelper type SatCastHelper<1, VecD> (line 57) | struct SatCastHelper<1, VecD> method __device__ (line 59) | static __device__ __forceinline__ VecD cast(const VecS& v) type SatCastHelper<2, VecD> (line 65) | struct SatCastHelper<2, VecD> method __device__ (line 67) | static __device__ __forceinline__ VecD cast(const VecS& v) type SatCastHelper<3, VecD> (line 73) | struct SatCastHelper<3, VecD> method __device__ (line 75) | static __device__ __forceinline__ VecD cast(const VecS& v) type SatCastHelper<4, VecD> (line 81) | struct SatCastHelper<4, VecD> method __device__ (line 83) | static __device__ __forceinline__ VecD cast(const VecS& v) function __device__ (line 90) | static __device__ __forceinline__ VecD saturate_cast_helper(const VecS... function __device__ (line 96) | static __device__ __forceinline__ T saturate_cast(const uchar1& v) {retu... function __device__ (line 97) | static __device__ __forceinline__ T saturate_cast(const char1& v) {retur... function __device__ (line 98) | static __device__ __forceinline__ T saturate_cast(const ushort1& v) {ret... function __device__ (line 99) | static __device__ __forceinline__ T saturate_cast(const short1& v) {retu... function __device__ (line 100) | static __device__ __forceinline__ T saturate_cast(const uint1& v) {retur... function __device__ (line 101) | static __device__ __forceinline__ T saturate_cast(const int1& v) {return... function __device__ (line 102) | static __device__ __forceinline__ T saturate_cast(const float1& v) {retu... function __device__ (line 103) | static __device__ __forceinline__ T saturate_cast(const double1& v) {ret... function __device__ (line 105) | static __device__ __forceinline__ T saturate_cast(const uchar2& v) {retu... function __device__ (line 106) | static __device__ __forceinline__ T saturate_cast(const char2& v) {retur... function __device__ (line 107) | static __device__ __forceinline__ T saturate_cast(const ushort2& v) {ret... function __device__ (line 108) | static __device__ __forceinline__ T saturate_cast(const short2& v) {retu... function __device__ (line 109) | static __device__ __forceinline__ T saturate_cast(const uint2& v) {retur... function __device__ (line 110) | static __device__ __forceinline__ T saturate_cast(const int2& v) {return... function __device__ (line 111) | static __device__ __forceinline__ T saturate_cast(const float2& v) {retu... function __device__ (line 112) | static __device__ __forceinline__ T saturate_cast(const double2& v) {ret... function __device__ (line 114) | static __device__ __forceinline__ T saturate_cast(const uchar3& v) {retu... function __device__ (line 115) | static __device__ __forceinline__ T saturate_cast(const char3& v) {retur... function __device__ (line 116) | static __device__ __forceinline__ T saturate_cast(const ushort3& v) {ret... function __device__ (line 117) | static __device__ __forceinline__ T saturate_cast(const short3& v) {retu... function __device__ (line 118) | static __device__ __forceinline__ T saturate_cast(const uint3& v) {retur... function __device__ (line 119) | static __device__ __forceinline__ T saturate_cast(const int3& v) {return... function __device__ (line 120) | static __device__ __forceinline__ T saturate_cast(const float3& v) {retu... function __device__ (line 121) | static __device__ __forceinline__ T saturate_cast(const double3& v) {ret... function __device__ (line 123) | static __device__ __forceinline__ T saturate_cast(const uchar4& v) {retu... function __device__ (line 124) | static __device__ __forceinline__ T saturate_cast(const char4& v) {retur... function __device__ (line 125) | static __device__ __forceinline__ T saturate_cast(const ushort4& v) {ret... function __device__ (line 126) | static __device__ __forceinline__ T saturate_cast(const short4& v) {retu... function __device__ (line 127) | static __device__ __forceinline__ T saturate_cast(const uint4& v) {retur... function __device__ (line 128) | static __device__ __forceinline__ T saturate_cast(const int4& v) {return... function __device__ (line 129) | static __device__ __forceinline__ T saturate_cast(const float4& v) {retu... function __device__ (line 130) | static __device__ __forceinline__ T saturate_cast(const double4& v) {ret... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/vec_traits.hpp type cv (line 48) | namespace cv { namespace gpu { namespace device type gpu (line 48) | namespace gpu { namespace device type device (line 48) | namespace device type TypeVec (line 50) | struct TypeVec type __align__ (line 52) | struct __align__ function __host__ (line 56) | static __host__ __device__ __forceinline__ uchar8 make_uchar8(ucha... type __align__ (line 61) | struct __align__ function __host__ (line 65) | static __host__ __device__ __forceinline__ char8 make_char8(schar ... type __align__ (line 70) | struct __align__ function __host__ (line 74) | static __host__ __device__ __forceinline__ ushort8 make_ushort8(us... type __align__ (line 79) | struct __align__ function __host__ (line 83) | static __host__ __device__ __forceinline__ short8 make_short8(shor... type __align__ (line 88) | struct __align__ function __host__ (line 92) | static __host__ __device__ __forceinline__ uint8 make_uint8(uint a... type __align__ (line 97) | struct __align__ function __host__ (line 101) | static __host__ __device__ __forceinline__ int8 make_int8(int a0, ... type __align__ (line 106) | struct __align__ function __host__ (line 110) | static __host__ __device__ __forceinline__ float8 make_float8(floa... type double8 (line 115) | struct double8 function __host__ (line 119) | static __host__ __device__ __forceinline__ double8 make_double8(do... type TypeVec (line 148) | struct TypeVec { typedef schar vec_type; } type TypeVec (line 149) | struct TypeVec { typedef char2 vec_type; } type TypeVec (line 150) | struct TypeVec { typedef char3 vec_type; } type TypeVec (line 151) | struct TypeVec { typedef char4 vec_type; } type TypeVec (line 152) | struct TypeVec { typedef char8 vec_type; } type TypeVec (line 154) | struct TypeVec { typedef uchar vec_type; } type TypeVec (line 155) | struct TypeVec { typedef uchar2 vec_type; } type TypeVec (line 156) | struct TypeVec { typedef uchar3 vec_type; } type TypeVec (line 157) | struct TypeVec { typedef uchar4 vec_type; } type TypeVec (line 158) | struct TypeVec { typedef uchar8 vec_type; } type VecTraits (line 160) | struct VecTraits type VecTraits (line 222) | struct VecTraits method all (line 226) | char all(char v) {return v;} method make (line 227) | char make(char x) {return x;} method make (line 228) | char make(const char* x) {return *x;} type VecTraits (line 230) | struct VecTraits method __forceinline__ (line 234) | __forceinline__ schar all(schar v) {return v;} method __forceinline__ (line 235) | __forceinline__ schar make(schar x) {return x;} method __forceinline__ (line 236) | __forceinline__ schar make(const schar* x) {return *x;} type VecTraits (line 238) | struct VecTraits method __forceinline__ (line 242) | __forceinline__ char1 all(schar v) {return make_char1(v);} method __forceinline__ (line 243) | __forceinline__ char1 make(schar x) {return make_char1(x);} method __forceinline__ (line 244) | __forceinline__ char1 make(const schar* v) {return make_char1(v[... type VecTraits (line 246) | struct VecTraits method __forceinline__ (line 250) | __forceinline__ char2 all(schar v) {return make_char2(v, v);} method __forceinline__ (line 251) | __forceinline__ char2 make(schar x, schar y) {return make_char2(... method __forceinline__ (line 252) | __forceinline__ char2 make(const schar* v) {return make_char2(v[... type VecTraits (line 254) | struct VecTraits method __forceinline__ (line 258) | __forceinline__ char3 all(schar v) {return make_char3(v, v, v);} method __forceinline__ (line 259) | __forceinline__ char3 make(schar x, schar y, schar z) {return ma... method __forceinline__ (line 260) | __forceinline__ char3 make(const schar* v) {return make_char3(v[... type VecTraits (line 262) | struct VecTraits method __forceinline__ (line 266) | __forceinline__ char4 all(schar v) {return make_char4(v, v, v, v);} method __forceinline__ (line 267) | __forceinline__ char4 make(schar x, schar y, schar z, schar w) {... method __forceinline__ (line 268) | __forceinline__ char4 make(const schar* v) {return make_char4(v[... type VecTraits (line 270) | struct VecTraits method __forceinline__ (line 274) | __forceinline__ char8 all(schar v) {return make_char8(v, v, v, v... method __forceinline__ (line 275) | __forceinline__ char8 make(schar a0, schar a1, schar a2, schar a... method __forceinline__ (line 276) | __forceinline__ char8 make(const schar* v) {return make_char8(v[... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/warp.hpp type cv (line 46) | namespace cv { namespace gpu { namespace device type gpu (line 46) | namespace gpu { namespace device type device (line 46) | namespace device type Warp (line 48) | struct Warp method laneId (line 58) | unsigned int laneId() method __device__ (line 66) | static __device__ __forceinline__ void fill(It beg, It end, cons... method __device__ (line 73) | static __device__ __forceinline__ OutIt copy(InIt beg, InIt end,... method __device__ (line 81) | static __device__ __forceinline__ OutIt transform(InIt beg, InIt... method __device__ (line 89) | static __device__ __forceinline__ OutIt transform(InIt1 beg1, In... method __device__ (line 101) | static __device__ __forceinline__ T reduce(volatile T *ptr, BinO... method __device__ (line 120) | static __device__ __forceinline__ void yota(OutIt beg, OutIt end... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/warp_reduce.hpp type cv (line 46) | namespace cv { namespace gpu { namespace device type gpu (line 46) | namespace gpu { namespace device type device (line 46) | namespace device function __device__ (line 49) | __device__ __forceinline__ T warp_reduce(volatile T *ptr , const u... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/device/warp_shuffle.hpp type cv (line 46) | namespace cv { namespace gpu { namespace device type gpu (line 46) | namespace gpu { namespace device type device (line 46) | namespace device function __device__ (line 49) | __device__ __forceinline__ T shfl(T val, int srcLane, int width = ... function __device__ (line 57) | __device__ __forceinline__ unsigned int shfl(unsigned int val, int... function __device__ (line 65) | __device__ __forceinline__ double shfl(double val, int srcLane, in... function __device__ (line 81) | __device__ __forceinline__ T shfl_down(T val, unsigned int delta, ... function __device__ (line 89) | __device__ __forceinline__ unsigned int shfl_down(unsigned int val... function __device__ (line 97) | __device__ __forceinline__ double shfl_down(double val, unsigned i... function __device__ (line 113) | __device__ __forceinline__ T shfl_up(T val, unsigned int delta, in... function __device__ (line 121) | __device__ __forceinline__ unsigned int shfl_up(unsigned int val, ... function __device__ (line 129) | __device__ __forceinline__ double shfl_up(double val, unsigned int... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/gpu.hpp type cv (line 57) | namespace cv { namespace gpu { type gpu (line 57) | namespace gpu { function CudaMem (line 70) | class CV_EXPORTS CudaMem function Stream (line 141) | class CV_EXPORTS Stream function BaseRowFilter_GPU (line 202) | class CV_EXPORTS BaseRowFilter_GPU function BaseColumnFilter_GPU (line 217) | class CV_EXPORTS BaseColumnFilter_GPU function BaseFilter_GPU (line 231) | class CV_EXPORTS BaseFilter_GPU function FilterEngine_GPU (line 247) | class CV_EXPORTS FilterEngine_GPU function blur (line 354) | static inline void blur(const GpuMat& src, GpuMat& dst, Size ksize, ... function scaleAdd (line 504) | static inline void scaleAdd(const GpuMat& src1, double alpha, const ... function ConvolveBuf (line 756) | struct CV_EXPORTS ConvolveBuf function MatchTemplateBuf (line 778) | struct CV_EXPORTS MatchTemplateBuf function FastNonLocalMeansDenoising (line 812) | class CV_EXPORTS FastNonLocalMeansDenoising function CannyBuf (line 827) | struct CV_EXPORTS CannyBuf function ImagePyramid (line 849) | class CV_EXPORTS ImagePyramid type HoughLinesBuf (line 877) | struct HoughLinesBuf type HoughCirclesBuf (line 894) | struct HoughCirclesBuf function GeneralizedHough_GPU (line 909) | class CV_EXPORTS GeneralizedHough_GPU : public Algorithm class CV_EXPORTS (line 1065) | class CV_EXPORTS function StereoBM_GPU (line 1075) | class CV_EXPORTS StereoBM_GPU function StereoBeliefPropagation (line 1114) | class CV_EXPORTS StereoBeliefPropagation function StereoConstantSpaceBP (line 1170) | class CV_EXPORTS StereoConstantSpaceBP function DisparityBilateralFilter (line 1228) | class CV_EXPORTS DisparityBilateralFilter function HOGConfidence (line 1262) | struct CV_EXPORTS HOGConfidence function HOGDescriptor (line 1270) | struct CV_EXPORTS HOGDescriptor function BruteForceMatcher_GPU_base (line 1355) | class CV_EXPORTS BruteForceMatcher_GPU_base class CV_EXPORTS (line 1509) | class CV_EXPORTS class CV_EXPORTS (line 1512) | class CV_EXPORTS class CV_EXPORTS (line 1519) | class CV_EXPORTS class CV_EXPORTS (line 1525) | class CV_EXPORTS function BruteForceMatcher_GPU_base (line 1532) | class CV_EXPORTS BFMatcher_GPU : public BruteForceMatcher_GPU_base function CascadeClassifier_GPU (line 1540) | class CV_EXPORTS CascadeClassifier_GPU function FAST_GPU (line 1570) | class CV_EXPORTS FAST_GPU function ORB_GPU (line 1626) | class CV_EXPORTS ORB_GPU function BroxOpticalFlow (line 1728) | class CV_EXPORTS BroxOpticalFlow function GoodFeaturesToTrackDetector_GPU (line 1765) | class CV_EXPORTS GoodFeaturesToTrackDetector_GPU function PyrLKOpticalFlow (line 1813) | class CV_EXPORTS PyrLKOpticalFlow function FarnebackOpticalFlow (line 1844) | class CV_EXPORTS FarnebackOpticalFlow function OpticalFlowDual_TVL1_GPU (line 1915) | class CV_EXPORTS OpticalFlowDual_TVL1_GPU function FastOpticalFlowBM (line 2005) | class CV_EXPORTS FastOpticalFlowBM function FGDStatModel (line 2045) | class CV_EXPORTS FGDStatModel class Impl (line 2416) | class Impl type detail (line 2423) | namespace detail class FrameQueue (line 2425) | class FrameQueue class VideoParser (line 2426) | class VideoParser function VideoReader_GPU (line 2429) | class CV_EXPORTS VideoReader_GPU class Impl (line 2515) | class Impl FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/gpu/stream_accessor.hpp type cv (line 49) | namespace cv type gpu (line 51) | namespace gpu type StreamAccessor (line 57) | struct StreamAccessor FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/highgui/cap_ios.h function interface (line 39) | interface CvAbstractCamera : NSObject FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/highgui/highgui.hpp type CvCapture (line 51) | struct CvCapture type CvVideoWriter (line 52) | struct CvVideoWriter type cv (line 54) | namespace cv function VideoCapture (line 204) | class CV_EXPORTS_W VideoCapture function VideoWriter (line 230) | class CV_EXPORTS_W VideoWriter FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/highgui/highgui_c.h type CvCapture (line 268) | typedef struct CvCapture CvCapture; type CvVideoWriter (line 595) | typedef struct CvVideoWriter CvVideoWriter; function CV_INLINE (line 599) | CV_INLINE int CV_FOURCC(char c1, char c2, char c3, char c4) FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/imgproc/imgproc.hpp type cv (line 58) | namespace cv function BaseRowFilter (line 80) | class CV_EXPORTS BaseRowFilter function BaseColumnFilter (line 107) | class CV_EXPORTS BaseColumnFilter function BaseFilter (line 133) | class CV_EXPORTS BaseFilter function FilterEngine (line 222) | class CV_EXPORTS FilterEngine function Scalar (line 370) | static inline Scalar morphologyDefaultBorderValue() { return Scalar::a... function GeneralizedHough (line 506) | class CV_EXPORTS GeneralizedHough : public Algorithm function Algorithm (line 766) | class CV_EXPORTS_W CLAHE : public Algorithm function Moments (line 1094) | class CV_EXPORTS_W_MAP Moments function Subdiv2D (line 1206) | class CV_EXPORTS_W Subdiv2D FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/imgproc/types_c.h type CvConnectedComp (line 53) | typedef struct CvConnectedComp type CvMoments (line 370) | typedef struct CvMoments type CvHuMoments (line 379) | typedef struct CvHuMoments type _CvContourScanner (line 423) | struct _CvContourScanner type CvChainPtReader (line 426) | typedef struct CvChainPtReader type CvSubdiv2DEdge (line 447) | typedef size_t CvSubdiv2DEdge; type CvQuadEdge2D (line 462) | typedef struct CvQuadEdge2D type CvSubdiv2DPoint (line 468) | typedef struct CvSubdiv2DPoint type CvSubdiv2D (line 482) | typedef struct CvSubdiv2D type CvSubdiv2DPointLocation (line 489) | typedef enum CvSubdiv2DPointLocation type CvNextEdgeType (line 499) | typedef enum CvNextEdgeType type CvConvexityDefect (line 539) | typedef struct CvConvexityDefect type CvFeatureTree (line 632) | struct CvFeatureTree type CvLSH (line 633) | struct CvLSH type CvLSHOperations (line 634) | struct CvLSHOperations FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/legacy/blobtrack.hpp type CvDefParam (line 67) | struct CvDefParam type CvDefParam (line 69) | struct CvDefParam function CvVSModule (line 82) | class CV_EXPORTS CvVSModule function CvFGDetector (line 137) | class CV_EXPORTS CvFGDetector : public CvVSModule type CvBlob (line 153) | struct CvBlob function CvBlob (line 160) | inline CvBlob cvBlob(float x,float y, float w, float h) function CvBlobSeq (line 180) | class CV_EXPORTS CvBlobSeq type CvBlobTrack (line 266) | struct CvBlobTrack function CvBlobTrackSeq (line 273) | class CV_EXPORTS CvBlobTrackSeq function CvBlobDetector (line 294) | class CV_EXPORTS CvBlobDetector: public CvVSModule function CvDetectedBlob (line 314) | struct CV_EXPORTS CvDetectedBlob : public CvBlob function CV_INLINE (line 319) | CV_INLINE CvDetectedBlob cvDetectedBlob( float x, float y, float w, floa... function CvObjectDetector (line 327) | class CV_EXPORTS CvObjectDetector function CV_INLINE (line 357) | CV_INLINE CvRect cvRectIntersection( const CvRect r1, const CvRect r2 ) type CvDrawShape (line 375) | struct CvDrawShape function CvImageDrawer (line 391) | class CV_EXPORTS CvImageDrawer function CvBlobTrackGen (line 410) | class CV_EXPORTS CvBlobTrackGen: public CvVSModule function cvReleaseBlobTrackGen (line 420) | inline void cvReleaseBlobTrackGen(CvBlobTrackGen** pBTGen) function CvBlobTracker (line 433) | class CV_EXPORTS CvBlobTracker: public CvVSModule function CvBlobTrackerOne (line 507) | class CV_EXPORTS CvBlobTrackerOne : public CvVSModule function cvReleaseBlobTrackerOne (line 524) | inline void cvReleaseBlobTrackerOne(CvBlobTrackerOne **ppT ) type CvBlobTrackerParamMS (line 537) | struct CvBlobTrackerParamMS type CvBlobTrackerParamLH (line 550) | struct CvBlobTrackerParamLH function CvBlobTrackPostProc (line 597) | class CV_EXPORTS CvBlobTrackPostProc: public CvVSModule function cvReleaseBlobTrackPostProc (line 620) | inline void cvReleaseBlobTrackPostProc(CvBlobTrackPostProc** pBTPP) function CvBlobTrackPostProcOne (line 628) | class CV_EXPORTS CvBlobTrackPostProcOne: public CvVSModule class CvBlobTrackPredictor (line 648) | class CvBlobTrackPredictor: public CvVSModule method CvBlobTrackPredictor (line 651) | CvBlobTrackPredictor(){SetTypeName("BlobTrackPredictor");} function CvBlobTrackAnalysis (line 661) | class CV_EXPORTS CvBlobTrackAnalysis: public CvVSModule function cvReleaseBlobTrackAnalysis (line 676) | inline void cvReleaseBlobTrackAnalysis(CvBlobTrackAnalysis** pBTPP) function CvBlobTrackFVGen (line 684) | class CV_EXPORTS CvBlobTrackFVGen : public CvVSModule function CvBlobTrackAnalysisOne (line 701) | class CV_EXPORTS CvBlobTrackAnalysisOne function CvBlobTrackAnalysisHeight (line 752) | class CV_EXPORTS CvBlobTrackAnalysisHeight: public CvBlobTrackAnalysis function CvBlobTrackerAuto (line 762) | class CV_EXPORTS CvBlobTrackerAuto: public CvVSModule function cvReleaseBlobTrackerAuto (line 777) | inline void cvReleaseBlobTrackerAuto(CvBlobTrackerAuto** ppT) type CvBlobTrackerAutoParam1 (line 788) | struct CvBlobTrackerAutoParam1 function CvBlobTrackerAuto (line 816) | inline CvBlobTrackerAuto* cvCreateBlobTrackerAuto(int type, void* param) type CvTracksTimePos (line 824) | struct CvTracksTimePos function CvProb (line 846) | class CV_EXPORTS CvProb function cvReleaseProb (line 861) | inline void cvReleaseProb(CvProb** ppProb){ppProb[0]->Release();ppProb[0... function CvProb (line 874) | inline CvProb* cvCreateProb(int type, int dim, CvSize size = cvSize(1,1)... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/legacy/compat.hpp type CvRandState (line 143) | struct CvRandState type _CvPixelPosition8u (line 325) | struct _CvPixelPosition8u type _CvPixelPosition8s (line 341) | struct _CvPixelPosition8s type _CvPixelPosition32f (line 354) | struct _CvPixelPosition32f type CvSURFPoint (line 606) | struct CvSURFPoint function CV_INLINE (line 617) | CV_INLINE CvSURFPoint cvSURFPoint( CvPoint2D32f pt, int laplacian, type CvSURFParams (line 632) | struct CvSURFParams type CvMSERParams (line 655) | struct CvMSERParams type CvStarKeypoint (line 691) | struct CvStarKeypoint function CV_INLINE (line 698) | CV_INLINE CvStarKeypoint cvStarKeypoint(CvPoint pt, int size, float resp... type CvStarDetectorParams (line 707) | struct CvStarDetectorParams function CV_INLINE (line 716) | CV_INLINE CvStarDetectorParams cvStarDetectorParams( FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/legacy/legacy.hpp type CvImgObsInfo (line 106) | struct CvImgObsInfo type CvEHMMState (line 120) | struct CvEHMMState type CvEHMM (line 130) | struct CvEHMM type CvEHMM (line 141) | struct CvEHMM type CvGraphWeightedVtx (line 268) | struct CvGraphWeightedVtx type CvGraphWeightedEdge (line 273) | struct CvGraphWeightedEdge type CvGraphWeightType (line 278) | enum CvGraphWeightType type CvCliqueFinder (line 305) | struct CvCliqueFinder type CvStereoLineCoeff (line 485) | struct CvStereoLineCoeff type CvCamera (line 504) | struct CvCamera type CvStereoCamera (line 515) | struct CvStereoCamera type CvContourOrientation (line 534) | struct CvContourOrientation type CvContourTree (line 750) | struct CvContourTree type CvGLCM (line 831) | struct CvGLCM type CvFaceTracker (line 857) | struct CvFaceTracker type CV_FACE_ELEMENTS (line 860) | enum CV_FACE_ELEMENTS type CvFace (line 875) | struct CvFace type Cv3dTracker2dTrackedObject (line 892) | struct Cv3dTracker2dTrackedObject function CV_INLINE (line 898) | CV_INLINE Cv3dTracker2dTrackedObject cv3dTracker2dTrackedObject(int id, ... type Cv3dTrackerTrackedObject (line 906) | struct Cv3dTrackerTrackedObject function CV_INLINE (line 912) | CV_INLINE Cv3dTrackerTrackedObject cv3dTrackerTrackedObject(int id, CvPo... type Cv3dTrackerCameraInfo (line 920) | struct Cv3dTrackerCameraInfo type Cv3dTrackerCameraIntrinsics (line 928) | struct Cv3dTrackerCameraIntrinsics type CvLeeParameters (line 959) | enum CvLeeParameters type CvVoronoiSite2D (line 984) | struct CvVoronoiSite2D type CvVoronoiSite2D (line 987) | struct CvVoronoiSite2D type CvVoronoiEdge2D (line 995) | struct CvVoronoiEdge2D type CvVoronoiNode2D (line 1005) | struct CvVoronoiNode2D type CvVoronoiDiagram2D (line 1014) | struct CvVoronoiDiagram2D type CvLCMEdge (line 1041) | struct CvLCMEdge type CvLCMNode (line 1042) | struct CvLCMNode type CvLCMEdge (line 1044) | struct CvLCMEdge type CvLCMNode (line 1053) | struct CvLCMNode type CvMatrix3 (line 1079) | struct CvMatrix3 type CvConDensation (line 1159) | struct CvConDensation type CvRandState (line 1172) | struct CvRandState function CV_INLINE (line 1189) | CV_INLINE int iplWidth( const IplImage* img ) function CV_INLINE (line 1194) | CV_INLINE int iplHeight( const IplImage* img ) type CvCalibEtalonType (line 1209) | enum CvCalibEtalonType function CvCalibFilter (line 1217) | class CV_EXPORTS CvCalibFilter function CvImage (line 1346) | class CV_EXPORTS CvImage function CvMatrix (line 1510) | class CV_EXPORTS CvMatrix function CvCamShiftTracker (line 1655) | class CV_EXPORTS CvCamShiftTracker function CvEMParams (line 1747) | struct CV_EXPORTS_W_MAP CvEMParams function CvStatModel (line 1766) | class CV_EXPORTS_W CvEM : public CvStatModel type cv (line 1836) | namespace cv function PatchGenerator (line 1845) | class CV_EXPORTS PatchGenerator function LDetector (line 1873) | class CV_EXPORTS LDetector function FernClassifier (line 1904) | class CV_EXPORTS FernClassifier type RTreeNode (line 2003) | struct RTreeNode function BaseKeypoint (line 2005) | struct CV_EXPORTS BaseKeypoint function RandomizedTree (line 2020) | class CV_EXPORTS RandomizedTree function uchar (line 2096) | inline uchar* getData(IplImage* image) function uchar (line 2111) | inline uchar* RandomizedTree::getPosteriorByIndex2(int index) function uchar (line 2116) | inline const uchar* RandomizedTree::getPosteriorByIndex2(int index) const function RTreeNode (line 2121) | struct CV_EXPORTS RTreeNode function RTreeClassifier (line 2138) | class CV_EXPORTS RTreeClassifier function CvAffinePose (line 2208) | class CV_EXPORTS CvAffinePose function OneWayDescriptor (line 2217) | class CV_EXPORTS OneWayDescriptor function OneWayDescriptorBase (line 2369) | class CV_EXPORTS OneWayDescriptorBase function OneWayDescriptorObject (line 2557) | class CV_EXPORTS OneWayDescriptorObject : public OneWayDescriptorBase class OneWayDescriptorMatcher (line 2618) | class OneWayDescriptorMatcher function GenericDescriptorMatcher (line 2621) | class CV_EXPORTS OneWayDescriptorMatcher : public GenericDescriptorMat... class FernDescriptorMatcher (line 2691) | class FernDescriptorMatcher function GenericDescriptorMatcher (line 2694) | class CV_EXPORTS FernDescriptorMatcher : public GenericDescriptorMatcher function CalonderDescriptorExtractor (line 2759) | class CV_EXPORTS CalonderDescriptorExtractor : public DescriptorExtractor function BruteForceMatcher (line 2824) | class CV_EXPORTS BruteForceMatcher : public BFMatcher function PlanarObjectDetector (line 2836) | class CV_EXPORTS PlanarObjectDetector type lsh_hash (line 2888) | struct lsh_hash { type CvLSHOperations (line 2892) | struct CvLSHOperations function CV_INLINE (line 2937) | CV_INLINE CvSubdiv2D* cvCreateSubdivDelaunay2D( CvRect rect, CvMemStora... function CV_INLINE (line 2972) | CV_INLINE CvSubdiv2DEdge cvSubdiv2DNextEdge( CvSubdiv2DEdge edge ) function CV_INLINE (line 2978) | CV_INLINE CvSubdiv2DEdge cvSubdiv2DRotateEdge( CvSubdiv2DEdge edge, in... function CV_INLINE (line 2983) | CV_INLINE CvSubdiv2DEdge cvSubdiv2DSymEdge( CvSubdiv2DEdge edge ) function CV_INLINE (line 2988) | CV_INLINE CvSubdiv2DEdge cvSubdiv2DGetEdge( CvSubdiv2DEdge edge, CvNex... function CV_INLINE (line 2996) | CV_INLINE CvSubdiv2DPoint* cvSubdiv2DEdgeOrg( CvSubdiv2DEdge edge ) function CV_INLINE (line 3003) | CV_INLINE CvSubdiv2DPoint* cvSubdiv2DEdgeDst( CvSubdiv2DEdge edge ) function CV_INLINE (line 3021) | CV_INLINE double icvSqDist2D32f( CvPoint2D32f pt1, CvPoint2D32f pt2 ) function CV_INLINE (line 3032) | CV_INLINE double cvTriangleArea( CvPoint2D32f a, CvPoint2D32f b, CvPoi... type CvFeatureTree (line 3039) | struct CvFeatureTree type CvFeatureTree (line 3042) | struct CvFeatureTree type CvFeatureTree (line 3048) | struct CvFeatureTree type CvFeatureTree (line 3052) | struct CvFeatureTree type CvFeatureTree (line 3057) | struct CvFeatureTree type CvLSH (line 3064) | struct CvLSH type CvLSHOperations (line 3064) | struct CvLSHOperations type CvLSH (line 3070) | struct CvLSH type CvLSH (line 3075) | struct CvLSH type CvLSH (line 3078) | struct CvLSH type CvLSH (line 3081) | struct CvLSH type CvLSH (line 3084) | struct CvLSH type CvLSH (line 3088) | struct CvLSH type CvStereoGCState (line 3094) | struct CvStereoGCState type CvBGStatModel (line 3176) | struct CvBGStatModel type CvBGStatModel (line 3178) | struct CvBGStatModel type CvBGStatModel (line 3179) | struct CvBGStatModel type CvBGStatModel (line 3193) | struct CvBGStatModel type CvFGDStatModelParams (line 3264) | struct CvFGDStatModelParams type CvBGPixelCStatTable (line 3289) | struct CvBGPixelCStatTable type CvBGPixelCCStatTable (line 3295) | struct CvBGPixelCCStatTable type CvBGPixelStat (line 3301) | struct CvBGPixelStat type CvFGDStatModel (line 3312) | struct CvFGDStatModel type CvGaussBGStatModelParams (line 3351) | struct CvGaussBGStatModelParams type CvGaussBGValues (line 3359) | struct CvGaussBGValues type CvGaussBGPoint (line 3367) | struct CvGaussBGPoint type CvGaussBGModel (line 3373) | struct CvGaussBGModel type CvBGCodeBookElem (line 3388) | struct CvBGCodeBookElem type CvBGCodeBookElem (line 3390) | struct CvBGCodeBookElem type CvBGCodeBookModel (line 3399) | struct CvBGCodeBookModel FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/ml/ml.hpp type CvVectors (line 72) | struct CvVectors type CvParamLattice (line 89) | struct CvParamLattice function CV_INLINE (line 97) | CV_INLINE CvParamLattice cvParamLattice( double min_val, double max_val, function CV_INLINE (line 107) | CV_INLINE CvParamLattice cvDefaultParamLattice( void ) function CvStatModel (line 134) | class CV_EXPORTS_W CvStatModel class CvMLData (line 161) | class CvMLData function CvParamGrid (line 163) | struct CV_EXPORTS_W_MAP CvParamGrid class CV_EXPORTS_W (line 189) | class CV_EXPORTS_W function find_neighbors_direct (line 193) | virtual ~CvNormalBayesClassifier(); type CvSVMKernelRow (line 341) | struct CvSVMKernelRow type CvSVMSolutionInfo (line 349) | struct CvSVMSolutionInfo function CvSVMSolver (line 358) | class CV_EXPORTS CvSVMSolver type CvSVMDecisionFunc (line 442) | struct CvSVMDecisionFunc function CvStatModel (line 452) | class CV_EXPORTS_W CvSVM : public CvStatModel type cv (line 560) | namespace cv function Algorithm (line 562) | class CV_EXPORTS_W EM : public Algorithm type DTreeBestSplitFinder (line 851) | struct DTreeBestSplitFinder type ForestTreeBestSplitFinder (line 852) | struct ForestTreeBestSplitFinder type CvPair16u32s (line 654) | struct CvPair16u32s type CvDTreeSplit (line 664) | struct CvDTreeSplit type CvDTreeNode (line 683) | struct CvDTreeNode method get_num_valid (line 712) | int get_num_valid(int vi) { return num_valid ? num_valid[vi] : sample_... method set_num_valid (line 713) | void set_num_valid(int vi, int n) { if( num_valid ) num_valid[vi] = n; } function CvDTreeParams (line 717) | struct CV_EXPORTS_W_MAP CvDTreeParams function CvDTreeTrainData (line 738) | struct CV_EXPORTS CvDTreeTrainData class CvDTree (line 846) | class CvDTree class CvForestTree (line 847) | class CvForestTree type cv (line 849) | namespace cv function Algorithm (line 562) | class CV_EXPORTS_W EM : public Algorithm type DTreeBestSplitFinder (line 851) | struct DTreeBestSplitFinder type ForestTreeBestSplitFinder (line 852) | struct ForestTreeBestSplitFinder function CvStatModel (line 855) | class CV_EXPORTS_W CvDTree : public CvStatModel class CvRTrees (line 953) | class CvRTrees function CvForestTree (line 955) | class CV_EXPORTS CvForestTree: public CvDTree function CvDTreeParams (line 987) | struct CV_EXPORTS_W_MAP CvRTParams : public CvDTreeParams function CvStatModel (line 1003) | class CV_EXPORTS_W CvRTrees : public CvStatModel function CvERTreeTrainData (line 1067) | struct CV_EXPORTS CvERTreeTrainData : public CvDTreeTrainData function CvForestERTree (line 1087) | class CV_EXPORTS CvForestERTree : public CvForestTree function CvERTrees (line 1102) | class CV_EXPORTS_W CvERTrees : public CvRTrees function CvBoostParams (line 1128) | struct CV_EXPORTS_W_MAP CvBoostParams : public CvDTreeParams class CvBoost (line 1141) | class CvBoost function CvBoostTree (line 1143) | class CV_EXPORTS CvBoostTree: public CvDTree class CV_EXPORTS_W (line 1190) | class CV_EXPORTS_W function CvStatModel (line 1887) | class CV_EXPORTS_W CvANN_MLP : public CvStatModel function CvTrainTestSplit (line 2012) | struct CV_EXPORTS CvTrainTestSplit function CvMLData (line 2028) | class CV_EXPORTS CvMLData type cv (line 2110) | namespace cv function Algorithm (line 562) | class CV_EXPORTS_W EM : public Algorithm type DTreeBestSplitFinder (line 851) | struct DTreeBestSplitFinder type ForestTreeBestSplitFinder (line 852) | struct ForestTreeBestSplitFinder FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/nonfree/features2d.hpp function Feature2D (line 58) | class CV_EXPORTS_W SIFT : public Feature2D function Feature2D (line 107) | class CV_EXPORTS_W SURF : public Feature2D FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/nonfree/gpu.hpp type cv (line 48) | namespace cv { namespace gpu { type gpu (line 48) | namespace gpu { function SURF_GPU (line 50) | class CV_EXPORTS SURF_GPU FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/nonfree/nonfree.hpp type cv (line 48) | namespace cv FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/nonfree/ocl.hpp type cv (line 49) | namespace cv type ocl (line 51) | namespace ocl class CV_EXPORTS (line 56) | class CV_EXPORTS type KeypointLayout (line 59) | enum KeypointLayout FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/objdetect/objdetect.hpp type CvHaarFeature (line 68) | struct CvHaarFeature type CvHaarClassifier (line 78) | struct CvHaarClassifier type CvHaarStageClassifier (line 88) | struct CvHaarStageClassifier type CvHidHaarClassifierCascade (line 99) | struct CvHidHaarClassifierCascade type CvHaarClassifierCascade (line 101) | struct CvHaarClassifierCascade type CvAvgComp (line 112) | struct CvAvgComp type CvLSVMFilterPosition (line 163) | struct CvLSVMFilterPosition type CvLSVMFilterObject (line 184) | struct CvLSVMFilterObject{ type CvLatentSvmDetector (line 201) | struct CvLatentSvmDetector type CvObjectDetection (line 216) | struct CvObjectDetection type cv (line 286) | namespace cv function LatentSvmDetector (line 297) | class CV_EXPORTS LatentSvmDetector type linemod (line 661) | namespace linemod { function Feature (line 678) | struct CV_EXPORTS Feature function Template (line 693) | struct CV_EXPORTS Template class QuantizedPyramid (line 707) | class QuantizedPyramid type Candidate (line 737) | struct Candidate function Modality (line 771) | class CV_EXPORTS Modality function ColorGradient (line 818) | class CV_EXPORTS ColorGradient : public Modality function DepthNormal (line 853) | class CV_EXPORTS DepthNormal : public Modality function Match (line 897) | struct CV_EXPORTS Match function Detector (line 936) | class CV_EXPORTS Detector function SimilarRects (line 332) | class CV_EXPORTS SimilarRects function FeatureEvaluator (line 356) | class CV_EXPORTS FeatureEvaluator function CascadeClassifier (line 385) | class CV_EXPORTS_W CascadeClassifier type DetectionROI (line 512) | struct DetectionROI function HOGDescriptor (line 522) | struct CV_EXPORTS_W HOGDescriptor function CvDataMatrixCode (line 648) | struct CV_EXPORTS CvDataMatrixCode { type cv (line 660) | namespace cv { function LatentSvmDetector (line 297) | class CV_EXPORTS LatentSvmDetector type linemod (line 661) | namespace linemod { function Feature (line 678) | struct CV_EXPORTS Feature function Template (line 693) | struct CV_EXPORTS Template class QuantizedPyramid (line 707) | class QuantizedPyramid type Candidate (line 737) | struct Candidate function Modality (line 771) | class CV_EXPORTS Modality function ColorGradient (line 818) | class CV_EXPORTS ColorGradient : public Modality function DepthNormal (line 853) | class CV_EXPORTS DepthNormal : public Modality function Match (line 897) | struct CV_EXPORTS Match function Detector (line 936) | class CV_EXPORTS Detector FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/ocl/matrix_operations.hpp type cv (line 49) | namespace cv type ocl (line 52) | namespace ocl function oclMatExpr (line 67) | class CV_EXPORTS oclMatExpr function oclMat (line 237) | inline oclMat &oclMat::operator = (const oclMat &m) function oclMat (line 260) | inline oclMat &oclMat::operator = (const Mat &m) function oclMat (line 267) | inline oclMat& oclMat::operator = (const oclMatExpr& expr) function Mat (line 287) | inline oclMat::operator Mat() const function oclMat (line 296) | inline oclMat oclMat::row(int y) const function oclMat (line 300) | inline oclMat oclMat::col(int x) const function oclMat (line 304) | inline oclMat oclMat::rowRange(int startrow, int endrow) const function oclMat (line 308) | inline oclMat oclMat::rowRange(const Range &r) const function oclMat (line 312) | inline oclMat oclMat::colRange(int startcol, int endcol) const function oclMat (line 316) | inline oclMat oclMat::colRange(const Range &r) const function oclMat (line 321) | inline oclMat oclMat::clone() const function oclMat (line 388) | inline oclMat &oclMat::adjustROI( int dtop, int dbottom, int dleft, ... function oclMat (line 406) | inline oclMat oclMat::operator()( Range rRange, Range cRange ) const function oclMat (line 410) | inline oclMat oclMat::operator()( const Rect &roi ) const function Size (line 451) | inline Size oclMat::size() const function oclMat (line 460) | inline oclMat oclMat::t() const function swap (line 467) | static inline void swap( oclMat &a, oclMat &b ) function ensureSizeIsEnough (line 472) | inline void ensureSizeIsEnough(int rows, int cols, int type, oclMat &m) function ensureSizeIsEnough (line 480) | inline void ensureSizeIsEnough(Size size, int type, oclMat &m) FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/ocl/ocl.hpp type ocl (line 58) | namespace ocl type DeviceType (line 60) | enum DeviceType type DevMemRW (line 70) | enum DevMemRW type DevMemType (line 77) | enum DevMemType type PlatformInfo (line 88) | struct PlatformInfo type DeviceInfo (line 90) | struct DeviceInfo type PlatformInfo (line 124) | struct PlatformInfo type FEATURE_TYPE (line 163) | enum FEATURE_TYPE function Context (line 172) | class CV_EXPORTS Context type BINARY_CACHE_MODE (line 202) | enum BINARY_CACHE_MODE type ProgramSource (line 220) | struct ProgramSource method ProgramSource (line 227) | inline ProgramSource(const char* _name, const char* _programStr) method ProgramSource (line 233) | inline ProgramSource(const char* _name, const char* _programStr, con... class CV_EXPORTS (line 247) | class CV_EXPORTS function oclMat (line 249) | class CV_EXPORTS oclMat function BaseRowFilter_GPU (line 641) | class CV_EXPORTS BaseRowFilter_GPU function BaseColumnFilter_GPU (line 656) | class CV_EXPORTS BaseColumnFilter_GPU function BaseFilter_GPU (line 670) | class CV_EXPORTS BaseFilter_GPU function FilterEngine_GPU (line 688) | class CV_EXPORTS FilterEngine_GPU function blur (line 761) | static inline void blur(const oclMat &src, oclMat &dst, Size ksize, Po... class CV_EXPORTS_W (line 891) | class CV_EXPORTS_W class CV_EXPORTS (line 904) | class CV_EXPORTS function MatchTemplateBuf (line 959) | struct CV_EXPORTS MatchTemplateBuf type CV_EXPORTS (line 979) | struct CV_EXPORTS function CannyBuf (line 987) | struct CV_EXPORTS CannyBuf function HOGDescriptor (line 1032) | struct CV_EXPORTS HOGDescriptor function Accumulator (line 1106) | struct CV_EXPORTS Accumulator type Accumulator (line 1110) | struct Accumulator type Accumulator (line 1114) | struct Accumulator type Accumulator (line 1118) | struct Accumulator type Accumulator (line 1122) | struct Accumulator function L1 (line 1131) | struct CV_EXPORTS L1 function L2 (line 1147) | struct CV_EXPORTS L2 function Hamming (line 1163) | struct CV_EXPORTS Hamming function BruteForceMatcher_OCL_base (line 1179) | class CV_EXPORTS BruteForceMatcher_OCL_base class CV_EXPORTS (line 1325) | class CV_EXPORTS class CV_EXPORTS (line 1328) | class CV_EXPORTS class CV_EXPORTS (line 1336) | class CV_EXPORTS class CV_EXPORTS (line 1343) | class CV_EXPORTS function BruteForceMatcher_OCL_base (line 1350) | class CV_EXPORTS BFMatcher_OCL : public BruteForceMatcher_OCL_base function GoodFeaturesToTrackDetector_OCL (line 1356) | class CV_EXPORTS GoodFeaturesToTrackDetector_OCL function PyrLKOpticalFlow (line 1404) | class CV_EXPORTS PyrLKOpticalFlow function FarnebackOpticalFlow (line 1457) | class CV_EXPORTS FarnebackOpticalFlow function StereoBM_OCL (line 1551) | class CV_EXPORTS StereoBM_OCL function StereoBeliefPropagation (line 1585) | class CV_EXPORTS StereoBeliefPropagation class CV_EXPORTS (line 1788) | class CV_EXPORTS class CV_EXPORTS (line 1831) | class CV_EXPORTS function KalmanFilter (line 1918) | class CV_EXPORTS KalmanFilter function KNearestNeighbour (line 1949) | class CV_EXPORTS KNearestNeighbour: public CvKNearest function CvSVM_OCL (line 1967) | class CV_EXPORTS CvSVM_OCL : public CvSVM FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/photo/photo.hpp type cv (line 56) | namespace cv FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/detail/autocalib.hpp type cv (line 49) | namespace cv { type detail (line 50) | namespace detail { FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/detail/blenders.hpp type cv (line 48) | namespace cv { type detail (line 49) | namespace detail { function Blender (line 53) | class CV_EXPORTS Blender function FeatherBlender (line 72) | class CV_EXPORTS FeatherBlender : public Blender function MultiBandBlender (line 98) | class CV_EXPORTS MultiBandBlender : public Blender FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/detail/camera.hpp type cv (line 48) | namespace cv { type detail (line 49) | namespace detail { function CameraParams (line 51) | struct CV_EXPORTS CameraParams FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/detail/exposure_compensate.hpp type cv (line 48) | namespace cv { type detail (line 49) | namespace detail { function ExposureCompensator (line 51) | class CV_EXPORTS ExposureCompensator function NoExposureCompensator (line 67) | class CV_EXPORTS NoExposureCompensator : public ExposureCompensator function ExposureCompensator (line 76) | class CV_EXPORTS GainCompensator : public ExposureCompensator function BlocksGainCompensator (line 89) | class CV_EXPORTS BlocksGainCompensator : public ExposureCompensator FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/detail/matchers.hpp type cv (line 56) | namespace cv { type detail (line 57) | namespace detail { function ImageFeatures (line 59) | struct CV_EXPORTS ImageFeatures function FeaturesFinder (line 68) | class CV_EXPORTS FeaturesFinder function SurfFeaturesFinder (line 81) | class CV_EXPORTS SurfFeaturesFinder : public FeaturesFinder function OrbFeaturesFinder (line 95) | class CV_EXPORTS OrbFeaturesFinder : public FeaturesFinder function SurfFeaturesFinderGpu (line 109) | class CV_EXPORTS SurfFeaturesFinderGpu : public FeaturesFinder function MatchesInfo (line 133) | struct CV_EXPORTS MatchesInfo function FeaturesMatcher (line 148) | class CV_EXPORTS FeaturesMatcher function BestOf2NearestMatcher (line 173) | class CV_EXPORTS BestOf2NearestMatcher : public FeaturesMatcher FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/detail/motion_estimators.hpp type cv (line 51) | namespace cv { type detail (line 52) | namespace detail { function Estimator (line 54) | class CV_EXPORTS Estimator function HomographyBasedEstimator (line 69) | class CV_EXPORTS HomographyBasedEstimator : public Estimator function BundleAdjusterBase (line 83) | class CV_EXPORTS BundleAdjusterBase : public Estimator function setRefinementMask (line 87) | void setRefinementMask(const Mat &mask) function confThresh (line 93) | double confThresh() const { return conf_thresh_; } function setConfThresh (line 94) | void setConfThresh(double conf_thresh) { conf_thresh_ = conf_thresh; } function CvTermCriteria (line 96) | CvTermCriteria termCriteria() { return term_criteria_; } function setTermCriteria (line 97) | void setTermCriteria(const CvTermCriteria& term_criteria) { term_cri... function BundleAdjusterReproj (line 148) | class CV_EXPORTS BundleAdjusterReproj : public BundleAdjusterBase function BundleAdjusterBase (line 165) | class CV_EXPORTS BundleAdjusterRay : public BundleAdjusterBase type WaveCorrectKind (line 180) | enum WaveCorrectKind FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/detail/seam_finders.hpp type cv (line 50) | namespace cv { type detail (line 51) | namespace detail { function SeamFinder (line 53) | class CV_EXPORTS SeamFinder function NoSeamFinder (line 62) | class CV_EXPORTS NoSeamFinder : public SeamFinder class CV_EXPORTS (line 230) | class CV_EXPORTS FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/detail/util.hpp type cv (line 96) | namespace cv { type detail (line 97) | namespace detail { function DisjointSets (line 99) | class CV_EXPORTS DisjointSets function GraphEdge (line 116) | struct CV_EXPORTS GraphEdge function Graph (line 129) | class CV_EXPORTS Graph FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/detail/util_inl.hpp type cv (line 50) | namespace cv { type detail (line 51) | namespace detail { function B (line 54) | B Graph::forEach(B body) const function B (line 67) | B Graph::walkBreadthFirst(int from, B body) const function normL2 (line 99) | static inline function normL2 (line 106) | static inline function normL2sq (line 113) | static inline function sqr (line 120) | static inline int sqr(int x) { return x * x; } function sqr (line 121) | static inline float sqr(float x) { return x * x; } function sqr (line 122) | static inline double sqr(double x) { return x * x; } FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/detail/warpers.hpp type cv (line 50) | namespace cv { type detail (line 51) | namespace detail { function RotationWarper (line 53) | class CV_EXPORTS RotationWarper function ProjectorBase (line 75) | struct CV_EXPORTS ProjectorBase function RotationWarperBase (line 91) | class CV_EXPORTS RotationWarperBase : public RotationWarper function PlaneProjector (line 122) | struct CV_EXPORTS PlaneProjector : ProjectorBase class CV_EXPORTS (line 129) | class CV_EXPORTS function setScale (line 134) | void setScale(float scale) { projector_.scale = scale; } function SphericalProjector (line 150) | struct CV_EXPORTS SphericalProjector : ProjectorBase class CV_EXPORTS (line 159) | class CV_EXPORTS function CylindricalProjector (line 169) | struct CV_EXPORTS CylindricalProjector : ProjectorBase class CV_EXPORTS (line 177) | class CV_EXPORTS function FisheyeProjector (line 190) | struct CV_EXPORTS FisheyeProjector : ProjectorBase class CV_EXPORTS (line 197) | class CV_EXPORTS function StereographicProjector (line 204) | struct CV_EXPORTS StereographicProjector : ProjectorBase class CV_EXPORTS (line 211) | class CV_EXPORTS function CompressedRectilinearProjector (line 218) | struct CV_EXPORTS CompressedRectilinearProjector : ProjectorBase class CV_EXPORTS (line 227) | class CV_EXPORTS function CompressedRectilinearPortraitProjector (line 239) | struct CV_EXPORTS CompressedRectilinearPortraitProjector : ProjectorBase class CV_EXPORTS (line 248) | class CV_EXPORTS function PaniniProjector (line 260) | struct CV_EXPORTS PaniniProjector : ProjectorBase class CV_EXPORTS (line 269) | class CV_EXPORTS function PaniniPortraitProjector (line 281) | struct CV_EXPORTS PaniniPortraitProjector : ProjectorBase class CV_EXPORTS (line 290) | class CV_EXPORTS function MercatorProjector (line 303) | struct CV_EXPORTS MercatorProjector : ProjectorBase class CV_EXPORTS (line 310) | class CV_EXPORTS function TransverseMercatorProjector (line 317) | struct CV_EXPORTS TransverseMercatorProjector : ProjectorBase class CV_EXPORTS (line 324) | class CV_EXPORTS function PlaneWarperGpu (line 331) | class CV_EXPORTS PlaneWarperGpu : public PlaneWarper function SphericalWarperGpu (line 385) | class CV_EXPORTS SphericalWarperGpu : public SphericalWarper function CylindricalWarperGpu (line 417) | class CV_EXPORTS CylindricalWarperGpu : public CylindricalWarper type SphericalPortraitProjector (line 449) | struct SphericalPortraitProjector : ProjectorBase class CV_EXPORTS (line 458) | class CV_EXPORTS type CylindricalPortraitProjector (line 467) | struct CylindricalPortraitProjector : ProjectorBase class CV_EXPORTS (line 474) | class CV_EXPORTS type PlanePortraitProjector (line 486) | struct PlanePortraitProjector : ProjectorBase class CV_EXPORTS (line 493) | class CV_EXPORTS FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/detail/warpers_inl.hpp type cv (line 49) | namespace cv { type detail (line 50) | namespace detail { function Point2f (line 53) | Point2f RotationWarperBase

::warpPoint(const Point2f &pt, const Ma... function Rect (line 63) | Rect RotationWarperBase

::buildMaps(Size src_size, const Mat &K, c... function Point (line 89) | Point RotationWarperBase

::warp(const Mat &src, const Mat &K, cons... function Rect (line 132) | Rect RotationWarperBase

::warpRoi(Size src_size, const Mat &K, con... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/stitcher.hpp type cv (line 56) | namespace cv { function Stitcher (line 58) | class CV_EXPORTS Stitcher FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/stitching/warpers.hpp type cv (line 48) | namespace cv { class WarperCreator (line 50) | class WarperCreator class PlaneWarper (line 58) | class PlaneWarper : public WarperCreator method create (line 61) | Ptr create(float scale) const { return new d... class CylindricalWarper (line 65) | class CylindricalWarper: public WarperCreator method create (line 68) | Ptr create(float scale) const { return new d... class SphericalWarper (line 72) | class SphericalWarper: public WarperCreator method create (line 75) | Ptr create(float scale) const { return new d... class FisheyeWarper (line 78) | class FisheyeWarper : public WarperCreator method create (line 81) | Ptr create(float scale) const { return new d... class StereographicWarper (line 84) | class StereographicWarper: public WarperCreator method create (line 87) | Ptr create(float scale) const { return new d... class CompressedRectilinearWarper (line 90) | class CompressedRectilinearWarper: public WarperCreator method CompressedRectilinearWarper (line 94) | CompressedRectilinearWarper(float A = 1, float B = 1) method create (line 98) | Ptr create(float scale) const { return new d... class CompressedRectilinearPortraitWarper (line 101) | class CompressedRectilinearPortraitWarper: public WarperCreator method CompressedRectilinearPortraitWarper (line 105) | CompressedRectilinearPortraitWarper(float A = 1, float B = 1) method create (line 109) | Ptr create(float scale) const { return new d... class PaniniWarper (line 112) | class PaniniWarper: public WarperCreator method PaniniWarper (line 116) | PaniniWarper(float A = 1, float B = 1) method create (line 120) | Ptr create(float scale) const { return new d... class PaniniPortraitWarper (line 123) | class PaniniPortraitWarper: public WarperCreator method PaniniPortraitWarper (line 127) | PaniniPortraitWarper(float A = 1, float B = 1) method create (line 131) | Ptr create(float scale) const { return new d... class MercatorWarper (line 134) | class MercatorWarper: public WarperCreator method create (line 137) | Ptr create(float scale) const { return new d... class TransverseMercatorWarper (line 140) | class TransverseMercatorWarper: public WarperCreator method create (line 143) | Ptr create(float scale) const { return new d... class PlaneWarperGpu (line 148) | class PlaneWarperGpu: public WarperCreator method create (line 151) | Ptr create(float scale) const { return new d... class CylindricalWarperGpu (line 155) | class CylindricalWarperGpu: public WarperCreator method create (line 158) | Ptr create(float scale) const { return new d... class SphericalWarperGpu (line 162) | class SphericalWarperGpu: public WarperCreator method create (line 165) | Ptr create(float scale) const { return new d... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/superres/optical_flow.hpp type cv (line 48) | namespace cv type superres (line 50) | namespace superres class CV_EXPORTS (line 52) | class CV_EXPORTS FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/superres/superres.hpp type cv (line 48) | namespace cv type superres (line 50) | namespace superres function FrameSource (line 54) | class CV_EXPORTS FrameSource class CV_EXPORTS (line 70) | class CV_EXPORTS FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/ts/gpu_perf.hpp type perf (line 51) | namespace perf type CvtColorInfo (line 99) | struct CvtColorInfo method CvtColorInfo (line 105) | CvtColorInfo() {} method CvtColorInfo (line 106) | explicit CvtColorInfo(int scn_, int dcn_, int code_) : scn(scn_), dc... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/ts/gpu_test.hpp type cvtest (line 53) | namespace cvtest function DeviceManager (line 85) | class CV_EXPORTS DeviceManager class UseRoi (line 268) | class UseRoi method UseRoi (line 271) | inline UseRoi(bool val = false) : val_(val) {} class Inverse (line 285) | class Inverse method Inverse (line 288) | inline Inverse(bool val = false) : val_(val) {} type cv (line 355) | namespace cv { namespace gpu type gpu (line 355) | namespace gpu FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/ts/ts.hpp type cvtest (line 77) | namespace cvtest class CV_EXPORTS (line 89) | class CV_EXPORTS function randInt (line 95) | inline unsigned randInt( RNG& rng ) function randReal (line 100) | inline double randReal( RNG& rng ) function clipInt (line 111) | inline int clipInt( int val, int min_val, int max_val ) function MatInfo (line 200) | struct CV_EXPORTS MatInfo function MatComparator (line 208) | struct CV_EXPORTS MatComparator class BaseTest (line 224) | class BaseTest class TS (line 225) | class TS function BaseTest (line 227) | class CV_EXPORTS BaseTest type TestInfo (line 286) | struct TestInfo function TSParams (line 311) | struct CV_EXPORTS TSParams function TS (line 326) | class CV_EXPORTS TS function ArrayTest (line 470) | class CV_EXPORTS ArrayTest : public BaseTest function BadArgTest (line 507) | class CV_EXPORTS BadArgTest : public BaseTest function DefaultRngAuto (line 575) | struct CV_EXPORTS DefaultRngAuto type cvtest (line 587) | namespace cvtest class CV_EXPORTS (line 89) | class CV_EXPORTS function randInt (line 95) | inline unsigned randInt( RNG& rng ) function randReal (line 100) | inline double randReal( RNG& rng ) function clipInt (line 111) | inline int clipInt( int val, int min_val, int max_val ) function MatInfo (line 200) | struct CV_EXPORTS MatInfo function MatComparator (line 208) | struct CV_EXPORTS MatComparator class BaseTest (line 224) | class BaseTest class TS (line 225) | class TS function BaseTest (line 227) | class CV_EXPORTS BaseTest type TestInfo (line 286) | struct TestInfo function TSParams (line 311) | struct CV_EXPORTS TSParams function TS (line 326) | class CV_EXPORTS TS function ArrayTest (line 470) | class CV_EXPORTS ArrayTest : public BaseTest function BadArgTest (line 507) | class CV_EXPORTS BadArgTest : public BaseTest function DefaultRngAuto (line 575) | struct CV_EXPORTS DefaultRngAuto FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/ts/ts_gtest.h function namespace (line 792) | namespace std { function GTEST_1_TUPLE_ (line 893) | GTEST_1_TUPLE_(T) { function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 913) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 954) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 989) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 1028) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 1070) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 1115) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 1162) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 1212) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 1264) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function GTEST_DECLARE_TUPLE_AS_FRIEND_ (line 1320) | GTEST_DECLARE_TUPLE_AS_FRIEND_ function make_tuple (line 1363) | GTEST_2_TUPLE_(T) make_tuple(const T0& f0, const T1& f1) { function make_tuple (line 1368) | GTEST_3_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2) { function make_tuple (line 1373) | GTEST_4_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, function make_tuple (line 1379) | GTEST_5_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, function make_tuple (line 1385) | GTEST_6_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, function make_tuple (line 1391) | GTEST_7_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, function make_tuple (line 1397) | GTEST_8_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, function make_tuple (line 1403) | GTEST_9_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, function make_tuple (line 1410) | GTEST_10_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, type typename (line 1477) | typedef typename gtest_internal::TupleElement< function namespace (line 1485) | namespace gtest_internal { function namespace (line 1625) | namespace gtest_internal { function namespace (line 1707) | namespace std { function namespace (line 1943) | namespace testing { function LogToStderr (line 2201) | inline void LogToStderr() {} function FlushInfoLog (line 2202) | inline void FlushInfoLog() { fflush(NULL); } function To (line 2256) | To ImplicitCast_(To x) { return x; } function To (line 2280) | To DownCast_(From* f) { // so we only accept pointers function SleepMilliseconds (line 2346) | inline void SleepMilliseconds(int n) { function class (line 2360) | class Notification { function class (line 2402) | class ThreadWithParamBase { function Join (line 2450) | void Join() { function virtual (line 2457) | virtual void Run() { function class (line 2494) | class MutexBase { function class (line 2552) | class Mutex : public MutexBase { function class (line 2569) | class GTestMutexLock { type GTestMutexLock (line 2582) | typedef GTestMutexLock MutexLock; function class (line 2590) | class ThreadLocalValueHolderBase { function DeleteThreadLocalValue (line 2597) | inline void DeleteThreadLocalValue(void* value_holder) { function explicit (line 2635) | explicit ThreadLocal(const T& value) : key_(CreateKey()), function T (line 2647) | T* pointer() { return GetOrCreateValue(); } function T (line 2648) | const T* pointer() const { return GetOrCreateValue(); } function set (line 2650) | void set(const T& value) { *pointer() = value; } function T (line 2658) | T* pointer() { return &value_; } function pthread_key_t (line 2665) | static pthread_key_t CreateKey() { function T (line 2674) | T* GetOrCreateValue() const { function class (line 2703) | class Mutex { function class (line 2716) | class GTestMutexLock { type GTestMutexLock (line 2721) | typedef GTestMutexLock MutexLock; function explicit (line 2727) | explicit ThreadLocal(const T& value) : value_(value) {} function T (line 2728) | T* pointer() { return &value_; } function T (line 2729) | const T* pointer() const { return &value_; } function set (line 2731) | void set(const T& value) { value_ = value; } type bool_constant (line 2770) | typedef bool_constant type; type bool_constant (line 2775) | typedef bool_constant false_type; type bool_constant (line 2776) | typedef bool_constant true_type; type typename (line 2786) | typedef typename Iterator::value_type value_type; type T (line 2791) | typedef T value_type; type T (line 2796) | typedef T value_type; type __int64 (line 2803) | typedef __int64 BiggestInt; type BiggestInt (line 2807) | typedef long long BiggestInt; function IsAlpha (line 2817) | inline bool IsAlpha(char ch) { function IsAlNum (line 2820) | inline bool IsAlNum(char ch) { function IsDigit (line 2823) | inline bool IsDigit(char ch) { function IsLower (line 2826) | inline bool IsLower(char ch) { function IsSpace (line 2829) | inline bool IsSpace(char ch) { function IsUpper (line 2832) | inline bool IsUpper(char ch) { function IsXDigit (line 2835) | inline bool IsXDigit(char ch) { function IsXDigit (line 2838) | inline bool IsXDigit(wchar_t ch) { function ToLower (line 2843) | inline char ToLower(char ch) { function ToUpper (line 2846) | inline char ToUpper(char ch) { function namespace (line 2856) | namespace posix { type UInt (line 3041) | typedef unsigned int UInt; type __int64 (line 3049) | typedef __int64 Int; type UInt (line 3050) | typedef unsigned __int64 UInt; type Int (line 3052) | typedef long long Int; type UInt (line 3053) | typedef unsigned long long UInt; type TypeWithSize (line 3058) | typedef TypeWithSize<4>::Int Int32; type TypeWithSize (line 3059) | typedef TypeWithSize<4>::UInt UInt32; type TypeWithSize (line 3060) | typedef TypeWithSize<8>::Int Int64; type TypeWithSize (line 3061) | typedef TypeWithSize<8>::UInt UInt64; type TypeWithSize (line 3062) | typedef TypeWithSize<8>::Int TimeInMillis; function namespace (line 3180) | namespace testing { function StreamHelper (line 3329) | void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) { function StreamHelper (line 3337) | void StreamHelper(internal::false_type /*is_pointer*/, function namespace (line 3359) | namespace internal { function namespace (line 3426) | namespace testing { function namespace (line 3583) | namespace testing { function namespace (line 3800) | namespace testing { type internal (line 4497) | typedef internal::Types50 type; type internal (line 4549) | typedef internal::Types2 type; type internal (line 4564) | typedef internal::Types3 type; type internal (line 4579) | typedef internal::Types4 type; type internal (line 4594) | typedef internal::Types5 type; type internal (line 4610) | typedef internal::Types6 type; type internal (line 4626) | typedef internal::Types7 type; type internal (line 4641) | typedef internal::Types8 type; type internal (line 4656) | typedef internal::Types9 type; function namespace (line 5363) | namespace internal { type Templates4 (line 5433) | typedef Templates4 Tail; type Templates5 (line 5440) | typedef Templates5 Tail; type Templates6 (line 5448) | typedef Templates6 Tail; type Templates7 (line 5456) | typedef Templates7 Tail; type Templates8 (line 5464) | typedef Templates8 Tail; type Templates9 (line 5473) | typedef Templates9 Tail; type Templates10 (line 5482) | typedef Templates10 Tail; type Templates11 (line 5491) | typedef Templates11 Tail; type Templates12 (line 5501) | typedef Templates12 ... type Templates13 (line 5511) | typedef Templates13 type; function namespace (line 7088) | namespace proto2 { class Message; } function namespace (line 7090) | namespace testing { type IsContainer (line 7880) | typedef int IsContainer; type IsNotContainer (line 7888) | typedef char IsNotContainer; function IsContainerTest (line 7890) | IsContainerTest(long /* dummy */) { return '\0'; } type EnableIf (line 7897) | struct EnableIf type type (line 7897) | typedef void type; function ArrayEq (line 7910) | bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } function ArrayEq (line 7914) | bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) { function CopyArray (line 7950) | void CopyArray(const T& from, U* to) { *to = from; } function CopyArray (line 7954) | void CopyArray(const T(&from)[N], U(*to)[N]) { type RelationToSource (line 7970) | enum RelationToSource { type Element (line 7989) | typedef Element* iterator; type Element (line 7990) | typedef const Element* const_iterator; function namespace (line 8262) | namespace testing { function namespace (line 8539) | namespace testing { function class (line 8952) | class BaseTest : public ::testing::Test { function namespace (line 9097) | namespace testing { function T (line 9193) | T* get() const { return value_; } function depart (line 9215) | void depart() { function capture (line 9219) | void capture(T* ptr) { function namespace (line 9358) | namespace testing { function namespace (line 9465) | namespace testing_internal { function namespace (line 9502) | namespace testing { function PrintTo (line 9710) | inline void PrintTo(const ::string& s, ::std::ostream* os) { function PrintTo (line 9716) | inline void PrintTo(const ::std::string& s, ::std::ostream* os) { function PrintTo (line 9723) | inline void PrintTo(const ::wstring& s, ::std::ostream* os) { function PrintTo (line 9730) | inline void PrintTo(const ::std::wstring& s, ::std::ostream* os) { function PrintTo (line 9749) | inline void PrintTo(const ::std::tr1::tuple<>& t, ::std::ostream* os) { function Print (line 9843) | static void Print(const T& value, ::std::ostream* os) { function Print (line 9914) | static void Print(const T& value, ::std::ostream* os) { function Print (line 9956) | static void Print(const char* str, ::std::ostream* os) { function Print (line 9976) | static void Print(const wchar_t* str, ::std::ostream* os) { function Print (line 9989) | static void Print(wchar_t* str, ::std::ostream* os) { function ostream (line 9995) | ostream* os) { function ostream (line 10004) | ostream* os) { type std (line 10012) | typedef ::std::vector Strings; function PrintPrefixTo (line 10026) | void PrintPrefixTo(const Tuple& t, ::std::ostream* os) { function TersePrintPrefixToStrings (line 10036) | void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) { type TuplePrefixPrinter (line 10046) | struct TuplePrefixPrinter function PrintPrefixTo (line 10048) | void PrintPrefixTo(const Tuple&, ::std::ostream*) {} function TersePrintPrefixToStrings (line 10051) | void TersePrintPrefixToStrings(const Tuple&, Strings*) {} type TuplePrefixPrinter (line 10059) | struct TuplePrefixPrinter function PrintPrefixTo (line 10061) | void PrintPrefixTo(const Tuple& t, ::std::ostream* os) { function TersePrintPrefixToStrings (line 10067) | void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) { function ostream (line 10077) | ostream* os) { function string (line 10099) | string PrintToString(const T& value) { function namespace (line 10111) | namespace testing { function CalculateEndIndex (line 10302) | static int CalculateEndIndex(const T& begin, function virtual (line 10333) | virtual ~ValuesInIteratorRangeGenerator() {} function virtual (line 10335) | virtual ParamIteratorInterface* Begin() const { function virtual (line 10338) | virtual ParamIteratorInterface* End() const { function class (line 10345) | class Iterator : public ParamIteratorInterface { function explicit (line 10416) | explicit ParameterizedTestFactory(ParamType parameter) : function virtual (line 10418) | virtual Test* CreateTest() { function virtual (line 10457) | virtual TestFactoryBase* CreateTestFactory(ParamType parameter) { function class (line 10475) | class ParameterizedTestCaseInfoBase { type ParamGenerator (line 10511) | typedef ParamGenerator(GeneratorCreationFunc)(); function explicit (line 10513) | explicit ParameterizedTestCaseInfo(const char* name) function AddTestPattern (line 10526) | void AddTestPattern(const char* test_case_name, function AddTestCaseInstantiation (line 10535) | int AddTestCaseInstantiation(const string& instantiation_name, function virtual (line 10547) | virtual void RegisterTests() { type TestInfo (line 10585) | struct TestInfo { type std (line 10597) | typedef ::std::vector > TestInfoContainer; type std (line 10600) | typedef ::std::vector > function class (line 10616) | class ParameterizedTestCaseRegistry { function namespace (line 10734) | namespace testing { function virtual (line 13844) | virtual ~CartesianProductGenerator2() {} function virtual (line 13846) | virtual ParamIteratorInterface* Begin() const { function virtual (line 13849) | virtual ParamIteratorInterface* End() const { function virtual (line 13866) | virtual ~Iterator() {} function virtual (line 13868) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 13873) | virtual void Advance() { function virtual (line 13882) | virtual ParamIteratorInterface* Clone() const { function virtual (line 13885) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 13886) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 13915) | void ComputeCurrentValue() { function virtual (line 13959) | virtual ~CartesianProductGenerator3() {} function virtual (line 13961) | virtual ParamIteratorInterface* Begin() const { function virtual (line 13965) | virtual ParamIteratorInterface* End() const { function virtual (line 13985) | virtual ~Iterator() {} function virtual (line 13987) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 13992) | virtual void Advance() { function virtual (line 14005) | virtual ParamIteratorInterface* Clone() const { function virtual (line 14008) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 14009) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 14042) | void ComputeCurrentValue() { function virtual (line 14092) | virtual ~CartesianProductGenerator4() {} function virtual (line 14094) | virtual ParamIteratorInterface* Begin() const { function virtual (line 14098) | virtual ParamIteratorInterface* End() const { function virtual (line 14122) | virtual ~Iterator() {} function virtual (line 14124) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 14129) | virtual void Advance() { function virtual (line 14146) | virtual ParamIteratorInterface* Clone() const { function virtual (line 14149) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 14150) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 14187) | void ComputeCurrentValue() { function virtual (line 14243) | virtual ~CartesianProductGenerator5() {} function virtual (line 14245) | virtual ParamIteratorInterface* Begin() const { function virtual (line 14249) | virtual ParamIteratorInterface* End() const { function virtual (line 14276) | virtual ~Iterator() {} function virtual (line 14278) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 14283) | virtual void Advance() { function virtual (line 14304) | virtual ParamIteratorInterface* Clone() const { function virtual (line 14307) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 14308) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 14349) | void ComputeCurrentValue() { type std (line 14406) | typedef ::std::tr1::tuple ParamType; function virtual (line 14413) | virtual ~CartesianProductGenerator6() {} function virtual (line 14415) | virtual ParamIteratorInterface* Begin() const { function virtual (line 14419) | virtual ParamIteratorInterface* End() const { function virtual (line 14449) | virtual ~Iterator() {} function virtual (line 14451) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 14456) | virtual void Advance() { function virtual (line 14481) | virtual ParamIteratorInterface* Clone() const { function virtual (line 14484) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 14485) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 14530) | void ComputeCurrentValue() { type std (line 14592) | typedef ::std::tr1::tuple ParamType; function virtual (line 14599) | virtual ~CartesianProductGenerator7() {} function virtual (line 14601) | virtual ParamIteratorInterface* Begin() const { function virtual (line 14606) | virtual ParamIteratorInterface* End() const { function virtual (line 14639) | virtual ~Iterator() {} function virtual (line 14641) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 14646) | virtual void Advance() { function virtual (line 14675) | virtual ParamIteratorInterface* Clone() const { function virtual (line 14678) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 14679) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 14728) | void ComputeCurrentValue() { type std (line 14795) | typedef ::std::tr1::tuple ParamType; function virtual (line 14811) | virtual ParamIteratorInterface* End() const { function virtual (line 14848) | virtual ~Iterator() {} function virtual (line 14850) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 14855) | virtual void Advance() { function virtual (line 14888) | virtual ParamIteratorInterface* Clone() const { function virtual (line 14891) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 14892) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 14945) | void ComputeCurrentValue() { type std (line 15017) | typedef ::std::tr1::tuple ParamType; function virtual (line 15033) | virtual ParamIteratorInterface* End() const { function virtual (line 15073) | virtual ~Iterator() {} function virtual (line 15075) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 15080) | virtual void Advance() { function virtual (line 15117) | virtual ParamIteratorInterface* Clone() const { function virtual (line 15120) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 15121) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 15178) | void ComputeCurrentValue() { type std (line 15256) | typedef ::std::tr1::tuple Param... function virtual (line 15273) | virtual ParamIteratorInterface* End() const { function virtual (line 15316) | virtual ~Iterator() {} function virtual (line 15318) | virtual const ParamGeneratorInterface* BaseGenerator() const { function virtual (line 15323) | virtual void Advance() { function virtual (line 15364) | virtual ParamIteratorInterface* Clone() const { function virtual (line 15367) | virtual const ParamType* Current() const { return ¤t_value_; } function virtual (line 15368) | virtual bool Equals(const ParamIteratorInterface& other) const { function ComputeCurrentValue (line 15429) | void ComputeCurrentValue() { function namespace (line 15824) | namespace testing { function internal (line 16847) | inline internal::ParamGenerator Bool() { function namespace (line 17145) | namespace testing { function class (line 17230) | class GTEST_API_ TestPartResultArray { function class (line 17250) | class GTEST_API_ TestPartResultReporterInterface { function namespace (line 17257) | namespace internal { type testing (line 17340) | typedef testing::Types MyTypes; type testing (line 17423) | typedef testing::Types MyTypes; function namespace (line 17557) | namespace testing { function namespace (line 19153) | namespace internal { function class (line 19200) | class GTEST_API_ AssertHelper { function virtual (line 19280) | virtual ~WithParamInterface() {} FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/ts/ts_perf.hpp type cv (line 73) | namespace cv { namespace gpu {} namespace ocl {} } type gpu (line 73) | namespace gpu {} type ocl (line 73) | namespace ocl {} type perf (line 75) | namespace perf class TestBase (line 77) | class TestBase class MatType (line 127) | class MatType method MatType (line 130) | MatType(int val=0) : _type(val) {} type ERROR_TYPE (line 205) | enum ERROR_TYPE function Regression (line 211) | class CV_EXPORTS Regression function GpuPerf (line 256) | class CV_EXPORTS GpuPerf type CV_EXPORTS (line 267) | struct CV_EXPORTS type PERF_STRATEGY (line 300) | enum PERF_STRATEGY class CV_EXPORTS (line 310) | class CV_EXPORTS type PERF_STRATEGY (line 322) | enum PERF_STRATEGY type PERF_STRATEGY (line 323) | enum PERF_STRATEGY type PERF_STRATEGY (line 323) | enum PERF_STRATEGY class PerfSkipTestException (line 325) | class PerfSkipTestException: public cv::Exception {} function _declareHelper (line 383) | class CV_EXPORTS _declareHelper function setVerified (line 414) | void setVerified() { this->verified = true; } class TestBaseWithParam (line 417) | class TestBaseWithParam: public TestBase, public ::testing::WithParamI... type comparators (line 580) | namespace comparators function RectLess_ (line 584) | struct CV_EXPORTS RectLess_ function KeypointGreater (line 597) | struct CV_EXPORTS KeypointGreater type cv (line 429) | namespace cv type gpu (line 73) | namespace gpu {} type ocl (line 73) | namespace ocl {} class test_case_name (line 458) | class test_case_name : public ::perf::TestBase {\ method test_case_name (line 460) | test_case_name() {} function TEST_F (line 464) | TEST_F(test_case_name, test_name){ RunPerfTestBody(); } class fixture (line 496) | class fixture : public ::fixture {\ method fixture (line 498) | fixture() {} function TEST_F (line 502) | TEST_F(fixture, testname){ RunPerfTestBody(); } type perf (line 578) | namespace perf class TestBase (line 77) | class TestBase class MatType (line 127) | class MatType method MatType (line 130) | MatType(int val=0) : _type(val) {} type ERROR_TYPE (line 205) | enum ERROR_TYPE function Regression (line 211) | class CV_EXPORTS Regression function GpuPerf (line 256) | class CV_EXPORTS GpuPerf type CV_EXPORTS (line 267) | struct CV_EXPORTS type PERF_STRATEGY (line 300) | enum PERF_STRATEGY class CV_EXPORTS (line 310) | class CV_EXPORTS type PERF_STRATEGY (line 322) | enum PERF_STRATEGY type PERF_STRATEGY (line 323) | enum PERF_STRATEGY type PERF_STRATEGY (line 323) | enum PERF_STRATEGY class PerfSkipTestException (line 325) | class PerfSkipTestException: public cv::Exception {} function _declareHelper (line 383) | class CV_EXPORTS _declareHelper function setVerified (line 414) | void setVerified() { this->verified = true; } class TestBaseWithParam (line 417) | class TestBaseWithParam: public TestBase, public ::testing::WithParamI... type comparators (line 580) | namespace comparators function RectLess_ (line 584) | struct CV_EXPORTS RectLess_ function KeypointGreater (line 597) | struct CV_EXPORTS KeypointGreater FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/video/background_segm.hpp type cv (line 48) | namespace cv function BackgroundSubtractor (line 57) | class CV_EXPORTS_W BackgroundSubtractor : public Algorithm function BackgroundSubtractorMOG (line 81) | class CV_EXPORTS_W BackgroundSubtractorMOG : public BackgroundSubtractor function BackgroundSubtractorMOG2 (line 118) | class CV_EXPORTS_W BackgroundSubtractorMOG2 : public BackgroundSubtractor class CV_EXPORTS (line 200) | class CV_EXPORTS FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/video/tracking.hpp type CvKalman (line 163) | struct CvKalman type cv (line 228) | namespace cv function KalmanFilter (line 265) | class CV_EXPORTS_W KalmanFilter function DenseOpticalFlow (line 355) | class CV_EXPORTS DenseOpticalFlow : public Algorithm FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/video/video.hpp type cv (line 50) | namespace cv FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/videostab/deblurring.hpp type videostab (line 51) | namespace videostab function DeblurerBase (line 56) | class CV_EXPORTS DeblurerBase function NullDeblurer (line 86) | class CV_EXPORTS NullDeblurer : public DeblurerBase FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/videostab/fast_marching.hpp type cv (line 51) | namespace cv type videostab (line 53) | namespace videostab function FastMarchingMethod (line 57) | class CV_EXPORTS FastMarchingMethod FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/videostab/fast_marching_inl.hpp type cv (line 48) | namespace cv type videostab (line 50) | namespace videostab function Inpaint (line 54) | Inpaint FastMarchingMethod::run(const cv::Mat &mask, Inpaint inpaint) FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/videostab/frame_source.hpp type cv (line 51) | namespace cv type videostab (line 53) | namespace videostab function IFrameSource (line 56) | class CV_EXPORTS IFrameSource function NullFrameSource (line 64) | class CV_EXPORTS NullFrameSource : public IFrameSource function VideoFileSource (line 71) | class CV_EXPORTS VideoFileSource : public IFrameSource FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/videostab/global_motion.hpp type cv (line 51) | namespace cv type videostab (line 53) | namespace videostab type MotionModel (line 56) | enum MotionModel function RansacParams (line 68) | struct CV_EXPORTS RansacParams function IGlobalMotionEstimator (line 89) | class CV_EXPORTS IGlobalMotionEstimator function PyrLkRobustMotionEstimator (line 96) | class CV_EXPORTS PyrLkRobustMotionEstimator : public IGlobalMotionEs... FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/videostab/inpainting.hpp type cv (line 52) | namespace cv type videostab (line 54) | namespace videostab class CV_EXPORTS (line 57) | class CV_EXPORTS function setRadius (line 66) | virtual void setRadius(int val) { radius_ = val; } function radius (line 67) | virtual int radius() const { return radius_; } function setFrames (line 69) | virtual void setFrames(const std::vector &val) { frames_ = &val; } function setMotions (line 72) | virtual void setMotions(const std::vector &val) { motions_ = &v... function setStabilizedFrames (line 75) | virtual void setStabilizedFrames(const std::vector &val) { stab... function setStabilizationMotions (line 78) | virtual void setStabilizationMotions(const std::vector &val) { ... function update (line 81) | virtual void update() {} function NullInpainter (line 93) | class CV_EXPORTS NullInpainter : public InpainterBase function ConsistentMosaicInpainter (line 119) | class CV_EXPORTS ConsistentMosaicInpainter : public InpainterBase function MotionInpainter (line 133) | class CV_EXPORTS MotionInpainter : public InpainterBase function ColorAverageInpainter (line 166) | class CV_EXPORTS ColorAverageInpainter : public InpainterBase function ColorInpainter (line 175) | class CV_EXPORTS ColorInpainter : public InpainterBase FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/videostab/log.hpp type videostab (line 50) | namespace videostab function ILog (line 53) | class CV_EXPORTS ILog function NullLog (line 60) | class CV_EXPORTS NullLog : public ILog FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/videostab/motion_stabilizing.hpp type cv (line 49) | namespace cv type videostab (line 51) | namespace videostab function IMotionStabilizer (line 54) | class CV_EXPORTS IMotionStabilizer function IMotionStabilizer (line 64) | class CV_EXPORTS MotionFilterBase : public IMotionStabilizer function GaussianMotionFilter (line 82) | class CV_EXPORTS GaussianMotionFilter : public MotionFilterBase FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/videostab/optical_flow.hpp type cv (line 53) | namespace cv type videostab (line 55) | namespace videostab function ISparseOptFlowEstimator (line 58) | class CV_EXPORTS ISparseOptFlowEstimator function IDenseOptFlowEstimator (line 67) | class CV_EXPORTS IDenseOptFlowEstimator function PyrLkOptFlowEstimatorBase (line 76) | class CV_EXPORTS PyrLkOptFlowEstimatorBase class CV_EXPORTS (line 92) | class CV_EXPORTS class CV_EXPORTS (line 102) | class CV_EXPORTS FILE: pkg/gocv/cgo/third_path/opencv2/include/opencv2/videostab/stabilizer.hpp type cv (line 56) | namespace cv type videostab (line 58) | namespace videostab function StabilizerBase (line 61) | class CV_EXPORTS StabilizerBase class CV_EXPORTS (line 131) | class CV_EXPORTS function setMotionFilter (line 136) | void setMotionFilter(Ptr val) { motionFilter_ = va... function motionFilter (line 137) | Ptr motionFilter() const { return motionFilter_; } function reset (line 139) | virtual void reset() { resetImpl(); } function Mat (line 140) | virtual Mat nextFrame() { return nextStabilizedFrame(); } class CV_EXPORTS (line 152) | class CV_EXPORTS function setMotionStabilizer (line 157) | void setMotionStabilizer(Ptr val) { motionStabilize... function motionStabilizer (line 158) | Ptr motionStabilizer() const { return motionStabili... function setEstimateTrimRatio (line 160) | void setEstimateTrimRatio(bool val) { mustEstTrimRatio_ = val; } function mustEstimateTrimaRatio (line 161) | bool mustEstimateTrimaRatio() const { return mustEstTrimRatio_; } function reset (line 163) | virtual void reset() { resetImpl(); } function estimateMotion (line 174) | virtual void estimateMotion() { /* do nothing as motion was estimation... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/calib3d.hpp type cv (line 437) | namespace cv type SolvePnPMethod (line 456) | enum SolvePnPMethod { type HandEyeCalibrationMethod (line 530) | enum HandEyeCalibrationMethod type RobotWorldHandEyeCalibrationMethod (line 539) | enum RobotWorldHandEyeCalibrationMethod type SamplingMethod (line 545) | enum SamplingMethod { SAMPLING_UNIFORM, SAMPLING_PROGRESSIVE_NAPSAC, S... type LocalOptimMethod (line 547) | enum LocalOptimMethod {LOCAL_OPTIM_NULL, LOCAL_OPTIM_INNER_LO, LOCAL_O... type ScoreMethod (line 549) | enum ScoreMethod {SCORE_METHOD_RANSAC, SCORE_METHOD_MSAC, SCORE_METHOD... type NeighborSearchMethod (line 550) | enum NeighborSearchMethod { NEIGH_FLANN_KNN, NEIGH_GRID, NEIGH_FLANN_R... function UsacParams (line 552) | struct CV_EXPORTS_W_SIMPLE UsacParams function Algorithm (line 604) | class CV_EXPORTS LMSolver : public Algorithm function CV_EXPORTS_W (line 1554) | CV_EXPORTS_W inline function CirclesGridFinderParameters (line 1630) | struct CV_EXPORTS_W_SIMPLE CirclesGridFinderParameters function StereoMatcher (line 3429) | class CV_EXPORTS_W StereoMatcher : public Algorithm function StereoMatcher (line 3470) | class CV_EXPORTS_W StereoBM : public StereoMatcher function StereoMatcher (line 3535) | class CV_EXPORTS_W StereoSGBM : public StereoMatcher type UndistortTypes (line 3607) | enum UndistortTypes type UndistortTypes (line 3790) | enum UndistortTypes function initWideAngleProjMap (line 3791) | static inline type fisheye (line 3884) | namespace fisheye function CvLevMarq (line 4141) | class CV_EXPORTS CvLevMarq FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/calib3d/calib3d_c.h function class (line 111) | class CV_EXPORTS CvLevMarq FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core.hpp type cv (line 106) | namespace cv { class CV_EXPORTS (line 118) | class CV_EXPORTS type SortFlags (line 157) | enum SortFlags { SORT_EVERY_ROW = 0, //!< each matrix row is sorted... type CovarFlags (line 174) | enum CovarFlags { type KmeansFlags (line 213) | enum KmeansFlags { type ReduceTypes (line 230) | enum ReduceTypes { REDUCE_SUM = 0, //!< the output is the sum of all r... type RotateFlags (line 1072) | enum RotateFlags { function PCA (line 2406) | class CV_EXPORTS PCA function LDA (line 2562) | class CV_EXPORTS LDA function SVD (line 2643) | class CV_EXPORTS SVD function RNG (line 2782) | class CV_EXPORTS RNG function RNG_MT19937 (line 2939) | class CV_EXPORTS RNG_MT19937 function Formatted (line 3023) | class CV_EXPORTS Formatted function Formatter (line 3032) | class CV_EXPORTS Formatter function String (line 3057) | static inline function String (line 3066) | static inline class CV_EXPORTS (line 3074) | class CV_EXPORTS type ParamType (line 3076) | struct ParamType {} function Algorithm (line 3090) | class CV_EXPORTS_W Algorithm type Param (line 3189) | enum struct Param { type ParamType (line 3196) | struct ParamType type ParamType (line 3204) | struct ParamType type ParamType (line 3212) | struct ParamType type ParamType (line 3220) | struct ParamType type ParamType (line 3228) | struct ParamType type ParamType > (line 3236) | struct ParamType > type ParamType (line 3244) | struct ParamType type ParamType (line 3252) | struct ParamType type ParamType (line 3260) | struct ParamType type ParamType (line 3268) | struct ParamType type ParamType (line 3276) | struct ParamType type ParamType (line 3284) | struct ParamType type ParamType<_Tp, typename std::enable_if< std::is_enum<_Tp>::value >::type> (line 3293) | struct ParamType<_Tp, typename std::enable_if< std::is_enum<_Tp>::valu... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/affine.hpp type cv (line 51) | namespace cv class Affine3 (line 126) | class Affine3 class DataType< Affine3<_Tp> > (line 296) | class DataType< Affine3<_Tp> > type traits (line 315) | namespace traits { type Depth< Affine3<_Tp> > (line 317) | struct Depth< Affine3<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Affine3<_Tp> > (line 319) | struct Type< Affine3<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... function V (line 606) | inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/async.hpp type cv (line 15) | namespace cv { function AsyncArray (line 31) | class CV_EXPORTS_W AsyncArray FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/base.hpp type cv (line 60) | namespace cv type Error (line 66) | namespace Error { type Code (line 68) | enum Code { type DecompTypes (line 133) | enum DecompTypes { type NormTypes (line 159) | enum NormTypes { type CmpTypes (line 211) | enum CmpTypes { CMP_EQ = 0, //!< src1 is equal to src2. type GemmFlags (line 220) | enum GemmFlags { GEMM_1_T = 1, //!< transposes src1 type DftFlags (line 225) | enum DftFlags { type BorderTypes (line 268) | enum BorderTypes { function Hamming (line 382) | struct CV_EXPORTS Hamming function _Tp (line 397) | inline _Tp cv_abs(_Tp x) { return std::abs(x); } function cv_abs (line 398) | inline int cv_abs(uchar x) { return x; } function cv_abs (line 399) | inline int cv_abs(schar x) { return std::abs(x); } function cv_abs (line 400) | inline int cv_abs(ushort x) { return x; } function cv_abs (line 401) | inline int cv_abs(short x) { return std::abs(x); } function _AccTp (line 403) | static inline function _AccTp (line 423) | static inline function _AccTp (line 440) | static inline function _AccTp (line 449) | static inline function normL2Sqr (line 469) | static inline float normL2Sqr(const float* a, const float* b, int n) function _AccTp (line 480) | static inline function normL1 (line 500) | inline float normL1(const float* a, const float* b, int n) function normL1 (line 510) | inline int normL1(const uchar* a, const uchar* b, int n) function _AccTp (line 520) | static inline function cubeRoot (line 545) | static inline class Vec (line 573) | class Vec class Matx (line 574) | class Matx class Complex (line 576) | class Complex class Point_ (line 577) | class Point_ class Point3_ (line 578) | class Point3_ class Size_ (line 579) | class Size_ class Rect_ (line 580) | class Rect_ class Scalar_ (line 581) | class Scalar_ class CV_EXPORTS (line 583) | class CV_EXPORTS class CV_EXPORTS (line 584) | class CV_EXPORTS class CV_EXPORTS (line 585) | class CV_EXPORTS class CV_EXPORTS (line 586) | class CV_EXPORTS class CV_EXPORTS (line 587) | class CV_EXPORTS class CV_EXPORTS (line 588) | class CV_EXPORTS class CV_EXPORTS (line 590) | class CV_EXPORTS class CV_EXPORTS (line 591) | class CV_EXPORTS class CV_EXPORTS (line 593) | class CV_EXPORTS class CV_EXPORTS (line 595) | class CV_EXPORTS class Mat_ (line 598) | class Mat_ class SparseMat_ (line 599) | class SparseMat_ class CV_EXPORTS (line 601) | class CV_EXPORTS class CV_EXPORTS (line 602) | class CV_EXPORTS class CV_EXPORTS (line 603) | class CV_EXPORTS class MatIterator_ (line 604) | class MatIterator_ class MatConstIterator_ (line 605) | class MatConstIterator_ class SparseMatIterator_ (line 606) | class SparseMatIterator_ class SparseMatConstIterator_ (line 607) | class SparseMatConstIterator_ type ogl (line 609) | namespace ogl class CV_EXPORTS (line 611) | class CV_EXPORTS class CV_EXPORTS (line 612) | class CV_EXPORTS class CV_EXPORTS (line 613) | class CV_EXPORTS type cuda (line 616) | namespace cuda class CV_EXPORTS (line 618) | class CV_EXPORTS class CV_EXPORTS (line 619) | class CV_EXPORTS class CV_EXPORTS (line 620) | class CV_EXPORTS class CV_EXPORTS (line 621) | class CV_EXPORTS type cudev (line 624) | namespace cudev class GpuMat_ (line 626) | class GpuMat_ type ipp (line 629) | namespace ipp function useIPP_NE (line 645) | static inline bool useIPP_NE() { return useIPP_NotExact(); } function setUseIPP_NE (line 646) | static inline void setUseIPP_NE(bool flag) { setUseIPP_NotExact(flag... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/bindings_utils.hpp type cv (line 14) | namespace cv { namespace utils { type utils (line 14) | namespace utils { function CV_WRAP (line 26) | CV_WRAP static inline function CV_WRAP (line 32) | CV_WRAP static inline function CV_WRAP (line 38) | CV_WRAP static inline function CV_WRAP (line 46) | CV_WRAP static inline function CV_WRAP (line 52) | CV_WRAP static inline function CV_WRAP (line 58) | CV_WRAP static inline function CV_WRAP (line 64) | CV_WRAP static inline function CV_WRAP (line 70) | CV_WRAP static inline function CV_WRAP (line 77) | CV_WRAP static inline function CV_WRAP (line 84) | CV_WRAP static inline function CV_WRAP (line 91) | CV_WRAP static inline function CV_WRAP (line 98) | CV_WRAP static inline function CV_WRAP (line 106) | CV_WRAP static inline function CV_WRAP (line 119) | CV_WRAP static inline function CV_WRAP (line 125) | CV_WRAP static inline function CV_WRAP (line 133) | CV_WRAP static inline type fs (line 148) | namespace fs { function CV_WRAP (line 157) | CV_WRAP static inline function CV_WRAP (line 164) | CV_WRAP static inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/bufferpool.hpp type cv (line 15) | namespace cv class BufferPoolController (line 21) | class BufferPoolController FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/check.hpp type cv (line 10) | namespace cv { type detail (line 20) | namespace detail { type TestOp (line 28) | enum TestOp { type CheckContext (line 39) | struct CheckContext { type TestOp (line 43) | enum TestOp FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/core_c.h function CV_INLINE (line 298) | CV_INLINE void cvDecRefData( CvArr* arr ) function CV_INLINE (line 324) | CV_INLINE int cvIncRefData( CvArr* arr ) function CV_INLINE (line 380) | CV_INLINE CvMat* cvGetRow( const CvArr* arr, CvMat* submat, int row ) function CV_INLINE (line 406) | CV_INLINE CvMat* cvGetCol( const CvArr* arr, CvMat* submat, int col ) function CV_INLINE (line 475) | CV_INLINE void cvReleaseMatND( CvMatND** mat ) function CV_INLINE (line 542) | CV_INLINE CvSparseNode* cvGetNextSparseNode( CvSparseMatIterator* mat_it... type CvNArrayIterator (line 566) | typedef struct CvNArrayIterator function CV_INLINE (line 1062) | CV_INLINE void cvSubS( const CvArr* src, CvScalar value, CvArr* dst, function CV_INLINE (line 1737) | CV_INLINE CvSetElem* cvSetNew( CvSet* set_header ) function CV_INLINE (line 1752) | CV_INLINE void cvSetRemoveByPtr( CvSet* set_header, void* elem ) function CV_INLINE (line 1767) | CV_INLINE CvSetElem* cvGetSetElem( const CvSet* set_header, int idx ) type CvGraphScanner (line 1860) | typedef struct CvGraphScanner type CvTreeNodeIterator (line 1894) | typedef struct CvTreeNodeIterator type IplImage (line 1935) | typedef IplImage* (CV_STDCALL* Cv_iplCreateImageHeader) type IplROI (line 1940) | typedef IplROI* (CV_STDCALL* Cv_iplCreateROI)(int,int,int,int,int); type IplImage (line 1941) | typedef IplImage* (CV_STDCALL* Cv_iplCloneImage)(const IplImage*); function CV_INLINE (line 2340) | CV_INLINE int cvReadInt( const CvFileNode* node, int default_value CV_DE... function CV_INLINE (line 2355) | CV_INLINE int cvReadIntByName( const CvFileStorage* fs, const CvFileNode... function CV_INLINE (line 2371) | CV_INLINE double cvReadReal( const CvFileNode* node, double default_valu... function CV_INLINE (line 2386) | CV_INLINE double cvReadRealByName( const CvFileStorage* fs, const CvFile... function CV_INLINE (line 2401) | CV_INLINE const char* cvReadString( const CvFileNode* node, function CV_INLINE (line 2415) | CV_INLINE const char* cvReadStringByName( const CvFileStorage* fs, const... function CV_INLINE (line 2447) | CV_INLINE void* cvReadByName( CvFileStorage* fs, const CvFileNode* map, function namespace (line 2730) | namespace cv function CvMat (line 2758) | struct DefaultDeleter{ CV_EXPORTS void operator ()(CvMat* obj) co... function IplImage (line 2759) | struct DefaultDeleter{ CV_EXPORTS void operator ()(IplImage* o... function CvMatND (line 2760) | struct DefaultDeleter{ CV_EXPORTS void operator ()(CvMatND* obj... function CvSparseMat (line 2761) | struct DefaultDeleter{ CV_EXPORTS void operator ()(CvSparse... function CvMemStorage (line 2762) | struct DefaultDeleter{ CV_EXPORTS void operator ()(CvMemSt... type Ptr (line 2768) | typedef Ptr MemStorage; type SeqIterator (line 2784) | typedef SeqIterator<_Tp> const_iterator; function _Tp (line 2795) | const _Tp& operator[](int idx) const; FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda.hpp type cv (line 65) | namespace cv { namespace cuda { type cuda (line 65) | namespace cuda { function GpuMat (line 105) | class CV_EXPORTS_W GpuMat function GpuData (line 343) | struct CV_EXPORTS_W GpuData function GpuMatND (line 358) | class CV_EXPORTS_W GpuMatND function BufferPool (line 687) | class CV_EXPORTS_W BufferPool function HostMem (line 730) | class CV_EXPORTS_W HostMem function Stream (line 848) | class CV_EXPORTS_W Stream function Event (line 916) | class CV_EXPORTS_W Event type FeatureSet (line 988) | enum FeatureSet function TargetArchs (line 1017) | class CV_EXPORTS_W TargetArchs function DeviceInfo (line 1044) | class CV_EXPORTS_W DeviceInfo FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda.inl.hpp type cv (line 51) | namespace cv { namespace cuda { type cuda (line 51) | namespace cuda { function GpuMat (line 121) | inline function GpuMat (line 153) | inline function GpuMat (line 167) | inline function GpuMat (line 173) | inline function uchar (line 206) | inline function uchar (line 213) | inline function _Tp (line 220) | inline function _Tp (line 226) | inline function GpuMat (line 244) | inline function GpuMat (line 250) | inline function GpuMat (line 256) | inline function GpuMat (line 262) | inline function GpuMat (line 268) | inline function GpuMat (line 274) | inline function GpuMat (line 280) | inline function GpuMat (line 286) | inline function Size (line 334) | inline function GpuMat (line 352) | static inline function createContinuous (line 360) | static inline function GpuMat (line 366) | static inline function ensureSizeIsEnough (line 374) | static inline function swap (line 380) | static inline function uchar (line 445) | inline function HostMem (line 519) | inline function HostMem (line 545) | inline function Mat (line 559) | inline function Size (line 607) | inline function swap (line 619) | static inline type cv (line 710) | namespace cv { type cuda (line 51) | namespace cuda { function GpuMat (line 121) | inline function GpuMat (line 153) | inline function GpuMat (line 167) | inline function GpuMat (line 173) | inline function uchar (line 206) | inline function uchar (line 213) | inline function _Tp (line 220) | inline function _Tp (line 226) | inline function GpuMat (line 244) | inline function GpuMat (line 250) | inline function GpuMat (line 256) | inline function GpuMat (line 262) | inline function GpuMat (line 268) | inline function GpuMat (line 274) | inline function GpuMat (line 280) | inline function GpuMat (line 286) | inline function Size (line 334) | inline function GpuMat (line 352) | static inline function createContinuous (line 360) | static inline function GpuMat (line 366) | static inline function ensureSizeIsEnough (line 374) | static inline function swap (line 380) | static inline function uchar (line 445) | inline function HostMem (line 519) | inline function HostMem (line 545) | inline function Mat (line 559) | inline function Size (line 607) | inline function swap (line 619) | static inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/block.hpp type cv (line 52) | namespace cv { namespace cuda { namespace device type cuda (line 52) | namespace cuda { namespace device type device (line 52) | namespace device type Block (line 54) | struct Block method id (line 56) | unsigned int id() method stride (line 61) | unsigned int stride() method sync (line 66) | void sync() method flattenedThreadId (line 71) | int flattenedThreadId() method __device__ (line 77) | static __device__ __forceinline__ void fill(It beg, It end, cons... method __device__ (line 87) | static __device__ __forceinline__ void yota(OutIt beg, OutIt end... method __device__ (line 98) | static __device__ __forceinline__ void copy(InIt beg, InIt end, ... method __device__ (line 109) | static __device__ __forceinline__ void transform(InIt beg, InIt ... method __device__ (line 120) | static __device__ __forceinline__ void transform(InIt1 beg1, InI... method __device__ (line 132) | static __device__ __forceinline__ void reduce(volatile T* buffer... method __device__ (line 154) | static __device__ __forceinline__ T reduce(volatile T* buffer, T... method __device__ (line 179) | static __device__ __forceinline__ void reduce_n(T* data, unsigne... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/border_interpolate.hpp type cv (line 56) | namespace cv { namespace cuda { namespace device type cuda (line 56) | namespace cuda { namespace device type device (line 56) | namespace device type BrdRowConstant (line 61) | struct BrdRowConstant method BrdRowConstant (line 65) | explicit __host__ __device__ __forceinline__ BrdRowConstant(int ... method __device__ (line 67) | __device__ __forceinline__ D at_low(int x, const T* data) const method __device__ (line 72) | __device__ __forceinline__ D at_high(int x, const T* data) const method __device__ (line 77) | __device__ __forceinline__ D at(int x, const T* data) const type BrdColConstant (line 86) | struct BrdColConstant method BrdColConstant (line 90) | explicit __host__ __device__ __forceinline__ BrdColConstant(int ... method __device__ (line 92) | __device__ __forceinline__ D at_low(int y, const T* data, size_t... method __device__ (line 97) | __device__ __forceinline__ D at_high(int y, const T* data, size_... method __device__ (line 102) | __device__ __forceinline__ D at(int y, const T* data, size_t ste... type BrdConstant (line 111) | struct BrdConstant method __device__ (line 119) | __device__ __forceinline__ D at(int y, int x, const T* data, siz... method __device__ (line 124) | __device__ __forceinline__ D at(typename Ptr2D::index_type y, ty... type BrdRowReplicate (line 137) | struct BrdRowReplicate method BrdRowReplicate (line 141) | explicit __host__ __device__ __forceinline__ BrdRowReplicate(int... method __host__ (line 142) | __host__ __device__ __forceinline__ BrdRowReplicate(int width, U... method idx_col_high (line 149) | int idx_col_high(int x) const method idx_col (line 154) | int idx_col(int x) const method __device__ (line 159) | __device__ __forceinline__ D at_low(int x, const T* data) const method __device__ (line 164) | __device__ __forceinline__ D at_high(int x, const T* data) const method __device__ (line 169) | __device__ __forceinline__ D at(int x, const T* data) const type BrdColReplicate (line 177) | struct BrdColReplicate method BrdColReplicate (line 181) | explicit __host__ __device__ __forceinline__ BrdColReplicate(int... method __host__ (line 182) | __host__ __device__ __forceinline__ BrdColReplicate(int height, ... method idx_row_high (line 189) | int idx_row_high(int y) const method idx_row (line 194) | int idx_row(int y) const method __device__ (line 199) | __device__ __forceinline__ D at_low(int y, const T* data, size_t... method __device__ (line 204) | __device__ __forceinline__ D at_high(int y, const T* data, size_... method __device__ (line 209) | __device__ __forceinline__ D at(int y, const T* data, size_t ste... type BrdReplicate (line 217) | struct BrdReplicate method __host__ (line 222) | __host__ __device__ __forceinline__ BrdReplicate(int height, int... method idx_row_high (line 229) | int idx_row_high(int y) const method idx_row (line 234) | int idx_row(int y) const method idx_col_low (line 239) | int idx_col_low(int x) const method idx_col_high (line 244) | int idx_col_high(int x) const method idx_col (line 249) | int idx_col(int x) const method __device__ (line 254) | __device__ __forceinline__ D at(int y, int x, const T* data, siz... method __device__ (line 259) | __device__ __forceinline__ D at(typename Ptr2D::index_type y, ty... type BrdRowReflect101 (line 271) | struct BrdRowReflect101 method BrdRowReflect101 (line 275) | explicit __host__ __device__ __forceinline__ BrdRowReflect101(in... method __host__ (line 276) | __host__ __device__ __forceinline__ BrdRowReflect101(int width, ... method idx_col_high (line 283) | int idx_col_high(int x) const method idx_col (line 288) | int idx_col(int x) const method __device__ (line 293) | __device__ __forceinline__ D at_low(int x, const T* data) const method __device__ (line 298) | __device__ __forceinline__ D at_high(int x, const T* data) const method __device__ (line 303) | __device__ __forceinline__ D at(int x, const T* data) const type BrdColReflect101 (line 311) | struct BrdColReflect101 method BrdColReflect101 (line 315) | explicit __host__ __device__ __forceinline__ BrdColReflect101(in... method __host__ (line 316) | __host__ __device__ __forceinline__ BrdColReflect101(int height,... method idx_row_high (line 323) | int idx_row_high(int y) const method idx_row (line 328) | int idx_row(int y) const method __device__ (line 333) | __device__ __forceinline__ D at_low(int y, const T* data, size_t... method __device__ (line 338) | __device__ __forceinline__ D at_high(int y, const T* data, size_... method __device__ (line 343) | __device__ __forceinline__ D at(int y, const T* data, size_t ste... type BrdReflect101 (line 351) | struct BrdReflect101 method __host__ (line 356) | __host__ __device__ __forceinline__ BrdReflect101(int height, in... method idx_row_high (line 363) | int idx_row_high(int y) const method idx_row (line 368) | int idx_row(int y) const method idx_col_low (line 373) | int idx_col_low(int x) const method idx_col_high (line 378) | int idx_col_high(int x) const method idx_col (line 383) | int idx_col(int x) const method __device__ (line 388) | __device__ __forceinline__ D at(int y, int x, const T* data, siz... method __device__ (line 393) | __device__ __forceinline__ D at(typename Ptr2D::index_type y, ty... type BrdRowReflect (line 405) | struct BrdRowReflect method BrdRowReflect (line 409) | explicit __host__ __device__ __forceinline__ BrdRowReflect(int w... method __host__ (line 410) | __host__ __device__ __forceinline__ BrdRowReflect(int width, U) ... method idx_col_high (line 417) | int idx_col_high(int x) const method idx_col (line 422) | int idx_col(int x) const method __device__ (line 427) | __device__ __forceinline__ D at_low(int x, const T* data) const method __device__ (line 432) | __device__ __forceinline__ D at_high(int x, const T* data) const method __device__ (line 437) | __device__ __forceinline__ D at(int x, const T* data) const type BrdColReflect (line 445) | struct BrdColReflect method BrdColReflect (line 449) | explicit __host__ __device__ __forceinline__ BrdColReflect(int h... method __host__ (line 450) | __host__ __device__ __forceinline__ BrdColReflect(int height, U)... method idx_row_high (line 457) | int idx_row_high(int y) const method idx_row (line 462) | int idx_row(int y) const method __device__ (line 467) | __device__ __forceinline__ D at_low(int y, const T* data, size_t... method __device__ (line 472) | __device__ __forceinline__ D at_high(int y, const T* data, size_... method __device__ (line 477) | __device__ __forceinline__ D at(int y, const T* data, size_t ste... type BrdReflect (line 485) | struct BrdReflect method __host__ (line 490) | __host__ __device__ __forceinline__ BrdReflect(int height, int w... method idx_row_high (line 497) | int idx_row_high(int y) const method idx_row (line 502) | int idx_row(int y) const method idx_col_low (line 507) | int idx_col_low(int x) const method idx_col_high (line 512) | int idx_col_high(int x) const method idx_col (line 517) | int idx_col(int x) const method __device__ (line 522) | __device__ __forceinline__ D at(int y, int x, const T* data, siz... method __device__ (line 527) | __device__ __forceinline__ D at(typename Ptr2D::index_type y, ty... type BrdRowWrap (line 539) | struct BrdRowWrap method BrdRowWrap (line 543) | explicit __host__ __device__ __forceinline__ BrdRowWrap(int widt... method __host__ (line 544) | __host__ __device__ __forceinline__ BrdRowWrap(int width_, U) : ... method idx_col_low (line 546) | int idx_col_low(int x) const method idx_col_high (line 551) | int idx_col_high(int x) const method idx_col (line 556) | int idx_col(int x) const method __device__ (line 561) | __device__ __forceinline__ D at_low(int x, const T* data) const method __device__ (line 566) | __device__ __forceinline__ D at_high(int x, const T* data) const method __device__ (line 571) | __device__ __forceinline__ D at(int x, const T* data) const type BrdColWrap (line 579) | struct BrdColWrap method BrdColWrap (line 583) | explicit __host__ __device__ __forceinline__ BrdColWrap(int heig... method __host__ (line 584) | __host__ __device__ __forceinline__ BrdColWrap(int height_, U) :... method idx_row_low (line 586) | int idx_row_low(int y) const method idx_row_high (line 591) | int idx_row_high(int y) const method idx_row (line 596) | int idx_row(int y) const method __device__ (line 601) | __device__ __forceinline__ D at_low(int y, const T* data, size_t... method __device__ (line 606) | __device__ __forceinline__ D at_high(int y, const T* data, size_... method __device__ (line 611) | __device__ __forceinline__ D at(int y, const T* data, size_t ste... type BrdWrap (line 619) | struct BrdWrap method idx_row_low (line 633) | int idx_row_low(int y) const method idx_row_high (line 638) | int idx_row_high(int y) const method idx_row (line 643) | int idx_row(int y) const method idx_col_low (line 648) | int idx_col_low(int x) const method idx_col_high (line 653) | int idx_col_high(int x) const method idx_col (line 658) | int idx_col(int x) const method __device__ (line 663) | __device__ __forceinline__ D at(int y, int x, const T* data, siz... method __device__ (line 668) | __device__ __forceinline__ D at(typename Ptr2D::index_type y, ty... type BorderReader (line 680) | struct BorderReader method elem_type (line 687) | elem_type operator ()(index_type y, index_type x) const type BorderReader< Ptr2D, BrdConstant > (line 698) | struct BorderReader< Ptr2D, BrdConstant > method D (line 708) | D operator ()(index_type y, index_type x) const FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/color.hpp type cv (line 54) | namespace cv { namespace cuda { namespace device type cuda (line 54) | namespace cuda { namespace device type device (line 54) | namespace device FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/common.hpp type cv (line 65) | namespace cv { namespace cuda { type cuda (line 65) | namespace cuda { function checkCudaError (line 66) | static inline void checkCudaError(cudaError_t err, const char* file,... function isAligned (line 79) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 84) | static inline bool isAligned(size_t step, size_t size) type device (line 92) | namespace device function __host__ (line 94) | __host__ __device__ __forceinline__ int divUp(int total, int grain) function bindTexture (line 99) | inline void bindTexture(const textureReference* tex, const PtrStep... function createTextureObjectPitch2D (line 105) | inline void createTextureObjectPitch2D(cudaTextureObject_t* tex, P... type cuda (line 77) | namespace cuda function checkCudaError (line 66) | static inline void checkCudaError(cudaError_t err, const char* file,... function isAligned (line 79) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 84) | static inline bool isAligned(size_t step, size_t size) type device (line 92) | namespace device function __host__ (line 94) | __host__ __device__ __forceinline__ int divUp(int total, int grain) function bindTexture (line 99) | inline void bindTexture(const textureReference* tex, const PtrStep... function createTextureObjectPitch2D (line 105) | inline void createTextureObjectPitch2D(cudaTextureObject_t* tex, P... type cuda (line 90) | namespace cuda function checkCudaError (line 66) | static inline void checkCudaError(cudaError_t err, const char* file,... function isAligned (line 79) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 84) | static inline bool isAligned(size_t step, size_t size) type device (line 92) | namespace device function __host__ (line 94) | __host__ __device__ __forceinline__ int divUp(int total, int grain) function bindTexture (line 99) | inline void bindTexture(const textureReference* tex, const PtrStep... function createTextureObjectPitch2D (line 105) | inline void createTextureObjectPitch2D(cudaTextureObject_t* tex, P... type cv (line 77) | namespace cv { namespace cuda type cuda (line 65) | namespace cuda { function checkCudaError (line 66) | static inline void checkCudaError(cudaError_t err, const char* file,... function isAligned (line 79) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 84) | static inline bool isAligned(size_t step, size_t size) type device (line 92) | namespace device function __host__ (line 94) | __host__ __device__ __forceinline__ int divUp(int total, int grain) function bindTexture (line 99) | inline void bindTexture(const textureReference* tex, const PtrStep... function createTextureObjectPitch2D (line 105) | inline void createTextureObjectPitch2D(cudaTextureObject_t* tex, P... type cuda (line 77) | namespace cuda function checkCudaError (line 66) | static inline void checkCudaError(cudaError_t err, const char* file,... function isAligned (line 79) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 84) | static inline bool isAligned(size_t step, size_t size) type device (line 92) | namespace device function __host__ (line 94) | __host__ __device__ __forceinline__ int divUp(int total, int grain) function bindTexture (line 99) | inline void bindTexture(const textureReference* tex, const PtrStep... function createTextureObjectPitch2D (line 105) | inline void createTextureObjectPitch2D(cudaTextureObject_t* tex, P... type cuda (line 90) | namespace cuda function checkCudaError (line 66) | static inline void checkCudaError(cudaError_t err, const char* file,... function isAligned (line 79) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 84) | static inline bool isAligned(size_t step, size_t size) type device (line 92) | namespace device function __host__ (line 94) | __host__ __device__ __forceinline__ int divUp(int total, int grain) function bindTexture (line 99) | inline void bindTexture(const textureReference* tex, const PtrStep... function createTextureObjectPitch2D (line 105) | inline void createTextureObjectPitch2D(cudaTextureObject_t* tex, P... type cv (line 90) | namespace cv { namespace cuda type cuda (line 65) | namespace cuda { function checkCudaError (line 66) | static inline void checkCudaError(cudaError_t err, const char* file,... function isAligned (line 79) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 84) | static inline bool isAligned(size_t step, size_t size) type device (line 92) | namespace device function __host__ (line 94) | __host__ __device__ __forceinline__ int divUp(int total, int grain) function bindTexture (line 99) | inline void bindTexture(const textureReference* tex, const PtrStep... function createTextureObjectPitch2D (line 105) | inline void createTextureObjectPitch2D(cudaTextureObject_t* tex, P... type cuda (line 77) | namespace cuda function checkCudaError (line 66) | static inline void checkCudaError(cudaError_t err, const char* file,... function isAligned (line 79) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 84) | static inline bool isAligned(size_t step, size_t size) type device (line 92) | namespace device function __host__ (line 94) | __host__ __device__ __forceinline__ int divUp(int total, int grain) function bindTexture (line 99) | inline void bindTexture(const textureReference* tex, const PtrStep... function createTextureObjectPitch2D (line 105) | inline void createTextureObjectPitch2D(cudaTextureObject_t* tex, P... type cuda (line 90) | namespace cuda function checkCudaError (line 66) | static inline void checkCudaError(cudaError_t err, const char* file,... function isAligned (line 79) | static inline bool isAligned(const T* ptr, size_t size) function isAligned (line 84) | static inline bool isAligned(size_t step, size_t size) type device (line 92) | namespace device function __host__ (line 94) | __host__ __device__ __forceinline__ int divUp(int total, int grain) function bindTexture (line 99) | inline void bindTexture(const textureReference* tex, const PtrStep... function createTextureObjectPitch2D (line 105) | inline void createTextureObjectPitch2D(cudaTextureObject_t* tex, P... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/datamov_utils.hpp type cv (line 54) | namespace cv { namespace cuda { namespace device type cuda (line 54) | namespace cuda { namespace device type device (line 54) | namespace device type ForceGlob (line 59) | struct ForceGlob method Load (line 61) | static void Load(const T* ptr, int offset, T& val) { val = ptr[... type ForceGlob (line 74) | struct ForceGlob method Load (line 61) | static void Load(const T* ptr, int offset, T& val) { val = ptr[... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/detail/color_detail.hpp type cv (line 54) | namespace cv { namespace cuda { namespace device type cuda (line 54) | namespace cuda { namespace device type device (line 54) | namespace device type color_detail (line 60) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 146) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 198) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 269) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 352) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 396) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 440) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 480) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 533) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 582) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 672) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 749) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 830) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 904) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 981) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1141) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1283) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1414) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1556) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1699) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1814) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type color_detail (line 1911) | namespace color_detail type ColorChannel (line 62) | struct ColorChannel method T (line 65) | T max() { return numeric_limits::max(); } method T (line 66) | T half() { return (T)(max()/2 + 1); } type ColorChannel (line 69) | struct ColorChannel method max (line 72) | float max() { return 1.f; } method half (line 73) | float half() { return 0.5f; } function __device__ (line 76) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 80) | static __device__ __forceinline__ void setAlpha(typename TypeVec... function __device__ (line 85) | static __device__ __forceinline__ T getAlpha(const typename Type... function __device__ (line 90) | static __device__ __forceinline__ T getAlpha(const typename Type... type RGB2RGB (line 148) | struct RGB2RGB method __forceinline__ (line 163) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 164) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB (line 167) | struct RGB2RGB : unary_function method __device__ (line 169) | __device__ uint operator()(uint src) const method __forceinline__ (line 181) | __forceinline__ RGB2RGB() {} method __forceinline__ (line 182) | __forceinline__ RGB2RGB(const RGB2RGB&) {} type RGB2RGB5x5Converter (line 200) | struct RGB2RGB5x5Converter type RGB2RGB5x5Converter<6, bidx> (line 201) | struct RGB2RGB5x5Converter<6, bidx> method ushort (line 203) | ushort cvt(const uchar3& src) method ushort (line 208) | ushort cvt(uint src) type RGB2RGB5x5Converter<5, bidx> (line 217) | struct RGB2RGB5x5Converter<5, bidx> method ushort (line 219) | ushort cvt(const uchar3& src) method ushort (line 224) | ushort cvt(uint src) type RGB2RGB5x5 (line 234) | struct RGB2RGB5x5 type RGB2RGB5x5<3, bidx,green_bits> (line 236) | struct RGB2RGB5x5<3, bidx,green_bits> : unary_function (line 247) | struct RGB2RGB5x5<4, bidx,green_bits> : unary_function (line 273) | struct RGB5x52RGBConverter<5, bidx> method cvt (line 275) | void cvt(uint src, uchar3& dst) method cvt (line 282) | void cvt(uint src, uint& dst) type RGB5x52RGBConverter<6, bidx> (line 293) | struct RGB5x52RGBConverter<6, bidx> method cvt (line 295) | void cvt(uint src, uchar3& dst) method cvt (line 302) | void cvt(uint src, uint& dst) type RGB5x52RGB (line 312) | struct RGB5x52RGB type RGB5x52RGB<3, bidx, green_bits> (line 314) | struct RGB5x52RGB<3, bidx, green_bits> : unary_function (line 327) | struct RGB5x52RGB<4, bidx, green_bits> : unary_function::ve... method __forceinline__ (line 365) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 366) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB (line 369) | struct Gray2RGB : unary_function method uint (line 371) | uint operator()(uint src) const method __forceinline__ (line 381) | __forceinline__ Gray2RGB() {} method __forceinline__ (line 382) | __forceinline__ Gray2RGB(const Gray2RGB&) {} type Gray2RGB5x5Converter (line 398) | struct Gray2RGB5x5Converter type Gray2RGB5x5Converter<6> (line 399) | struct Gray2RGB5x5Converter<6> method ushort (line 401) | ushort cvt(uint t) type Gray2RGB5x5Converter<5> (line 407) | struct Gray2RGB5x5Converter<5> method ushort (line 409) | ushort cvt(uint t) type Gray2RGB5x5 (line 416) | struct Gray2RGB5x5 : unary_function method ushort (line 418) | ushort operator()(uint src) const method __forceinline__ (line 423) | __forceinline__ Gray2RGB5x5() {} method __forceinline__ (line 424) | __forceinline__ Gray2RGB5x5(const Gray2RGB5x5&) {} type RGB5x52GrayConverter (line 442) | struct RGB5x52GrayConverter type RGB5x52GrayConverter<6> (line 443) | struct RGB5x52GrayConverter<6> method uchar (line 445) | uchar cvt(uint t) type RGB5x52GrayConverter<5> (line 451) | struct RGB5x52GrayConverter<5> method uchar (line 453) | uchar cvt(uint t) type RGB5x52Gray (line 459) | struct RGB5x52Gray : unary_function method uchar (line 461) | uchar operator()(uint src) const method __forceinline__ (line 465) | __forceinline__ RGB5x52Gray() {} method __forceinline__ (line 466) | __forceinline__ RGB5x52Gray(const RGB5x52Gray&) {} function __device__ (line 482) | static __device__ __forceinline__ T RGB2GrayConvert(const T* src) function __device__ (line 487) | static __device__ __forceinline__ uchar RGB2GrayConvert(uint src) function __device__ (line 495) | static __device__ __forceinline__ float RGB2GrayConvert(const fl... type RGB2Gray (line 500) | struct RGB2Gray : unary_function::vec_t... method T (line 502) | T operator()(const typename TypeVec::vec_type& src) const method __forceinline__ (line 506) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 507) | __forceinline__ RGB2Gray(const RGB2Gray&) {} type RGB2Gray (line 510) | struct RGB2Gray : unary_function method uchar (line 512) | uchar operator()(uint src) const method __forceinline__ (line 516) | __forceinline__ RGB2Gray() {} method __forceinline__ (line 517) | __forceinline__ RGB2Gray(const RGB2Gray&) {} function __device__ (line 538) | static __device__ void RGB2YUVConvert(const T* src, D& dst) function __device__ (line 551) | static __device__ __forceinline__ void RGB2YUVConvert(const floa... type RGB2YUV (line 558) | struct RGB2YUV method __forceinline__ (line 567) | __forceinline__ RGB2YUV() {} method __forceinline__ (line 568) | __forceinline__ RGB2YUV(const RGB2YUV&) {} function __device__ (line 587) | static __device__ void YUV2RGBConvert(const T& src, D* dst) function __device__ (line 601) | static __device__ uint YUV2RGBConvert(uint src) function __device__ (line 623) | static __device__ __forceinline__ void YUV2RGBConvert(const T& s... type YUV2RGB (line 633) | struct YUV2RGB method __forceinline__ (line 645) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 646) | __forceinline__ YUV2RGB(const YUV2RGB&) {} type YUV2RGB (line 649) | struct YUV2RGB : unary_function method uint (line 651) | uint operator ()(uint src) const method __forceinline__ (line 655) | __forceinline__ YUV2RGB() {} method __forceinline__ (line 656) | __forceinline__ YUV2RGB(const YUV2RGB&) {} function __device__ (line 677) | static __device__ void RGB2YCrCbConvert(const T* src, D& dst) function __device__ (line 690) | static __device__ uint RGB2YCrCbConvert(uint src) function __device__ (line 707) | static __device__ __forceinline__ void RGB2YCrCbConvert(const fl... type RGB2YCrCb (line 714) | struct RGB2YCrCb method __forceinline__ (line 723) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 724) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} type RGB2YCrCb (line 727) | struct RGB2YCrCb : unary_function method uint (line 729) | uint operator ()(uint src) const method __forceinline__ (line 734) | __forceinline__ RGB2YCrCb() {} method __forceinline__ (line 735) | __forceinline__ RGB2YCrCb(const RGB2YCrCb&) {} function __device__ (line 754) | static __device__ void YCrCb2RGBConvert(const T& src, D* dst) function __device__ (line 765) | static __device__ uint YCrCb2RGBConvert(uint src) function __device__ (line 784) | __device__ __forceinline__ void YCrCb2RGBConvert(const T& src, f... type YCrCb2RGB (line 791) | struct YCrCb2RGB method __forceinline__ (line 803) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 804) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} type YCrCb2RGB (line 807) | struct YCrCb2RGB : unary_function method uint (line 809) | uint operator ()(uint src) const method __forceinline__ (line 813) | __forceinline__ YCrCb2RGB() {} method __forceinline__ (line 814) | __forceinline__ YCrCb2RGB(const YCrCb2RGB&) {} function __device__ (line 835) | static __device__ __forceinline__ void RGB2XYZConvert(const T* s... function __device__ (line 842) | static __device__ __forceinline__ uint RGB2XYZConvert(uint src) function __device__ (line 861) | static __device__ __forceinline__ void RGB2XYZConvert(const floa... type RGB2XYZ (line 868) | struct RGB2XYZ method __forceinline__ (line 879) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 880) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} type RGB2XYZ (line 883) | struct RGB2XYZ : unary_function method uint (line 885) | uint operator()(uint src) const method __forceinline__ (line 889) | __forceinline__ RGB2XYZ() {} method __forceinline__ (line 890) | __forceinline__ RGB2XYZ(const RGB2XYZ&) {} function __device__ (line 909) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... function __device__ (line 916) | static __device__ __forceinline__ uint XYZ2RGBConvert(uint src) function __device__ (line 935) | static __device__ __forceinline__ void XYZ2RGBConvert(const T& s... type XYZ2RGB (line 942) | struct XYZ2RGB method __forceinline__ (line 954) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 955) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} type XYZ2RGB (line 958) | struct XYZ2RGB : unary_function method uint (line 960) | uint operator()(uint src) const method __forceinline__ (line 964) | __forceinline__ XYZ2RGB() {} method __forceinline__ (line 965) | __forceinline__ XYZ2RGB(const XYZ2RGB&) {} function __device__ (line 987) | static __device__ void RGB2HSVConvert(const uchar* src, D& dst) function __device__ (line 1016) | static __device__ uint RGB2HSVConvert(uint src) function __device__ (line 1052) | static __device__ void RGB2HSVConvert(const float* src, D& dst) type RGB2HSV (line 1081) | struct RGB2HSV method __forceinline__ (line 1092) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1093) | __forceinline__ RGB2HSV(const RGB2HSV&) {} type RGB2HSV (line 1096) | struct RGB2HSV : unary_function method uint (line 1098) | uint operator()(uint src) const method __forceinline__ (line 1102) | __forceinline__ RGB2HSV() {} method __forceinline__ (line 1103) | __forceinline__ RGB2HSV(const RGB2HSV&) {} function __device__ (line 1145) | static __device__ void HSV2RGBConvert(const T& src, float* dst) function __device__ (line 1186) | static __device__ void HSV2RGBConvert(const T& src, uchar* dst) function __device__ (line 1201) | static __device__ uint HSV2RGBConvert(uint src) type HSV2RGB (line 1220) | struct HSV2RGB method __forceinline__ (line 1232) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1233) | __forceinline__ HSV2RGB(const HSV2RGB&) {} type HSV2RGB (line 1236) | struct HSV2RGB : unary_function method uint (line 1238) | uint operator()(uint src) const method __forceinline__ (line 1242) | __forceinline__ HSV2RGB() {} method __forceinline__ (line 1243) | __forceinline__ HSV2RGB(const HSV2RGB&) {} function __device__ (line 1285) | static __device__ void RGB2HLSConvert(const float* src, D& dst) function __device__ (line 1320) | static __device__ void RGB2HLSConvert(const uchar* src, D& dst) function __device__ (line 1335) | static __device__ uint RGB2HLSConvert(uint src) type RGB2HLS (line 1354) | struct RGB2HLS method __forceinline__ (line 1365) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1366) | __forceinline__ RGB2HLS(const RGB2HLS&) {} type RGB2HLS (line 1369) | struct RGB2HLS : unary_function method uint (line 1371) | uint operator()(uint src) const method __forceinline__ (line 1375) | __forceinline__ RGB2HLS() {} method __forceinline__ (line 1376) | __forceinline__ RGB2HLS(const RGB2HLS&) {} function __device__ (line 1418) | static __device__ void HLS2RGBConvert(const T& src, float* dst) function __device__ (line 1459) | static __device__ void HLS2RGBConvert(const T& src, uchar* dst) function __device__ (line 1474) | static __device__ uint HLS2RGBConvert(uint src) type HLS2RGB (line 1493) | struct HLS2RGB method __forceinline__ (line 1505) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1506) | __forceinline__ HLS2RGB(const HLS2RGB&) {} type HLS2RGB (line 1509) | struct HLS2RGB : unary_function method uint (line 1511) | uint operator()(uint src) const method __forceinline__ (line 1515) | __forceinline__ HLS2RGB() {} method __forceinline__ (line 1516) | __forceinline__ HLS2RGB(const HLS2RGB&) {} function __device__ (line 1570) | __device__ __forceinline__ int LabCbrt_b(int i) function __device__ (line 1577) | __device__ __forceinline__ void RGB2LabConvert_b(const T& src, D... function __device__ (line 1612) | __device__ __forceinline__ float splineInterpolate(float x, cons... function __device__ (line 1623) | __device__ __forceinline__ void RGB2LabConvert_f(const T& src, D... type RGB2Lab (line 1656) | struct RGB2Lab type RGB2Lab (line 1658) | struct RGB2Lab method __forceinline__ (line 1669) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1670) | __forceinline__ RGB2Lab(const RGB2Lab&) {} type RGB2Lab (line 1673) | struct RGB2Lab method __forceinline__ (line 1684) | __forceinline__ RGB2Lab() {} method __forceinline__ (line 1685) | __forceinline__ RGB2Lab(const RGB2Lab&) {} function __device__ (line 1704) | __device__ __forceinline__ void Lab2RGBConvert_f(const T& src, D... function __device__ (line 1753) | __device__ __forceinline__ void Lab2RGBConvert_b(const T& src, D... type Lab2RGB (line 1769) | struct Lab2RGB type Lab2RGB (line 1771) | struct Lab2RGB method __forceinline__ (line 1782) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1783) | __forceinline__ Lab2RGB(const Lab2RGB&) {} type Lab2RGB (line 1786) | struct Lab2RGB method __forceinline__ (line 1797) | __forceinline__ Lab2RGB() {} method __forceinline__ (line 1798) | __forceinline__ Lab2RGB(const Lab2RGB&) {} function __device__ (line 1819) | __device__ __forceinline__ void RGB2LuvConvert_f(const T& src, D... function __device__ (line 1853) | __device__ __forceinline__ void RGB2LuvConvert_b(const T& src, D... type RGB2Luv (line 1868) | struct RGB2Luv type RGB2Luv (line 1870) | struct RGB2Luv method __forceinline__ (line 1881) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1882) | __forceinline__ RGB2Luv(const RGB2Luv&) {} type RGB2Luv (line 1885) | struct RGB2Luv method __forceinline__ (line 1896) | __forceinline__ RGB2Luv() {} method __forceinline__ (line 1897) | __forceinline__ RGB2Luv(const RGB2Luv&) {} function __device__ (line 1914) | __device__ __forceinline__ void Luv2RGBConvert_f(const T& src, D... function __device__ (line 1953) | __device__ __forceinline__ void Luv2RGBConvert_b(const T& src, D... type Luv2RGB (line 1969) | struct Luv2RGB type Luv2RGB (line 1971) | struct Luv2RGB method __forceinline__ (line 1982) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1983) | __forceinline__ Luv2RGB(const Luv2RGB&) {} type Luv2RGB (line 1986) | struct Luv2RGB method __forceinline__ (line 1997) | __forceinline__ Luv2RGB() {} method __forceinline__ (line 1998) | __forceinline__ Luv2RGB(const Luv2RGB&) {} FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/detail/reduce.hpp type cv (line 52) | namespace cv { namespace cuda { namespace device type cuda (line 52) | namespace cuda { namespace device type device (line 52) | namespace device type reduce_detail (line 54) | namespace reduce_detail type GetType (line 56) | struct GetType type GetType (line 57) | struct GetType type GetType (line 61) | struct GetType type GetType (line 65) | struct GetType type For (line 71) | struct For method __device__ (line 74) | static __device__ void loadToSmem(const PointerTuple& smem, co... method __device__ (line 81) | static __device__ void loadFromSmem(const PointerTuple& smem, ... method __device__ (line 89) | static __device__ void merge(const PointerTuple& smem, const V... method __device__ (line 97) | static __device__ void mergeShfl(const ValTuple& val, unsigned... type For (line 106) | struct For method __device__ (line 109) | static __device__ void loadToSmem(const PointerTuple&, const V... method __device__ (line 113) | static __device__ void loadFromSmem(const PointerTuple&, const... method __device__ (line 118) | static __device__ void merge(const PointerTuple&, const ValTup... method __device__ (line 122) | static __device__ void mergeShfl(const ValTuple&, unsigned int... function __device__ (line 128) | __device__ __forceinline__ void loadToSmem(volatile T* smem, T& ... function __device__ (line 133) | __device__ __forceinline__ void loadFromSmem(volatile T* smem, T... function __device__ (line 139) | __device__ __forceinline__ void loadToSmem(const thrust::tuple (line 263) | struct Unroll<0, Pointer, Reference, Op> method __device__ (line 265) | static __device__ void loopShfl(Reference, Op, unsigned int) method __device__ (line 268) | static __device__ void loop(Pointer, Reference, unsigned int, Op) type WarpOptimized (line 273) | struct WarpOptimized method __device__ (line 276) | static __device__ void reduce(Pointer smem, Reference val, uns... type GenericOptimized32 (line 292) | struct GenericOptimized32 method __device__ (line 297) | static __device__ void reduce(Pointer smem, Reference val, uns... type StaticIf (line 333) | struct StaticIf type StaticIf (line 334) | struct StaticIf type StaticIf (line 338) | struct StaticIf type IsPowerOf2 (line 343) | struct IsPowerOf2 type Dispatcher (line 348) | struct Dispatcher FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/detail/reduce_key_val.hpp type cv (line 52) | namespace cv { namespace cuda { namespace device type cuda (line 52) | namespace cuda { namespace device type device (line 52) | namespace device type reduce_key_val_detail (line 54) | namespace reduce_key_val_detail type GetType (line 56) | struct GetType type GetType (line 57) | struct GetType type GetType (line 61) | struct GetType type GetType (line 65) | struct GetType type For (line 71) | struct For method __device__ (line 74) | static __device__ void loadToSmem(const PointerTuple& smem, co... method __device__ (line 81) | static __device__ void loadFromSmem(const PointerTuple& smem, ... method __device__ (line 89) | static __device__ void copyShfl(const ReferenceTuple& val, uns... method __device__ (line 96) | static __device__ void copy(const PointerTuple& svals, const R... method __device__ (line 104) | static __device__ void mergeShfl(const KeyReferenceTuple& key,... method __device__ (line 117) | static __device__ void merge(const KeyPointerTuple& skeys, con... type For (line 134) | struct For method __device__ (line 137) | static __device__ void loadToSmem(const PointerTuple&, const R... method __device__ (line 141) | static __device__ void loadFromSmem(const PointerTuple&, const... method __device__ (line 146) | static __device__ void copyShfl(const ReferenceTuple&, unsigne... method __device__ (line 150) | static __device__ void copy(const PointerTuple&, const Referen... method __device__ (line 155) | static __device__ void mergeShfl(const KeyReferenceTuple&, con... method __device__ (line 159) | static __device__ void merge(const KeyPointerTuple&, const Key... function __device__ (line 171) | __device__ __forceinline__ void loadToSmem(volatile T* smem, T& ... function __device__ (line 176) | __device__ __forceinline__ void loadFromSmem(volatile T* smem, T... function __device__ (line 182) | __device__ __forceinline__ void loadToSmem(const thrust::tuple (line 389) | struct Unroll<0, KP, KR, VP, VR, Cmp> method __device__ (line 391) | static __device__ void loopShfl(KR, VR, Cmp, unsigned int) method __device__ (line 394) | static __device__ void loop(KP, KR, VP, VR, unsigned int, Cmp) type WarpOptimized (line 399) | struct WarpOptimized method __device__ (line 402) | static __device__ void reduce(KP skeys, KR key, VP svals, VR v... type GenericOptimized32 (line 420) | struct GenericOptimized32 method __device__ (line 425) | static __device__ void reduce(KP skeys, KR key, VP svals, VR v... type StaticIf (line 470) | struct StaticIf type StaticIf (line 471) | struct StaticIf type StaticIf (line 475) | struct StaticIf type IsPowerOf2 (line 480) | struct IsPowerOf2 type Dispatcher (line 485) | struct Dispatcher FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/detail/transform_detail.hpp type cv (line 52) | namespace cv { namespace cuda { namespace device type cuda (line 52) | namespace cuda { namespace device type device (line 52) | namespace device type transform_detail (line 54) | namespace transform_detail type UnaryReadWriteTraits (line 58) | struct UnaryReadWriteTraits type BinaryReadWriteTraits (line 64) | struct BinaryReadWriteTraits type OpUnroller (line 73) | struct OpUnroller type OpUnroller<1> (line 74) | struct OpUnroller<1> method __device__ (line 77) | static __device__ __forceinline__ void unroll(const T& src, D&... method __device__ (line 84) | static __device__ __forceinline__ void unroll(const T1& src1, ... type OpUnroller<2> (line 90) | struct OpUnroller<2> method __device__ (line 93) | static __device__ __forceinline__ void unroll(const T& src, D&... method __device__ (line 102) | static __device__ __forceinline__ void unroll(const T1& src1, ... type OpUnroller<3> (line 110) | struct OpUnroller<3> method __device__ (line 113) | static __device__ __forceinline__ void unroll(const T& src, D&... method __device__ (line 124) | static __device__ __forceinline__ void unroll(const T1& src1, ... type OpUnroller<4> (line 134) | struct OpUnroller<4> method __device__ (line 137) | static __device__ __forceinline__ void unroll(const T& src, D&... method __device__ (line 150) | static __device__ __forceinline__ void unroll(const T1& src1, ... type OpUnroller<8> (line 162) | struct OpUnroller<8> method __device__ (line 165) | static __device__ __forceinline__ void unroll(const T& src, D&... method __device__ (line 186) | static __device__ __forceinline__ void unroll(const T1& src1, ... function __global__ (line 208) | static __global__ void transformSmart(const PtrStepSz src_, P... function __global__ (line 240) | __global__ static void transformSimple(const PtrStepSz src, P... function __global__ (line 252) | static __global__ void transformSmart(const PtrStepSz src1_,... function __global__ (line 289) | static __global__ void transformSimple(const PtrStepSz src1,... type TransformDispatcher (line 303) | struct TransformDispatcher type TransformDispatcher (line 304) | struct TransformDispatcher method call (line 307) | static void call(PtrStepSz src, PtrStepSz dst, UnOp op, ... method call (line 322) | static void call(PtrStepSz src1, PtrStepSz src2, PtrSt... type TransformDispatcher (line 336) | struct TransformDispatcher method call (line 339) | static void call(PtrStepSz src, PtrStepSz dst, UnOp op, ... method call (line 363) | static void call(PtrStepSz src1, PtrStepSz src2, PtrSt... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/detail/type_traits_detail.hpp type cv (line 51) | namespace cv { namespace cuda { namespace device type cuda (line 51) | namespace cuda { namespace device type device (line 51) | namespace device type type_traits_detail (line 53) | namespace type_traits_detail type Select (line 55) | struct Select { typedef T1 type; } type Select (line 56) | struct Select { typedef T2 type; } type IsSignedIntergral (line 58) | struct IsSignedIntergral { enum {value = 0}; } type IsSignedIntergral (line 59) | struct IsSignedIntergral { enum {value = 1}; } type IsSignedIntergral (line 60) | struct IsSignedIntergral { enum {value = 1}; } type IsSignedIntergral (line 61) | struct IsSignedIntergral { enum {value = 1}; } type IsSignedIntergral (line 62) | struct IsSignedIntergral { enum {value = 1}; } type IsSignedIntergral (line 63) | struct IsSignedIntergral { enum {value = 1}; } type IsSignedIntergral (line 64) | struct IsSignedIntergral { enum {value = 1}; } type IsUnsignedIntegral (line 66) | struct IsUnsignedIntegral { enum {value = 0}; } type IsUnsignedIntegral (line 67) | struct IsUnsignedIntegral { enum {value = 1}; } type IsUnsignedIntegral (line 68) | struct IsUnsignedIntegral { enum {value = 1}; } type IsUnsignedIntegral (line 69) | struct IsUnsignedIntegral { enum {value = 1}; } type IsUnsignedIntegral (line 70) | struct IsUnsignedIntegral { enum {value = 1}; } type IsUnsignedIntegral (line 71) | struct IsUnsignedIntegral { enum {value = 1}; } type IsUnsignedIntegral (line 72) | struct IsUnsignedIntegral { enum {value = 1}; } type IsIntegral (line 74) | struct IsIntegral { enum {value = IsSignedIntergral::value ||... type IsIntegral (line 75) | struct IsIntegral { enum {value = 1}; } type IsIntegral (line 76) | struct IsIntegral { enum {value = 1}; } type IsFloat (line 78) | struct IsFloat { enum {value = 0}; } type IsFloat (line 79) | struct IsFloat { enum {value = 1}; } type IsFloat (line 80) | struct IsFloat { enum {value = 1}; } type IsVec (line 82) | struct IsVec { enum {value = 0}; } type IsVec (line 83) | struct IsVec { enum {value = 1}; } type IsVec (line 84) | struct IsVec { enum {value = 1}; } type IsVec (line 85) | struct IsVec { enum {value = 1}; } type IsVec (line 86) | struct IsVec { enum {value = 1}; } type IsVec (line 87) | struct IsVec { enum {value = 1}; } type IsVec (line 88) | struct IsVec { enum {value = 1}; } type IsVec (line 89) | struct IsVec { enum {value = 1}; } type IsVec (line 90) | struct IsVec { enum {value = 1}; } type IsVec (line 91) | struct IsVec { enum {value = 1}; } type IsVec (line 92) | struct IsVec { enum {value = 1}; } type IsVec (line 93) | struct IsVec { enum {value = 1}; } type IsVec (line 94) | struct IsVec { enum {value = 1}; } type IsVec (line 95) | struct IsVec { enum {value = 1}; } type IsVec (line 96) | struct IsVec { enum {value = 1}; } type IsVec (line 97) | struct IsVec { enum {value = 1}; } type IsVec (line 98) | struct IsVec { enum {value = 1}; } type IsVec (line 99) | struct IsVec { enum {value = 1}; } type IsVec (line 100) | struct IsVec { enum {value = 1}; } type IsVec (line 101) | struct IsVec { enum {value = 1}; } type IsVec (line 102) | struct IsVec { enum {value = 1}; } type IsVec (line 103) | struct IsVec { enum {value = 1}; } type IsVec (line 104) | struct IsVec { enum {value = 1}; } type IsVec (line 105) | struct IsVec { enum {value = 1}; } type IsVec (line 106) | struct IsVec { enum {value = 1}; } type IsVec (line 107) | struct IsVec { enum {value = 1}; } type IsVec (line 108) | struct IsVec { enum {value = 1}; } type IsVec (line 109) | struct IsVec { enum {value = 1}; } type IsVec (line 110) | struct IsVec { enum {value = 1}; } type IsVec (line 111) | struct IsVec { enum {value = 1}; } type IsVec (line 112) | struct IsVec { enum {value = 1}; } type IsVec (line 113) | struct IsVec { enum {value = 1}; } type IsVec (line 114) | struct IsVec { enum {value = 1}; } type IsVec (line 115) | struct IsVec { enum {value = 1}; } type IsVec (line 116) | struct IsVec { enum {value = 1}; } type IsVec (line 117) | struct IsVec { enum {value = 1}; } type IsVec (line 118) | struct IsVec { enum {value = 1}; } type IsVec (line 119) | struct IsVec { enum {value = 1}; } type IsVec (line 120) | struct IsVec { enum {value = 1}; } type IsVec (line 121) | struct IsVec { enum {value = 1}; } type IsVec (line 122) | struct IsVec { enum {value = 1}; } type AddParameterType (line 124) | struct AddParameterType { typedef const U& type; } type AddParameterType (line 125) | struct AddParameterType { typedef U& type; } type AddParameterType (line 126) | struct AddParameterType { typedef void type; } type ReferenceTraits (line 128) | struct ReferenceTraits type ReferenceTraits (line 133) | struct ReferenceTraits type PointerTraits (line 139) | struct PointerTraits type PointerTraits (line 144) | struct PointerTraits type PointerTraits (line 149) | struct PointerTraits type UnConst (line 155) | struct UnConst type UnConst (line 160) | struct UnConst type UnConst (line 165) | struct UnConst type UnVolatile (line 171) | struct UnVolatile type UnVolatile (line 176) | struct UnVolatile type UnVolatile (line 181) | struct UnVolatile FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/detail/vec_distance_detail.hpp type cv (line 50) | namespace cv { namespace cuda { namespace device type cuda (line 50) | namespace cuda { namespace device type device (line 50) | namespace device type vec_distance_detail (line 52) | namespace vec_distance_detail type UnrollVecDiffCached (line 54) | struct UnrollVecDiffCached method __device__ (line 57) | static __device__ void calcCheck(const T1* vecCached, const T2... method __device__ (line 73) | static __device__ void calcWithoutCheck(const T1* vecCached, c... type UnrollVecDiffCached (line 86) | struct UnrollVecDiffCached method __device__ (line 89) | static __device__ __forceinline__ void calcCheck(const T1*, co... method __device__ (line 94) | static __device__ __forceinline__ void calcWithoutCheck(const ... type VecDiffCachedCalculator (line 99) | struct VecDiffCachedCalculator type VecDiffCachedCalculator (line 100) | struct VecDiffCachedCalculator method __device__ (line 103) | static __device__ __forceinline__ void calc(const T1* vecCache... type VecDiffCachedCalculator (line 108) | struct VecDiffCachedCalculator method __device__ (line 111) | static __device__ __forceinline__ void calc(const T1* vecCache... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/dynamic_smem.hpp type cv (line 52) | namespace cv { namespace cuda { namespace device type cuda (line 52) | namespace cuda { namespace device type device (line 52) | namespace device type DynamicSharedMem (line 54) | struct DynamicSharedMem type DynamicSharedMem (line 70) | struct DynamicSharedMem FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/emulation.hpp type cv (line 55) | namespace cv { namespace cuda { namespace device type cuda (line 55) | namespace cuda { namespace device type device (line 55) | namespace device type Emulation (line 57) | struct Emulation method syncthreadsOr (line 60) | int syncthreadsOr(int pred) method __forceinline__ (line 71) | static __forceinline__ __device__ int Ballot(int predicate) type smem (line 84) | struct smem method __device__ (line 89) | static __device__ __forceinline__ T atomicInc(T* address, T val) method __device__ (line 108) | static __device__ __forceinline__ T atomicAdd(T* address, T val) method __device__ (line 127) | static __device__ __forceinline__ T atomicMin(T* address, T val) type glob (line 143) | struct glob method atomicAdd (line 145) | int atomicAdd(int* address, int val) method atomicAdd (line 149) | unsigned int atomicAdd(unsigned int* address, unsigned int val) method atomicAdd (line 153) | float atomicAdd(float* address, float val) method atomicAdd (line 168) | double atomicAdd(double* address, double val) method atomicMin (line 186) | int atomicMin(int* address, int val) method atomicMin (line 190) | float atomicMin(float* address, float val) method atomicMin (line 207) | double atomicMin(double* address, double val) method atomicMax (line 225) | int atomicMax(int* address, int val) method atomicMax (line 229) | float atomicMax(float* address, float val) method atomicMax (line 246) | double atomicMax(double* address, double val) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/filters.hpp type cv (line 57) | namespace cv { namespace cuda { namespace device type cuda (line 57) | namespace cuda { namespace device type device (line 57) | namespace device type PointFilter (line 59) | struct PointFilter method PointFilter (line 64) | explicit __host__ __device__ __forceinline__ PointFilter(const P... method elem_type (line 71) | elem_type operator ()(float y, float x) const type LinearFilter (line 79) | struct LinearFilter method LinearFilter (line 84) | explicit __host__ __device__ __forceinline__ LinearFilter(const ... method elem_type (line 90) | elem_type operator ()(float y, float x) const type CubicFilter (line 119) | struct CubicFilter method CubicFilter (line 125) | explicit __host__ __device__ __forceinline__ CubicFilter(const P... method bicubicCoeff (line 132) | float bicubicCoeff(float x_) method __device__ (line 149) | __device__ elem_type operator ()(float y, float x) const type IntegerAreaFilter (line 178) | struct IntegerAreaFilter method IntegerAreaFilter (line 183) | explicit __host__ __device__ __forceinline__ IntegerAreaFilter(c... method elem_type (line 186) | elem_type operator ()(float y, float x) const type AreaFilter (line 216) | struct AreaFilter method AreaFilter (line 221) | explicit __host__ __device__ __forceinline__ AreaFilter(const Pt... method elem_type (line 224) | elem_type operator ()(float y, float x) const FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/funcattrib.hpp type cv (line 54) | namespace cv { namespace cuda { namespace device type cuda (line 54) | namespace cuda { namespace device type device (line 54) | namespace device function printFuncAttrib (line 57) | void printFuncAttrib(Func& func) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/functional.hpp type cv (line 57) | namespace cv { namespace cuda { namespace device type cuda (line 57) | namespace cuda { namespace device type device (line 57) | namespace device type unary_function (line 60) | struct unary_function type binary_function (line 65) | struct binary_function type plus (line 73) | struct plus : binary_function method T (line 75) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 80) | __forceinline__ plus() {} method __forceinline__ (line 81) | __forceinline__ plus(const plus&) {} type minus (line 84) | struct minus : binary_function method T (line 86) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 91) | __forceinline__ minus() {} method __forceinline__ (line 92) | __forceinline__ minus(const minus&) {} type multiplies (line 95) | struct multiplies : binary_function method T (line 97) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 102) | __forceinline__ multiplies() {} method __forceinline__ (line 103) | __forceinline__ multiplies(const multiplies&) {} type divides (line 106) | struct divides : binary_function method T (line 108) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 113) | __forceinline__ divides() {} method __forceinline__ (line 114) | __forceinline__ divides(const divides&) {} type modulus (line 117) | struct modulus : binary_function method T (line 119) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 124) | __forceinline__ modulus() {} method __forceinline__ (line 125) | __forceinline__ modulus(const modulus&) {} type negate (line 128) | struct negate : unary_function method T (line 130) | T operator ()(typename TypeTraits::ParameterType a) const method __forceinline__ (line 134) | __forceinline__ negate() {} method __forceinline__ (line 135) | __forceinline__ negate(const negate&) {} type equal_to (line 139) | struct equal_to : binary_function method __forceinline__ (line 146) | __forceinline__ equal_to() {} method __forceinline__ (line 147) | __forceinline__ equal_to(const equal_to&) {} type not_equal_to (line 150) | struct not_equal_to : binary_function method __forceinline__ (line 157) | __forceinline__ not_equal_to() {} method __forceinline__ (line 158) | __forceinline__ not_equal_to(const not_equal_to&) {} type greater (line 161) | struct greater : binary_function method __forceinline__ (line 168) | __forceinline__ greater() {} method __forceinline__ (line 169) | __forceinline__ greater(const greater&) {} type less (line 172) | struct less : binary_function method __forceinline__ (line 179) | __forceinline__ less() {} method __forceinline__ (line 180) | __forceinline__ less(const less&) {} type greater_equal (line 183) | struct greater_equal : binary_function method __forceinline__ (line 190) | __forceinline__ greater_equal() {} method __forceinline__ (line 191) | __forceinline__ greater_equal(const greater_equal&) {} type less_equal (line 194) | struct less_equal : binary_function method __forceinline__ (line 201) | __forceinline__ less_equal() {} method __forceinline__ (line 202) | __forceinline__ less_equal(const less_equal&) {} type logical_and (line 206) | struct logical_and : binary_function method __forceinline__ (line 213) | __forceinline__ logical_and() {} method __forceinline__ (line 214) | __forceinline__ logical_and(const logical_and&) {} type logical_or (line 217) | struct logical_or : binary_function method __forceinline__ (line 224) | __forceinline__ logical_or() {} method __forceinline__ (line 225) | __forceinline__ logical_or(const logical_or&) {} type logical_not (line 228) | struct logical_not : unary_function method __forceinline__ (line 234) | __forceinline__ logical_not() {} method __forceinline__ (line 235) | __forceinline__ logical_not(const logical_not&) {} type bit_and (line 239) | struct bit_and : binary_function method T (line 241) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 246) | __forceinline__ bit_and() {} method __forceinline__ (line 247) | __forceinline__ bit_and(const bit_and&) {} type bit_or (line 250) | struct bit_or : binary_function method T (line 252) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 257) | __forceinline__ bit_or() {} method __forceinline__ (line 258) | __forceinline__ bit_or(const bit_or&) {} type bit_xor (line 261) | struct bit_xor : binary_function method T (line 263) | T operator ()(typename TypeTraits::ParameterType a, method __forceinline__ (line 268) | __forceinline__ bit_xor() {} method __forceinline__ (line 269) | __forceinline__ bit_xor(const bit_xor&) {} type bit_not (line 272) | struct bit_not : unary_function method T (line 274) | T operator ()(typename TypeTraits::ParameterType v) const method __forceinline__ (line 278) | __forceinline__ bit_not() {} method __forceinline__ (line 279) | __forceinline__ bit_not(const bit_not&) {} type identity (line 283) | struct identity : unary_function method __forceinline__ (line 289) | __forceinline__ identity() {} method __forceinline__ (line 290) | __forceinline__ identity(const identity&) {} type project1st (line 293) | struct project1st : binary_function method __forceinline__ (line 299) | __forceinline__ project1st() {} method __forceinline__ (line 300) | __forceinline__ project1st(const project1st&) {} type project2nd (line 303) | struct project2nd : binary_function method __forceinline__ (line 309) | __forceinline__ project2nd() {} method __forceinline__ (line 310) | __forceinline__ project2nd(const project2nd&) {} type maximum (line 323) | struct maximum : binary_function method T (line 325) | T operator()(typename TypeTraits::ParameterType lhs, typename... method __forceinline__ (line 329) | __forceinline__ maximum() {} method __forceinline__ (line 330) | __forceinline__ maximum(const maximum&) {} type minimum (line 343) | struct minimum : binary_function method T (line 345) | T operator()(typename TypeTraits::ParameterType lhs, typename... method __forceinline__ (line 349) | __forceinline__ minimum() {} method __forceinline__ (line 350) | __forceinline__ minimum(const minimum&) {} type abs_func (line 367) | struct abs_func : unary_function method T (line 369) | T operator ()(typename TypeTraits::ParameterType x) const method __forceinline__ (line 374) | __forceinline__ abs_func() {} method __forceinline__ (line 375) | __forceinline__ abs_func(const abs_func&) {} type abs_func (line 377) | struct abs_func : unary_function (line 387) | struct abs_func : unary_function (line 397) | struct abs_func : unary_function method __forceinline__ (line 404) | __forceinline__ abs_func() {} method __forceinline__ (line 405) | __forceinline__ abs_func(const abs_func&) {} type abs_func (line 407) | struct abs_func : unary_function (line 417) | struct abs_func : unary_function method __forceinline__ (line 424) | __forceinline__ abs_func() {} method __forceinline__ (line 425) | __forceinline__ abs_func(const abs_func&) {} type abs_func (line 427) | struct abs_func : unary_function (line 437) | struct abs_func : unary_function method __forceinline__ (line 444) | __forceinline__ abs_func() {} method __forceinline__ (line 445) | __forceinline__ abs_func(const abs_func&) {} type abs_func (line 447) | struct abs_func : unary_function method __forceinline__ (line 454) | __forceinline__ abs_func() {} method __forceinline__ (line 455) | __forceinline__ abs_func(const abs_func&) {} type abs_func (line 457) | struct abs_func : unary_function method __forceinline__ (line 464) | __forceinline__ abs_func() {} method __forceinline__ (line 465) | __forceinline__ abs_func(const abs_func&) {} type hypot_sqr_func (line 536) | struct hypot_sqr_func : binary_function method T (line 538) | T operator ()(typename TypeTraits::ParameterType src1, typena... method __forceinline__ (line 542) | __forceinline__ hypot_sqr_func() {} method __forceinline__ (line 543) | __forceinline__ hypot_sqr_func(const hypot_sqr_func&) {} type saturate_cast_func (line 547) | struct saturate_cast_func : unary_function method D (line 549) | D operator ()(typename TypeTraits::ParameterType v) const method __forceinline__ (line 553) | __forceinline__ saturate_cast_func() {} method __forceinline__ (line 554) | __forceinline__ saturate_cast_func(const saturate_cast_func&) {} type thresh_binary_func (line 558) | struct thresh_binary_func : unary_function method T (line 562) | T operator()(typename TypeTraits::ParameterType src) const method __forceinline__ (line 567) | __forceinline__ thresh_binary_func() {} type thresh_binary_inv_func (line 575) | struct thresh_binary_inv_func : unary_function method T (line 579) | T operator()(typename TypeTraits::ParameterType src) const method __forceinline__ (line 584) | __forceinline__ thresh_binary_inv_func() {} type thresh_trunc_func (line 592) | struct thresh_trunc_func : unary_function method thresh_trunc_func (line 594) | explicit __host__ __device__ __forceinline__ thresh_trunc_func(T... method T (line 596) | T operator()(typename TypeTraits::ParameterType src) const method __forceinline__ (line 601) | __forceinline__ thresh_trunc_func() {} method __forceinline__ (line 602) | __forceinline__ thresh_trunc_func(const thresh_trunc_func& other) type thresh_to_zero_func (line 608) | struct thresh_to_zero_func : unary_function method thresh_to_zero_func (line 610) | explicit __host__ __device__ __forceinline__ thresh_to_zero_func... method T (line 612) | T operator()(typename TypeTraits::ParameterType src) const method __forceinline__ (line 617) | __forceinline__ thresh_to_zero_func() {} method __forceinline__ (line 618) | __forceinline__ thresh_to_zero_func(const thresh_to_zero_func& o... type thresh_to_zero_inv_func (line 624) | struct thresh_to_zero_inv_func : unary_function method thresh_to_zero_inv_func (line 626) | explicit __host__ __device__ __forceinline__ thresh_to_zero_inv_... method T (line 628) | T operator()(typename TypeTraits::ParameterType src) const method __forceinline__ (line 633) | __forceinline__ thresh_to_zero_inv_func() {} method __forceinline__ (line 634) | __forceinline__ thresh_to_zero_inv_func(const thresh_to_zero_inv... type unary_negate (line 641) | struct unary_negate : unary_function not1(c... type binary_negate (line 661) | struct binary_negate : binary_function... type binder1st (line 682) | struct binder1st : unary_function bind1st(const Op... type binder2nd (line 703) | struct binder2nd : unary_function bind2nd(const Op... type IsUnaryFunction (line 725) | struct IsUnaryFunction type No (line 728) | struct No {Yes a[2];} type IsBinaryFunction (line 738) | struct IsBinaryFunction type No (line 741) | struct No {Yes a[2];} type functional_detail (line 751) | namespace functional_detail type UnOpShift (line 753) | struct UnOpShift { enum { shift = 1 }; } type UnOpShift (line 754) | struct UnOpShift { enum { shift = 4 }; } type UnOpShift (line 755) | struct UnOpShift { enum { shift = 2 }; } type DefaultUnaryShift (line 757) | struct DefaultUnaryShift type BinOpShift (line 762) | struct BinOpShift { enum { shift = 1 }; } type BinOpShift (line 763) | struct BinOpShift { enum { sh... type BinOpShift (line 764) | struct BinOpShift { enum { sh... type DefaultBinaryShift (line 766) | struct DefaultBinaryShift type ShiftDispatcher (line 771) | struct ShiftDispatcher type ShiftDispatcher (line 772) | struct ShiftDispatcher type ShiftDispatcher (line 776) | struct ShiftDispatcher type DefaultTransformShift (line 782) | struct DefaultTransformShift type DefaultTransformFunctorTraits (line 787) | struct DefaultTransformFunctorTraits type TransformFunctorTraits (line 797) | struct TransformFunctorTraits : DefaultTransformFunctorTraits (line 60) | struct numeric_limits method min (line 62) | static bool min() { return false; } method max (line 63) | static bool max() { return true; } type numeric_limits (line 67) | struct numeric_limits method min (line 69) | static signed char min() { return SCHAR_MIN; } method max (line 70) | static signed char max() { return SCHAR_MAX; } type numeric_limits (line 74) | struct numeric_limits method min (line 76) | static unsigned char min() { return 0; } method max (line 77) | static unsigned char max() { return UCHAR_MAX; } type numeric_limits (line 81) | struct numeric_limits method min (line 83) | static short min() { return SHRT_MIN; } method max (line 84) | static short max() { return SHRT_MAX; } type numeric_limits (line 88) | struct numeric_limits method min (line 90) | static unsigned short min() { return 0; } method max (line 91) | static unsigned short max() { return USHRT_MAX; } type numeric_limits (line 95) | struct numeric_limits method min (line 97) | static int min() { return INT_MIN; } method max (line 98) | static int max() { return INT_MAX; } type numeric_limits (line 102) | struct numeric_limits method min (line 104) | static unsigned int min() { return 0; } method max (line 105) | static unsigned int max() { return UINT_MAX; } type numeric_limits (line 109) | struct numeric_limits method min (line 111) | static float min() { return FLT_MIN; } method max (line 112) | static float max() { return FLT_MAX; } method epsilon (line 113) | static float epsilon() { return FLT_EPSILON; } type numeric_limits (line 117) | struct numeric_limits method min (line 119) | static double min() { return DBL_MIN; } method max (line 120) | static double max() { return DBL_MAX; } method epsilon (line 121) | static double epsilon() { return DBL_EPSILON; } FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/reduce.hpp type cv (line 60) | namespace cv { namespace cuda { namespace device type cuda (line 60) | namespace cuda { namespace device type device (line 60) | namespace device function __device__ (line 63) | __device__ __forceinline__ void reduce(volatile T* smem, T& val, u... function __device__ (line 71) | __device__ __forceinline__ void reduce(const thrust::tuple(schar v) function __device__ (line 72) | __device__ __forceinline__ uchar saturate_cast(short v) function __device__ (line 78) | __device__ __forceinline__ uchar saturate_cast(ushort v) function __device__ (line 84) | __device__ __forceinline__ uchar saturate_cast(int v) function __device__ (line 90) | __device__ __forceinline__ uchar saturate_cast(uint v) function __device__ (line 96) | __device__ __forceinline__ uchar saturate_cast(float v) function __device__ (line 102) | __device__ __forceinline__ uchar saturate_cast(double v) function __device__ (line 113) | __device__ __forceinline__ schar saturate_cast(uchar v) function __device__ (line 120) | __device__ __forceinline__ schar saturate_cast(short v) function __device__ (line 126) | __device__ __forceinline__ schar saturate_cast(ushort v) function __device__ (line 132) | __device__ __forceinline__ schar saturate_cast(int v) function __device__ (line 138) | __device__ __forceinline__ schar saturate_cast(uint v) function __device__ (line 144) | __device__ __forceinline__ schar saturate_cast(float v) function __device__ (line 150) | __device__ __forceinline__ schar saturate_cast(double v) function __device__ (line 161) | __device__ __forceinline__ ushort saturate_cast(schar v) function __device__ (line 168) | __device__ __forceinline__ ushort saturate_cast(short v) function __device__ (line 174) | __device__ __forceinline__ ushort saturate_cast(int v) function __device__ (line 180) | __device__ __forceinline__ ushort saturate_cast(uint v) function __device__ (line 186) | __device__ __forceinline__ ushort saturate_cast(float v) function __device__ (line 192) | __device__ __forceinline__ ushort saturate_cast(double v) function __device__ (line 203) | __device__ __forceinline__ short saturate_cast(ushort v) function __device__ (line 209) | __device__ __forceinline__ short saturate_cast(int v) function __device__ (line 215) | __device__ __forceinline__ short saturate_cast(uint v) function __device__ (line 221) | __device__ __forceinline__ short saturate_cast(float v) function __device__ (line 227) | __device__ __forceinline__ short saturate_cast(double v) function __device__ (line 238) | __device__ __forceinline__ int saturate_cast(uint v) function __device__ (line 244) | __device__ __forceinline__ int saturate_cast(float v) function __device__ (line 248) | __device__ __forceinline__ int saturate_cast(double v) function __device__ (line 257) | __device__ __forceinline__ uint saturate_cast(schar v) function __device__ (line 264) | __device__ __forceinline__ uint saturate_cast(short v) function __device__ (line 270) | __device__ __forceinline__ uint saturate_cast(int v) function __device__ (line 276) | __device__ __forceinline__ uint saturate_cast(float v) function __device__ (line 280) | __device__ __forceinline__ uint saturate_cast(double v) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/scan.hpp type cv (line 57) | namespace cv { namespace cuda { namespace device type cuda (line 57) | namespace cuda { namespace device type device (line 57) | namespace device type ScanKind (line 59) | enum ScanKind { EXCLUSIVE = 0, INCLUSIVE = 1 } type WarpScan (line 61) | struct WarpScan method WarpScan (line 63) | WarpScan() {} method WarpScan (line 64) | WarpScan(const WarpScan& other) { CV_UNUSED(other); } method T (line 66) | T operator()( volatile T *ptr , const unsigned int idx) method index (line 83) | unsigned int index(const unsigned int tid) method init (line 88) | void init(volatile T *ptr){} type WarpScanNoComp (line 95) | struct WarpScanNoComp method WarpScanNoComp (line 97) | WarpScanNoComp() {} method WarpScanNoComp (line 98) | WarpScanNoComp(const WarpScanNoComp& other) { CV_UNUSED(other); } method T (line 100) | T operator()( volatile T *ptr , const unsigned int idx) method index (line 117) | unsigned int index(const unsigned int tid) method init (line 122) | void init(volatile T *ptr) type BlockScan (line 135) | struct BlockScan method BlockScan (line 137) | BlockScan() {} method BlockScan (line 138) | BlockScan(const BlockScan& other) { CV_UNUSED(other); } method T (line 140) | T operator()(volatile T *ptr) function __device__ (line 180) | __device__ T warpScanInclusive(T idata, volatile T* s_Data, unsign... function __device__ (line 212) | __device__ __forceinline__ T warpScanExclusive(T idata, volatile T... function __device__ (line 218) | __device__ T blockScanInclusive(T idata, volatile T* s_Data, unsig... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/simd_functions.hpp type cv (line 84) | namespace cv { namespace cuda { namespace device type cuda (line 84) | namespace cuda { namespace device type device (line 84) | namespace device function __device__ (line 88) | static __device__ __forceinline__ unsigned int vadd2(unsigned int ... function __device__ (line 109) | static __device__ __forceinline__ unsigned int vsub2(unsigned int ... function __device__ (line 130) | static __device__ __forceinline__ unsigned int vabsdiff2(unsigned ... function __device__ (line 157) | static __device__ __forceinline__ unsigned int vavg2(unsigned int ... function __device__ (line 172) | static __device__ __forceinline__ unsigned int vavrg2(unsigned int... function __device__ (line 192) | static __device__ __forceinline__ unsigned int vseteq2(unsigned in... function __device__ (line 213) | static __device__ __forceinline__ unsigned int vcmpeq2(unsigned in... function __device__ (line 237) | static __device__ __forceinline__ unsigned int vsetge2(unsigned in... function __device__ (line 254) | static __device__ __forceinline__ unsigned int vcmpge2(unsigned in... function __device__ (line 274) | static __device__ __forceinline__ unsigned int vsetgt2(unsigned in... function __device__ (line 291) | static __device__ __forceinline__ unsigned int vcmpgt2(unsigned in... function __device__ (line 311) | static __device__ __forceinline__ unsigned int vsetle2(unsigned in... function __device__ (line 328) | static __device__ __forceinline__ unsigned int vcmple2(unsigned in... function __device__ (line 348) | static __device__ __forceinline__ unsigned int vsetlt2(unsigned in... function __device__ (line 365) | static __device__ __forceinline__ unsigned int vcmplt2(unsigned in... function __device__ (line 385) | static __device__ __forceinline__ unsigned int vsetne2(unsigned in... function __device__ (line 406) | static __device__ __forceinline__ unsigned int vcmpne2(unsigned in... function __device__ (line 430) | static __device__ __forceinline__ unsigned int vmax2(unsigned int ... function __device__ (line 453) | static __device__ __forceinline__ unsigned int vmin2(unsigned int ... function __device__ (line 478) | static __device__ __forceinline__ unsigned int vadd4(unsigned int ... function __device__ (line 502) | static __device__ __forceinline__ unsigned int vsub4(unsigned int ... function __device__ (line 526) | static __device__ __forceinline__ unsigned int vavg4(unsigned int ... function __device__ (line 541) | static __device__ __forceinline__ unsigned int vavrg4(unsigned int... function __device__ (line 561) | static __device__ __forceinline__ unsigned int vseteq4(unsigned in... function __device__ (line 582) | static __device__ __forceinline__ unsigned int vcmpeq4(unsigned in... function __device__ (line 606) | static __device__ __forceinline__ unsigned int vsetle4(unsigned in... function __device__ (line 623) | static __device__ __forceinline__ unsigned int vcmple4(unsigned in... function __device__ (line 643) | static __device__ __forceinline__ unsigned int vsetlt4(unsigned in... function __device__ (line 660) | static __device__ __forceinline__ unsigned int vcmplt4(unsigned in... function __device__ (line 680) | static __device__ __forceinline__ unsigned int vsetge4(unsigned in... function __device__ (line 697) | static __device__ __forceinline__ unsigned int vcmpge4(unsigned in... function __device__ (line 717) | static __device__ __forceinline__ unsigned int vsetgt4(unsigned in... function __device__ (line 734) | static __device__ __forceinline__ unsigned int vcmpgt4(unsigned in... function __device__ (line 754) | static __device__ __forceinline__ unsigned int vsetne4(unsigned in... function __device__ (line 775) | static __device__ __forceinline__ unsigned int vcmpne4(unsigned in... function __device__ (line 799) | static __device__ __forceinline__ unsigned int vabsdiff4(unsigned ... function __device__ (line 822) | static __device__ __forceinline__ unsigned int vmax4(unsigned int ... function __device__ (line 844) | static __device__ __forceinline__ unsigned int vmin4(unsigned int ... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/transform.hpp type cv (line 56) | namespace cv { namespace cuda { namespace device type cuda (line 56) | namespace cuda { namespace device type device (line 56) | namespace device function transform (line 59) | static inline void transform(PtrStepSz src, PtrStepSz dst, U... function transform (line 66) | static inline void transform(PtrStepSz src1, PtrStepSz src... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/type_traits.hpp type cv (line 54) | namespace cv { namespace cuda { namespace device type cuda (line 54) | namespace cuda { namespace device type device (line 54) | namespace device type IsSimpleParameter (line 56) | struct IsSimpleParameter type TypeTraits (line 62) | struct TypeTraits FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/utility.hpp type cv (line 55) | namespace cv { namespace cuda { namespace device type cuda (line 55) | namespace cuda { namespace device type device (line 55) | namespace device function ThrustAllocator (line 57) | struct CV_EXPORTS ThrustAllocator function swap (line 74) | void __device__ __host__ __forceinline__ swap(T& a, T& b) type SingleMask (line 84) | struct SingleMask method SingleMask (line 86) | explicit __host__ __device__ __forceinline__ SingleMask(PtrStepb... method __forceinline__ (line 87) | __forceinline__ SingleMask(const SingleMask& mask_): mask(mask_.... type SingleMaskChannels (line 97) | struct SingleMaskChannels type MaskCollection (line 113) | struct MaskCollection method MaskCollection (line 115) | explicit __host__ __device__ __forceinline__ MaskCollection(PtrS... method MaskCollection (line 118) | MaskCollection(const MaskCollection& masks_) method next (line 121) | void next() method setMask (line 125) | void setMask(int z) type WithOutMask (line 140) | struct WithOutMask method __forceinline__ (line 142) | __forceinline__ WithOutMask(){} method __forceinline__ (line 143) | __forceinline__ WithOutMask(const WithOutMask&){} method next (line 145) | void next() const method setMask (line 148) | void setMask(int) const method check (line 162) | bool check(int, int) method check (line 167) | bool check(int, int, int) function __device__ (line 177) | __device__ __forceinline__ bool solve2x2(const T A[2][2], const T ... function __device__ (line 196) | __device__ __forceinline__ bool solve3x3(const T A[3][3], const T ... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/vec_distance.hpp type cv (line 56) | namespace cv { namespace cuda { namespace device type cuda (line 56) | namespace cuda { namespace device type device (line 56) | namespace device type L1Dist (line 58) | struct L1Dist method L1Dist (line 63) | L1Dist() : mySum(0) {} method reduceIter (line 65) | void reduceIter(int val1, int val2) method __device__ (line 70) | __device__ __forceinline__ void reduceAll(int* smem, int tid) type L1Dist (line 82) | struct L1Dist method L1Dist (line 87) | L1Dist() : mySum(0.0f) {} method reduceIter (line 89) | void reduceIter(float val1, float val2) method __device__ (line 94) | __device__ __forceinline__ void reduceAll(float* smem, int tid) type L2Dist (line 107) | struct L2Dist method L2Dist (line 112) | L2Dist() : mySum(0.0f) {} method reduceIter (line 114) | void reduceIter(float val1, float val2) method __device__ (line 120) | __device__ __forceinline__ void reduceAll(float* smem, int tid) type HammingDist (line 133) | struct HammingDist method HammingDist (line 138) | HammingDist() : mySum(0) {} method reduceIter (line 140) | void reduceIter(int val1, int val2) method __device__ (line 145) | __device__ __forceinline__ void reduceAll(int* smem, int tid) function __device__ (line 160) | __device__ void calcVecDiffGlobal(const T1* vec1, const T2* vec2, ... function __device__ (line 178) | __device__ __forceinline__ void calcVecDiffCached(const T1* vecCac... type VecDiffGlobal (line 186) | struct VecDiffGlobal method VecDiffGlobal (line 188) | explicit __device__ __forceinline__ VecDiffGlobal(const T1* vec1... method __device__ (line 194) | __device__ __forceinline__ void calc(const T2* vec2, int len, Di... type VecDiffCachedRegister (line 203) | struct VecDiffCachedRegister method __device__ (line 205) | __device__ __forceinline__ VecDiffCachedRegister(const T1* vec1,... method __device__ (line 221) | __device__ __forceinline__ void calc(const T2* vec2, int len, Di... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/vec_math.hpp type vec_math_detail (line 60) | namespace vec_math_detail type SatCastHelper (line 62) | struct SatCastHelper type SatCastHelper<1, VecD> (line 63) | struct SatCastHelper<1, VecD> method __device__ (line 65) | static __device__ __forceinline__ VecD cast(const VecS& v) type SatCastHelper<2, VecD> (line 71) | struct SatCastHelper<2, VecD> method __device__ (line 73) | static __device__ __forceinline__ VecD cast(const VecS& v) type SatCastHelper<3, VecD> (line 79) | struct SatCastHelper<3, VecD> method __device__ (line 81) | static __device__ __forceinline__ VecD cast(const VecS& v) type SatCastHelper<4, VecD> (line 87) | struct SatCastHelper<4, VecD> method __device__ (line 89) | static __device__ __forceinline__ VecD cast(const VecS& v) function __device__ (line 96) | static __device__ __forceinline__ VecD saturate_cast_helper(const VecS... function __device__ (line 102) | static __device__ __forceinline__ T saturate_cast(const uchar1& v) {retu... function __device__ (line 103) | static __device__ __forceinline__ T saturate_cast(const char1& v) {retur... function __device__ (line 104) | static __device__ __forceinline__ T saturate_cast(const ushort1& v) {ret... function __device__ (line 105) | static __device__ __forceinline__ T saturate_cast(const short1& v) {retu... function __device__ (line 106) | static __device__ __forceinline__ T saturate_cast(const uint1& v) {retur... function __device__ (line 107) | static __device__ __forceinline__ T saturate_cast(const int1& v) {return... function __device__ (line 108) | static __device__ __forceinline__ T saturate_cast(const float1& v) {retu... function __device__ (line 109) | static __device__ __forceinline__ T saturate_cast(const double1& v) {ret... function __device__ (line 111) | static __device__ __forceinline__ T saturate_cast(const uchar2& v) {retu... function __device__ (line 112) | static __device__ __forceinline__ T saturate_cast(const char2& v) {retur... function __device__ (line 113) | static __device__ __forceinline__ T saturate_cast(const ushort2& v) {ret... function __device__ (line 114) | static __device__ __forceinline__ T saturate_cast(const short2& v) {retu... function __device__ (line 115) | static __device__ __forceinline__ T saturate_cast(const uint2& v) {retur... function __device__ (line 116) | static __device__ __forceinline__ T saturate_cast(const int2& v) {return... function __device__ (line 117) | static __device__ __forceinline__ T saturate_cast(const float2& v) {retu... function __device__ (line 118) | static __device__ __forceinline__ T saturate_cast(const double2& v) {ret... function __device__ (line 120) | static __device__ __forceinline__ T saturate_cast(const uchar3& v) {retu... function __device__ (line 121) | static __device__ __forceinline__ T saturate_cast(const char3& v) {retur... function __device__ (line 122) | static __device__ __forceinline__ T saturate_cast(const ushort3& v) {ret... function __device__ (line 123) | static __device__ __forceinline__ T saturate_cast(const short3& v) {retu... function __device__ (line 124) | static __device__ __forceinline__ T saturate_cast(const uint3& v) {retur... function __device__ (line 125) | static __device__ __forceinline__ T saturate_cast(const int3& v) {return... function __device__ (line 126) | static __device__ __forceinline__ T saturate_cast(const float3& v) {retu... function __device__ (line 127) | static __device__ __forceinline__ T saturate_cast(const double3& v) {ret... function __device__ (line 129) | static __device__ __forceinline__ T saturate_cast(const uchar4& v) {retu... function __device__ (line 130) | static __device__ __forceinline__ T saturate_cast(const char4& v) {retur... function __device__ (line 131) | static __device__ __forceinline__ T saturate_cast(const ushort4& v) {ret... function __device__ (line 132) | static __device__ __forceinline__ T saturate_cast(const short4& v) {retu... function __device__ (line 133) | static __device__ __forceinline__ T saturate_cast(const uint4& v) {retur... function __device__ (line 134) | static __device__ __forceinline__ T saturate_cast(const int4& v) {return... function __device__ (line 135) | static __device__ __forceinline__ T saturate_cast(const float4& v) {retu... function __device__ (line 136) | static __device__ __forceinline__ T saturate_cast(const double4& v) {ret... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/vec_traits.hpp type cv (line 54) | namespace cv { namespace cuda { namespace device type cuda (line 54) | namespace cuda { namespace device type device (line 54) | namespace device type TypeVec (line 56) | struct TypeVec type __align__ (line 58) | struct __align__ function __host__ (line 62) | static __host__ __device__ __forceinline__ uchar8 make_uchar8(ucha... type __align__ (line 67) | struct __align__ function __host__ (line 71) | static __host__ __device__ __forceinline__ char8 make_char8(schar ... type __align__ (line 76) | struct __align__ function __host__ (line 80) | static __host__ __device__ __forceinline__ ushort8 make_ushort8(us... type __align__ (line 85) | struct __align__ function __host__ (line 89) | static __host__ __device__ __forceinline__ short8 make_short8(shor... type __align__ (line 94) | struct __align__ function __host__ (line 98) | static __host__ __device__ __forceinline__ uint8 make_uint8(uint a... type __align__ (line 103) | struct __align__ function __host__ (line 107) | static __host__ __device__ __forceinline__ int8 make_int8(int a0, ... type __align__ (line 112) | struct __align__ function __host__ (line 116) | static __host__ __device__ __forceinline__ float8 make_float8(floa... type double8 (line 121) | struct double8 function __host__ (line 125) | static __host__ __device__ __forceinline__ double8 make_double8(do... type TypeVec (line 154) | struct TypeVec { typedef schar vec_type; } type TypeVec (line 155) | struct TypeVec { typedef char2 vec_type; } type TypeVec (line 156) | struct TypeVec { typedef char3 vec_type; } type TypeVec (line 157) | struct TypeVec { typedef char4 vec_type; } type TypeVec (line 158) | struct TypeVec { typedef char8 vec_type; } type TypeVec (line 160) | struct TypeVec { typedef uchar vec_type; } type TypeVec (line 161) | struct TypeVec { typedef uchar2 vec_type; } type TypeVec (line 162) | struct TypeVec { typedef uchar3 vec_type; } type TypeVec (line 163) | struct TypeVec { typedef uchar4 vec_type; } type TypeVec (line 164) | struct TypeVec { typedef uchar8 vec_type; } type VecTraits (line 166) | struct VecTraits type VecTraits (line 228) | struct VecTraits method all (line 232) | char all(char v) {return v;} method make (line 233) | char make(char x) {return x;} method make (line 234) | char make(const char* x) {return *x;} type VecTraits (line 236) | struct VecTraits method __forceinline__ (line 240) | __forceinline__ schar all(schar v) {return v;} method __forceinline__ (line 241) | __forceinline__ schar make(schar x) {return x;} method __forceinline__ (line 242) | __forceinline__ schar make(const schar* x) {return *x;} type VecTraits (line 244) | struct VecTraits method __forceinline__ (line 248) | __forceinline__ char1 all(schar v) {return make_char1(v);} method __forceinline__ (line 249) | __forceinline__ char1 make(schar x) {return make_char1(x);} method __forceinline__ (line 250) | __forceinline__ char1 make(const schar* v) {return make_char1(v[... type VecTraits (line 252) | struct VecTraits method __forceinline__ (line 256) | __forceinline__ char2 all(schar v) {return make_char2(v, v);} method __forceinline__ (line 257) | __forceinline__ char2 make(schar x, schar y) {return make_char2(... method __forceinline__ (line 258) | __forceinline__ char2 make(const schar* v) {return make_char2(v[... type VecTraits (line 260) | struct VecTraits method __forceinline__ (line 264) | __forceinline__ char3 all(schar v) {return make_char3(v, v, v);} method __forceinline__ (line 265) | __forceinline__ char3 make(schar x, schar y, schar z) {return ma... method __forceinline__ (line 266) | __forceinline__ char3 make(const schar* v) {return make_char3(v[... type VecTraits (line 268) | struct VecTraits method __forceinline__ (line 272) | __forceinline__ char4 all(schar v) {return make_char4(v, v, v, v);} method __forceinline__ (line 273) | __forceinline__ char4 make(schar x, schar y, schar z, schar w) {... method __forceinline__ (line 274) | __forceinline__ char4 make(const schar* v) {return make_char4(v[... type VecTraits (line 276) | struct VecTraits method __forceinline__ (line 280) | __forceinline__ char8 all(schar v) {return make_char8(v, v, v, v... method __forceinline__ (line 281) | __forceinline__ char8 make(schar a0, schar a1, schar a2, schar a... method __forceinline__ (line 282) | __forceinline__ char8 make(const schar* v) {return make_char8(v[... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/warp.hpp type cv (line 52) | namespace cv { namespace cuda { namespace device type cuda (line 52) | namespace cuda { namespace device type device (line 52) | namespace device type Warp (line 54) | struct Warp method laneId (line 64) | unsigned int laneId() method __device__ (line 72) | static __device__ __forceinline__ void fill(It beg, It end, cons... method __device__ (line 79) | static __device__ __forceinline__ OutIt copy(InIt beg, InIt end,... method __device__ (line 87) | static __device__ __forceinline__ OutIt transform(InIt beg, InIt... method __device__ (line 95) | static __device__ __forceinline__ OutIt transform(InIt1 beg1, In... method __device__ (line 107) | static __device__ __forceinline__ T reduce(volatile T *ptr, BinO... method __device__ (line 126) | static __device__ __forceinline__ void yota(OutIt beg, OutIt end... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/warp_reduce.hpp type cv (line 52) | namespace cv { namespace cuda { namespace device type cuda (line 52) | namespace cuda { namespace device type device (line 52) | namespace device function __device__ (line 55) | __device__ __forceinline__ T warp_reduce(volatile T *ptr , const u... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda/warp_shuffle.hpp type cv (line 52) | namespace cv { namespace cuda { namespace device type cuda (line 52) | namespace cuda { namespace device type device (line 52) | namespace device function __device__ (line 60) | __device__ __forceinline__ T shfl(T val, int srcLane, int width = ... function __device__ (line 68) | __device__ __forceinline__ unsigned int shfl(unsigned int val, int... function __device__ (line 76) | __device__ __forceinline__ double shfl(double val, int srcLane, in... function __device__ (line 92) | __device__ __forceinline__ T shfl_down(T val, unsigned int delta, ... function __device__ (line 100) | __device__ __forceinline__ unsigned int shfl_down(unsigned int val... function __device__ (line 108) | __device__ __forceinline__ double shfl_down(double val, unsigned i... function __device__ (line 124) | __device__ __forceinline__ T shfl_up(T val, unsigned int delta, in... function __device__ (line 132) | __device__ __forceinline__ unsigned int shfl_up(unsigned int val, ... function __device__ (line 140) | __device__ __forceinline__ double shfl_up(double val, unsigned int... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda_stream_accessor.hpp type cv (line 57) | namespace cv type cuda (line 59) | namespace cuda type StreamAccessor (line 67) | struct StreamAccessor type EventAccessor (line 75) | struct EventAccessor FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cuda_types.hpp type cv (line 69) | namespace cv type cuda (line 71) | namespace cuda type DevPtr (line 77) | struct DevPtr method __CV_CUDA_HOST_DEVICE__ (line 86) | __CV_CUDA_HOST_DEVICE__ DevPtr() : data(0) {} method __CV_CUDA_HOST_DEVICE__ (line 87) | __CV_CUDA_HOST_DEVICE__ DevPtr(T* data_) : data(data_) {} method __CV_CUDA_HOST_DEVICE__ (line 89) | __CV_CUDA_HOST_DEVICE__ size_t elemSize() const { return elem_size; } method __CV_CUDA_HOST_DEVICE__ (line 90) | __CV_CUDA_HOST_DEVICE__ operator T*() { return data; } method __CV_CUDA_HOST_DEVICE__ (line 91) | __CV_CUDA_HOST_DEVICE__ operator const T*() const { return data; } type PtrSz (line 94) | struct PtrSz : public DevPtr method __CV_CUDA_HOST_DEVICE__ (line 96) | __CV_CUDA_HOST_DEVICE__ PtrSz() : size(0) {} type PtrStep (line 102) | struct PtrStep : public DevPtr method __CV_CUDA_HOST_DEVICE__ (line 104) | __CV_CUDA_HOST_DEVICE__ PtrStep() : step(0) {} method __CV_CUDA_HOST_DEVICE__ (line 109) | __CV_CUDA_HOST_DEVICE__ T* ptr(int y = 0) { return ( ... method __CV_CUDA_HOST_DEVICE__ (line 110) | __CV_CUDA_HOST_DEVICE__ const T* ptr(int y = 0) const { return (co... method __CV_CUDA_HOST_DEVICE__ (line 112) | __CV_CUDA_HOST_DEVICE__ T& operator ()(int y, int x) {... method __CV_CUDA_HOST_DEVICE__ (line 113) | __CV_CUDA_HOST_DEVICE__ const T& operator ()(int y, int x) const {... type PtrStepSz (line 116) | struct PtrStepSz : public PtrStep method PtrStepSz (line 123) | explicit PtrStepSz(const PtrStepSz& d) : PtrStep((T*)d.data,... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cvdef.h function namespace (line 64) | namespace cv { namespace debug_build_guard { } using namespace debug_bui... function namespace (line 139) | namespace cv { type CpuFeatures (line 295) | enum CpuFeatures { type Cv16suf (line 371) | typedef union Cv16suf type Cv32suf (line 381) | typedef union Cv32suf type Cv64suf (line 389) | typedef union Cv64suf function CV_INLINE (line 687) | CV_INLINE int CV_XADD(int* addr, int delta) { int tmp = *addr; *addr += ... function namespace (line 777) | namespace cv { function namespace (line 789) | namespace cv { function namespace (line 801) | namespace cv { function namespace (line 817) | namespace cv FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cvstd.hpp type cv (line 64) | namespace cv function uchar (line 66) | static inline uchar abs(uchar a) { return a; } function ushort (line 67) | static inline ushort abs(ushort a) { return a; } function abs (line 68) | static inline unsigned abs(unsigned a) { return a; } function uint64 (line 69) | static inline uint64 abs(uint64 a) { return a; } class Allocator (line 110) | class Allocator class rebind (line 120) | class rebind { typedef Allocator other; } method Allocator (line 122) | explicit Allocator() {} method Allocator (line 124) | explicit Allocator(Allocator const&) {} method Allocator (line 126) | explicit Allocator(Allocator const&) {} method pointer (line 129) | pointer address(reference r) { return &r; } method const_pointer (line 130) | const_pointer address(const_reference r) { return &r; } method pointer (line 132) | pointer allocate(size_type count, const void* =0) { return reinterpr... method deallocate (line 133) | void deallocate(pointer p, size_type) { fastFree(p); } method construct (line 135) | void construct(pointer p, const _Tp& v) { new(static_cast(p))... method destroy (line 136) | void destroy(pointer p) { p->~_Tp(); } method size_type (line 138) | size_type max_size() const { return cv::max(static_cast<_Tp>(-1)/siz... class CV_EXPORTS (line 150) | class CV_EXPORTS type details (line 157) | namespace details { function char_tolower (line 159) | static inline char char_tolower(char ch) function char_toupper (line 164) | static inline char char_toupper(char ch) function toLowerCase (line 171) | static inline std::string toLowerCase(const std::string& str) function toUpperCase (line 178) | static inline std::string toUpperCase(const std::string& str) type cv (line 83) | namespace cv { function uchar (line 66) | static inline uchar abs(uchar a) { return a; } function ushort (line 67) | static inline ushort abs(ushort a) { return a; } function abs (line 68) | static inline unsigned abs(unsigned a) { return a; } function uint64 (line 69) | static inline uint64 abs(uint64 a) { return a; } class Allocator (line 110) | class Allocator class rebind (line 120) | class rebind { typedef Allocator other; } method Allocator (line 122) | explicit Allocator() {} method Allocator (line 124) | explicit Allocator(Allocator const&) {} method Allocator (line 126) | explicit Allocator(Allocator const&) {} method pointer (line 129) | pointer address(reference r) { return &r; } method const_pointer (line 130) | const_pointer address(const_reference r) { return &r; } method pointer (line 132) | pointer allocate(size_type count, const void* =0) { return reinterpr... method deallocate (line 133) | void deallocate(pointer p, size_type) { fastFree(p); } method construct (line 135) | void construct(pointer p, const _Tp& v) { new(static_cast(p))... method destroy (line 136) | void destroy(pointer p) { p->~_Tp(); } method size_type (line 138) | size_type max_size() const { return cv::max(static_cast<_Tp>(-1)/siz... class CV_EXPORTS (line 150) | class CV_EXPORTS type details (line 157) | namespace details { function char_tolower (line 159) | static inline char char_tolower(char ch) function char_toupper (line 164) | static inline char char_toupper(char ch) function toLowerCase (line 171) | static inline std::string toLowerCase(const std::string& str) function toUpperCase (line 178) | static inline std::string toUpperCase(const std::string& str) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cvstd.inl.hpp type cv (line 58) | namespace cv class DataType< std::complex<_Tp> > (line 61) | class DataType< std::complex<_Tp> > FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/cvstd_wrapper.hpp type cv (line 14) | namespace cv { function makePtr (line 25) | static inline type DefaultDeleter (line 32) | struct DefaultDeleter type sfinae (line 39) | namespace sfinae { type has_parenthesis_operator (line 41) | struct has_parenthesis_operator type has_custom_delete (line 62) | struct has_custom_delete type has_custom_delete, void, T*>::value >::type > (line 68) | struct has_custom_delete method Ptr (line 78) | inline Ptr() CV_NOEXCEPT : std::shared_ptr() {} method Ptr (line 79) | inline Ptr(nullptr_t) CV_NOEXCEPT : std::shared_ptr(nullptr) {} method Ptr (line 80) | inline Ptr(Y* p, D d) : std::shared_ptr(p, d) {} method Ptr (line 81) | inline Ptr(nullptr_t, D d) : std::shared_ptr(nullptr, d) {} method Ptr (line 83) | inline Ptr(const Ptr& r, T* ptr) CV_NOEXCEPT : std::shared_ptr... method Ptr (line 85) | inline Ptr(const Ptr& o) CV_NOEXCEPT : std::shared_ptr(o) {} method Ptr (line 86) | inline Ptr(Ptr&& o) CV_NOEXCEPT : std::shared_ptr(std::move(o)... method Ptr (line 88) | inline Ptr(const Ptr& o) CV_NOEXCEPT : std::shared_ptr(o) {} method Ptr (line 89) | inline Ptr(Ptr&& o) CV_NOEXCEPT : std::shared_ptr(std::move(o)... method Ptr (line 91) | inline Ptr(const std::shared_ptr& o) CV_NOEXCEPT : std::shared_pt... method Ptr (line 92) | inline Ptr(std::shared_ptr&& o) CV_NOEXCEPT : std::shared_ptr(... method Ptr (line 96) | inline Ptr(const std::true_type&, Y* ptr) : std::shared_ptr(ptr, ... method Ptr (line 100) | inline Ptr(const std::false_type&, Y* ptr) : std::shared_ptr(ptr) {} method Ptr (line 103) | inline Ptr(Y* ptr) : Ptr(has_custom_delete(), ptr) {} method reset (line 107) | inline void reset(const std::true_type&, Y* ptr) { std::shared_ptr::reset(has_custom_delete(), pt... method reset (line 117) | void reset(Y* ptr, Deleter d) { std::shared_ptr::reset(ptr, d); } method Ptr (line 121) | Ptr& operator=(const Ptr& o) { std::shared_ptr::operator =(o); re... method Ptr (line 122) | inline Ptr& operator=(const Ptr& o) { std::shared_ptr::operato... method T (line 124) | T* operator->() const CV_NOEXCEPT { return std::shared_ptr::get();} method release (line 128) | inline void release() { std::shared_ptr::reset(); } method empty (line 130) | inline bool empty() const { return std::shared_ptr::get() == null... method staticCast (line 132) | inline method constCast (line 135) | inline method dynamicCast (line 138) | inline function makePtr (line 142) | static inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/detail/async_promise.hpp type cv (line 12) | namespace cv { function AsyncPromise (line 22) | class CV_EXPORTS AsyncPromise FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/directx.hpp type ID3D11Device (line 49) | struct ID3D11Device type ID3D11Texture2D (line 50) | struct ID3D11Texture2D type ID3D10Device (line 54) | struct ID3D10Device type ID3D10Texture2D (line 55) | struct ID3D10Texture2D type IDirect3DDevice9 (line 59) | struct IDirect3DDevice9 type IDirect3DDevice9Ex (line 60) | struct IDirect3DDevice9Ex type IDirect3DSurface9 (line 61) | struct IDirect3DSurface9 type cv (line 65) | namespace cv { namespace directx { type directx (line 65) | namespace directx { type ocl (line 67) | namespace ocl { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/dualquaternion.hpp type cv (line 32) | namespace cv{ class DualQuat (line 36) | class DualQuat function DualQuat (line 146) | class CV_EXPORTS DualQuat{ FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/dualquaternion.inl.hpp type cv (line 36) | namespace cv { function conjugate (line 125) | inline DualQuat conjugate(const DualQuat &dq) function T (line 181) | inline T DualQuat::dot(DualQuat q) const function inv (line 187) | inline DualQuat inv(const DualQuat &dq, QuatAssumeType assumeUni... function exp (line 312) | inline DualQuat exp(const DualQuat &dq) type detail (line 317) | namespace detail { function jacob_exp (line 320) | Matx<_Tp, 4, 4> jacob_exp(const Quat<_Tp> &q) function log (line 344) | DualQuat log(const DualQuat &dq, QuatAssumeType assumeUnit=QUAT_... function power (line 358) | inline DualQuat power(const DualQuat &dq, const T t, QuatAssumeT... function power (line 370) | inline DualQuat power(const DualQuat &p, const DualQuat &q, Q... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/eigen.hpp type cv (line 69) | namespace cv function eigen2cv (line 99) | static inline function cv2eigen (line 131) | static inline function cv2eigen_tensormap (line 175) | static inline function eigen2cv (line 184) | static inline function eigen2cv (line 202) | static inline function cv2eigen (line 216) | static inline function cv2eigen (line 244) | static inline function cv2eigen (line 262) | static inline function cv2eigen (line 290) | static inline function cv2eigen (line 309) | static inline function cv2eigen (line 334) | static inline function cv2eigen (line 355) | static inline function cv2eigen (line 379) | static inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/fast_math.hpp function CV_INLINE (line 199) | CV_INLINE int function CV_INLINE (line 234) | CV_INLINE int cvFloor( double value ) function CV_INLINE (line 254) | CV_INLINE int cvCeil( double value ) function CV_INLINE (line 273) | CV_INLINE int cvIsNaN( double value ) function CV_INLINE (line 291) | CV_INLINE int cvIsInf( double value ) function CV_INLINE (line 311) | CV_INLINE int cvRound(float value) function CV_INLINE (line 338) | CV_INLINE int cvRound( int value ) function CV_INLINE (line 344) | CV_INLINE int cvFloor( float value ) function CV_INLINE (line 358) | CV_INLINE int cvFloor( int value ) function CV_INLINE (line 364) | CV_INLINE int cvCeil( float value ) function CV_INLINE (line 378) | CV_INLINE int cvCeil( int value ) function CV_INLINE (line 384) | CV_INLINE int cvIsNaN( float value ) function CV_INLINE (line 396) | CV_INLINE int cvIsInf( float value ) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/hal.hpp type cv (line 52) | namespace cv { namespace hal { type hal (line 52) | namespace hal { function DFT1D (line 204) | struct CV_EXPORTS DFT1D function DFT2D (line 211) | struct CV_EXPORTS DFT2D function DCT2D (line 220) | struct CV_EXPORTS DCT2D FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/interface.h type uint (line 36) | typedef unsigned int uint; type std (line 38) | typedef std::uint32_t uint; type uint (line 42) | typedef uint32_t uint; type uint (line 45) | typedef unsigned uint; type schar (line 48) | typedef signed char schar; type uchar (line 51) | typedef unsigned char uchar; type ushort (line 52) | typedef unsigned short ushort; type __int64 (line 56) | typedef __int64 int64; type uint64 (line 57) | typedef unsigned __int64 uint64; type int64 (line 61) | typedef int64_t int64; type uint64 (line 62) | typedef uint64_t uint64; FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin.hpp function trailingZeros32 (line 59) | inline unsigned int trailingZeros32(unsigned int value) { type cv (line 89) | namespace cv { type hal (line 91) | namespace hal { type StoreMode (line 93) | enum StoreMode type V_TypeTraits (line 103) | struct V_TypeTraits type V_RegTraits (line 319) | struct V_RegTraits type CV__SIMD_NAMESPACE (line 382) | namespace CV__SIMD_NAMESPACE { function v_uint8 (line 499) | inline v_uint8 vx_setall_u8(uchar v) { return VXPREFIX(_setall_u8)(v... function v_int8 (line 500) | inline v_int8 vx_setall_s8(schar v) { return VXPREFIX(_setall_s8)(v); } function v_uint16 (line 501) | inline v_uint16 vx_setall_u16(ushort v) { return VXPREFIX(_setall_u1... function v_int16 (line 502) | inline v_int16 vx_setall_s16(short v) { return VXPREFIX(_setall_s16)... function v_int32 (line 503) | inline v_int32 vx_setall_s32(int v) { return VXPREFIX(_setall_s32)(v... function v_uint32 (line 504) | inline v_uint32 vx_setall_u32(unsigned v) { return VXPREFIX(_setall_... function v_float32 (line 505) | inline v_float32 vx_setall_f32(float v) { return VXPREFIX(_setall_f3... function v_int64 (line 506) | inline v_int64 vx_setall_s64(int64 v) { return VXPREFIX(_setall_s64)... function v_uint64 (line 507) | inline v_uint64 vx_setall_u64(uint64 v) { return VXPREFIX(_setall_u6... function v_float64 (line 509) | inline v_float64 vx_setall_f64(double v) { return VXPREFIX(_setall_f... function v_uint8 (line 516) | inline v_uint8 vx_setzero_u8() { return VXPREFIX(_setzero_u8)(); } function v_int8 (line 517) | inline v_int8 vx_setzero_s8() { return VXPREFIX(_setzero_s8)(); } function v_uint16 (line 518) | inline v_uint16 vx_setzero_u16() { return VXPREFIX(_setzero_u16)(); } function v_int16 (line 519) | inline v_int16 vx_setzero_s16() { return VXPREFIX(_setzero_s16)(); } function v_int32 (line 520) | inline v_int32 vx_setzero_s32() { return VXPREFIX(_setzero_s32)(); } function v_uint32 (line 521) | inline v_uint32 vx_setzero_u32() { return VXPREFIX(_setzero_u32)(); } function v_float32 (line 522) | inline v_float32 vx_setzero_f32() { return VXPREFIX(_setzero_f32)(); } function v_int64 (line 523) | inline v_int64 vx_setzero_s64() { return VXPREFIX(_setzero_s64)(); } function v_uint64 (line 524) | inline v_uint64 vx_setzero_u64() { return VXPREFIX(_setzero_u64)(); } function v_float64 (line 526) | inline v_float64 vx_setzero_f64() { return VXPREFIX(_setzero_f64)(); } function v_uint8 (line 533) | inline v_uint8 vx_load(const uchar * ptr) { return VXPREFIX(_load)(p... function v_int8 (line 534) | inline v_int8 vx_load(const schar * ptr) { return VXPREFIX(_load)(pt... function v_uint16 (line 535) | inline v_uint16 vx_load(const ushort * ptr) { return VXPREFIX(_load)... function v_int16 (line 536) | inline v_int16 vx_load(const short * ptr) { return VXPREFIX(_load)(p... function v_int32 (line 537) | inline v_int32 vx_load(const int * ptr) { return VXPREFIX(_load)(ptr... function v_uint32 (line 538) | inline v_uint32 vx_load(const unsigned * ptr) { return VXPREFIX(_loa... function v_float32 (line 539) | inline v_float32 vx_load(const float * ptr) { return VXPREFIX(_load)... function v_int64 (line 540) | inline v_int64 vx_load(const int64 * ptr) { return VXPREFIX(_load)(p... function v_uint64 (line 541) | inline v_uint64 vx_load(const uint64 * ptr) { return VXPREFIX(_load)... function v_float64 (line 543) | inline v_float64 vx_load(const double * ptr) { return VXPREFIX(_load... function v_uint8 (line 550) | inline v_uint8 vx_load_aligned(const uchar * ptr) { return VXPREFIX(... function v_int8 (line 551) | inline v_int8 vx_load_aligned(const schar * ptr) { return VXPREFIX(_... function v_uint16 (line 552) | inline v_uint16 vx_load_aligned(const ushort * ptr) { return VXPREFI... function v_int16 (line 553) | inline v_int16 vx_load_aligned(const short * ptr) { return VXPREFIX(... function v_int32 (line 554) | inline v_int32 vx_load_aligned(const int * ptr) { return VXPREFIX(_l... function v_uint32 (line 555) | inline v_uint32 vx_load_aligned(const unsigned * ptr) { return VXPRE... function v_float32 (line 556) | inline v_float32 vx_load_aligned(const float * ptr) { return VXPREFI... function v_int64 (line 557) | inline v_int64 vx_load_aligned(const int64 * ptr) { return VXPREFIX(... function v_uint64 (line 558) | inline v_uint64 vx_load_aligned(const uint64 * ptr) { return VXPREFI... function v_float64 (line 560) | inline v_float64 vx_load_aligned(const double * ptr) { return VXPREF... function v_uint8 (line 567) | inline v_uint8 vx_load_low(const uchar * ptr) { return VXPREFIX(_loa... function v_int8 (line 568) | inline v_int8 vx_load_low(const schar * ptr) { return VXPREFIX(_load... function v_uint16 (line 569) | inline v_uint16 vx_load_low(const ushort * ptr) { return VXPREFIX(_l... function v_int16 (line 570) | inline v_int16 vx_load_low(const short * ptr) { return VXPREFIX(_loa... function v_int32 (line 571) | inline v_int32 vx_load_low(const int * ptr) { return VXPREFIX(_load_... function v_uint32 (line 572) | inline v_uint32 vx_load_low(const unsigned * ptr) { return VXPREFIX(... function v_float32 (line 573) | inline v_float32 vx_load_low(const float * ptr) { return VXPREFIX(_l... function v_int64 (line 574) | inline v_int64 vx_load_low(const int64 * ptr) { return VXPREFIX(_loa... function v_uint64 (line 575) | inline v_uint64 vx_load_low(const uint64 * ptr) { return VXPREFIX(_l... function v_float64 (line 577) | inline v_float64 vx_load_low(const double * ptr) { return VXPREFIX(_... function v_uint8 (line 584) | inline v_uint8 vx_load_halves(const uchar * ptr0, const uchar * ptr1... function v_int8 (line 585) | inline v_int8 vx_load_halves(const schar * ptr0, const schar * ptr1)... function v_uint16 (line 586) | inline v_uint16 vx_load_halves(const ushort * ptr0, const ushort * p... function v_int16 (line 587) | inline v_int16 vx_load_halves(const short * ptr0, const short * ptr1... function v_int32 (line 588) | inline v_int32 vx_load_halves(const int * ptr0, const int * ptr1) { ... function v_uint32 (line 589) | inline v_uint32 vx_load_halves(const unsigned * ptr0, const unsigned... function v_float32 (line 590) | inline v_float32 vx_load_halves(const float * ptr0, const float * pt... function v_int64 (line 591) | inline v_int64 vx_load_halves(const int64 * ptr0, const int64 * ptr1... function v_uint64 (line 592) | inline v_uint64 vx_load_halves(const uint64 * ptr0, const uint64 * p... function v_float64 (line 594) | inline v_float64 vx_load_halves(const double * ptr0, const double * ... function v_uint8 (line 601) | inline v_uint8 vx_lut(const uchar * ptr, const int* idx) { return VX... function v_int8 (line 602) | inline v_int8 vx_lut(const schar * ptr, const int* idx) { return VXP... function v_uint16 (line 603) | inline v_uint16 vx_lut(const ushort * ptr, const int* idx) { return ... function v_int16 (line 604) | inline v_int16 vx_lut(const short* ptr, const int* idx) { return VXP... function v_int32 (line 605) | inline v_int32 vx_lut(const int* ptr, const int* idx) { return VXPRE... function v_uint32 (line 606) | inline v_uint32 vx_lut(const unsigned* ptr, const int* idx) { return... function v_float32 (line 607) | inline v_float32 vx_lut(const float* ptr, const int* idx) { return V... function v_int64 (line 608) | inline v_int64 vx_lut(const int64 * ptr, const int* idx) { return VX... function v_uint64 (line 609) | inline v_uint64 vx_lut(const uint64 * ptr, const int* idx) { return ... function v_float64 (line 611) | inline v_float64 vx_lut(const double* ptr, const int* idx) { return ... function v_uint8 (line 618) | inline v_uint8 vx_lut_pairs(const uchar * ptr, const int* idx) { ret... function v_int8 (line 619) | inline v_int8 vx_lut_pairs(const schar * ptr, const int* idx) { retu... function v_uint16 (line 620) | inline v_uint16 vx_lut_pairs(const ushort * ptr, const int* idx) { r... function v_int16 (line 621) | inline v_int16 vx_lut_pairs(const short* ptr, const int* idx) { retu... function v_int32 (line 622) | inline v_int32 vx_lut_pairs(const int* ptr, const int* idx) { return... function v_uint32 (line 623) | inline v_uint32 vx_lut_pairs(const unsigned* ptr, const int* idx) { ... function v_float32 (line 624) | inline v_float32 vx_lut_pairs(const float* ptr, const int* idx) { re... function v_int64 (line 625) | inline v_int64 vx_lut_pairs(const int64 * ptr, const int* idx) { ret... function v_uint64 (line 626) | inline v_uint64 vx_lut_pairs(const uint64 * ptr, const int* idx) { r... function v_float64 (line 628) | inline v_float64 vx_lut_pairs(const double* ptr, const int* idx) { r... function v_uint8 (line 635) | inline v_uint8 vx_lut_quads(const uchar* ptr, const int* idx) { retu... function v_int8 (line 636) | inline v_int8 vx_lut_quads(const schar* ptr, const int* idx) { retur... function v_uint16 (line 637) | inline v_uint16 vx_lut_quads(const ushort* ptr, const int* idx) { re... function v_int16 (line 638) | inline v_int16 vx_lut_quads(const short* ptr, const int* idx) { retu... function v_int32 (line 639) | inline v_int32 vx_lut_quads(const int* ptr, const int* idx) { return... function v_uint32 (line 640) | inline v_uint32 vx_lut_quads(const unsigned* ptr, const int* idx) { ... function v_float32 (line 641) | inline v_float32 vx_lut_quads(const float* ptr, const int* idx) { re... function v_uint16 (line 647) | inline v_uint16 vx_load_expand(const uchar * ptr) { return VXPREFIX(... function v_int16 (line 648) | inline v_int16 vx_load_expand(const schar * ptr) { return VXPREFIX(_... function v_uint32 (line 649) | inline v_uint32 vx_load_expand(const ushort * ptr) { return VXPREFIX... function v_int32 (line 650) | inline v_int32 vx_load_expand(const short* ptr) { return VXPREFIX(_l... function v_int64 (line 651) | inline v_int64 vx_load_expand(const int* ptr) { return VXPREFIX(_loa... function v_uint64 (line 652) | inline v_uint64 vx_load_expand(const unsigned* ptr) { return VXPREFI... function v_float32 (line 653) | inline v_float32 vx_load_expand(const float16_t * ptr) { return VXPR... function v_uint32 (line 659) | inline v_uint32 vx_load_expand_q(const uchar * ptr) { return VXPREFI... function v_int32 (line 660) | inline v_int32 vx_load_expand_q(const schar * ptr) { return VXPREFIX... function vx_cleanup (line 664) | inline void vx_cleanup() { VXPREFIX(_cleanup)(); } function vx_store (line 670) | static inline function vx_store_aligned (line 673) | static inline type CV__SIMD_NAMESPACE (line 418) | namespace CV__SIMD_NAMESPACE { function v_uint8 (line 499) | inline v_uint8 vx_setall_u8(uchar v) { return VXPREFIX(_setall_u8)(v... function v_int8 (line 500) | inline v_int8 vx_setall_s8(schar v) { return VXPREFIX(_setall_s8)(v); } function v_uint16 (line 501) | inline v_uint16 vx_setall_u16(ushort v) { return VXPREFIX(_setall_u1... function v_int16 (line 502) | inline v_int16 vx_setall_s16(short v) { return VXPREFIX(_setall_s16)... function v_int32 (line 503) | inline v_int32 vx_setall_s32(int v) { return VXPREFIX(_setall_s32)(v... function v_uint32 (line 504) | inline v_uint32 vx_setall_u32(unsigned v) { return VXPREFIX(_setall_... function v_float32 (line 505) | inline v_float32 vx_setall_f32(float v) { return VXPREFIX(_setall_f3... function v_int64 (line 506) | inline v_int64 vx_setall_s64(int64 v) { return VXPREFIX(_setall_s64)... function v_uint64 (line 507) | inline v_uint64 vx_setall_u64(uint64 v) { return VXPREFIX(_setall_u6... function v_float64 (line 509) | inline v_float64 vx_setall_f64(double v) { return VXPREFIX(_setall_f... function v_uint8 (line 516) | inline v_uint8 vx_setzero_u8() { return VXPREFIX(_setzero_u8)(); } function v_int8 (line 517) | inline v_int8 vx_setzero_s8() { return VXPREFIX(_setzero_s8)(); } function v_uint16 (line 518) | inline v_uint16 vx_setzero_u16() { return VXPREFIX(_setzero_u16)(); } function v_int16 (line 519) | inline v_int16 vx_setzero_s16() { return VXPREFIX(_setzero_s16)(); } function v_int32 (line 520) | inline v_int32 vx_setzero_s32() { return VXPREFIX(_setzero_s32)(); } function v_uint32 (line 521) | inline v_uint32 vx_setzero_u32() { return VXPREFIX(_setzero_u32)(); } function v_float32 (line 522) | inline v_float32 vx_setzero_f32() { return VXPREFIX(_setzero_f32)(); } function v_int64 (line 523) | inline v_int64 vx_setzero_s64() { return VXPREFIX(_setzero_s64)(); } function v_uint64 (line 524) | inline v_uint64 vx_setzero_u64() { return VXPREFIX(_setzero_u64)(); } function v_float64 (line 526) | inline v_float64 vx_setzero_f64() { return VXPREFIX(_setzero_f64)(); } function v_uint8 (line 533) | inline v_uint8 vx_load(const uchar * ptr) { return VXPREFIX(_load)(p... function v_int8 (line 534) | inline v_int8 vx_load(const schar * ptr) { return VXPREFIX(_load)(pt... function v_uint16 (line 535) | inline v_uint16 vx_load(const ushort * ptr) { return VXPREFIX(_load)... function v_int16 (line 536) | inline v_int16 vx_load(const short * ptr) { return VXPREFIX(_load)(p... function v_int32 (line 537) | inline v_int32 vx_load(const int * ptr) { return VXPREFIX(_load)(ptr... function v_uint32 (line 538) | inline v_uint32 vx_load(const unsigned * ptr) { return VXPREFIX(_loa... function v_float32 (line 539) | inline v_float32 vx_load(const float * ptr) { return VXPREFIX(_load)... function v_int64 (line 540) | inline v_int64 vx_load(const int64 * ptr) { return VXPREFIX(_load)(p... function v_uint64 (line 541) | inline v_uint64 vx_load(const uint64 * ptr) { return VXPREFIX(_load)... function v_float64 (line 543) | inline v_float64 vx_load(const double * ptr) { return VXPREFIX(_load... function v_uint8 (line 550) | inline v_uint8 vx_load_aligned(const uchar * ptr) { return VXPREFIX(... function v_int8 (line 551) | inline v_int8 vx_load_aligned(const schar * ptr) { return VXPREFIX(_... function v_uint16 (line 552) | inline v_uint16 vx_load_aligned(const ushort * ptr) { return VXPREFI... function v_int16 (line 553) | inline v_int16 vx_load_aligned(const short * ptr) { return VXPREFIX(... function v_int32 (line 554) | inline v_int32 vx_load_aligned(const int * ptr) { return VXPREFIX(_l... function v_uint32 (line 555) | inline v_uint32 vx_load_aligned(const unsigned * ptr) { return VXPRE... function v_float32 (line 556) | inline v_float32 vx_load_aligned(const float * ptr) { return VXPREFI... function v_int64 (line 557) | inline v_int64 vx_load_aligned(const int64 * ptr) { return VXPREFIX(... function v_uint64 (line 558) | inline v_uint64 vx_load_aligned(const uint64 * ptr) { return VXPREFI... function v_float64 (line 560) | inline v_float64 vx_load_aligned(const double * ptr) { return VXPREF... function v_uint8 (line 567) | inline v_uint8 vx_load_low(const uchar * ptr) { return VXPREFIX(_loa... function v_int8 (line 568) | inline v_int8 vx_load_low(const schar * ptr) { return VXPREFIX(_load... function v_uint16 (line 569) | inline v_uint16 vx_load_low(const ushort * ptr) { return VXPREFIX(_l... function v_int16 (line 570) | inline v_int16 vx_load_low(const short * ptr) { return VXPREFIX(_loa... function v_int32 (line 571) | inline v_int32 vx_load_low(const int * ptr) { return VXPREFIX(_load_... function v_uint32 (line 572) | inline v_uint32 vx_load_low(const unsigned * ptr) { return VXPREFIX(... function v_float32 (line 573) | inline v_float32 vx_load_low(const float * ptr) { return VXPREFIX(_l... function v_int64 (line 574) | inline v_int64 vx_load_low(const int64 * ptr) { return VXPREFIX(_loa... function v_uint64 (line 575) | inline v_uint64 vx_load_low(const uint64 * ptr) { return VXPREFIX(_l... function v_float64 (line 577) | inline v_float64 vx_load_low(const double * ptr) { return VXPREFIX(_... function v_uint8 (line 584) | inline v_uint8 vx_load_halves(const uchar * ptr0, const uchar * ptr1... function v_int8 (line 585) | inline v_int8 vx_load_halves(const schar * ptr0, const schar * ptr1)... function v_uint16 (line 586) | inline v_uint16 vx_load_halves(const ushort * ptr0, const ushort * p... function v_int16 (line 587) | inline v_int16 vx_load_halves(const short * ptr0, const short * ptr1... function v_int32 (line 588) | inline v_int32 vx_load_halves(const int * ptr0, const int * ptr1) { ... function v_uint32 (line 589) | inline v_uint32 vx_load_halves(const unsigned * ptr0, const unsigned... function v_float32 (line 590) | inline v_float32 vx_load_halves(const float * ptr0, const float * pt... function v_int64 (line 591) | inline v_int64 vx_load_halves(const int64 * ptr0, const int64 * ptr1... function v_uint64 (line 592) | inline v_uint64 vx_load_halves(const uint64 * ptr0, const uint64 * p... function v_float64 (line 594) | inline v_float64 vx_load_halves(const double * ptr0, const double * ... function v_uint8 (line 601) | inline v_uint8 vx_lut(const uchar * ptr, const int* idx) { return VX... function v_int8 (line 602) | inline v_int8 vx_lut(const schar * ptr, const int* idx) { return VXP... function v_uint16 (line 603) | inline v_uint16 vx_lut(const ushort * ptr, const int* idx) { return ... function v_int16 (line 604) | inline v_int16 vx_lut(const short* ptr, const int* idx) { return VXP... function v_int32 (line 605) | inline v_int32 vx_lut(const int* ptr, const int* idx) { return VXPRE... function v_uint32 (line 606) | inline v_uint32 vx_lut(const unsigned* ptr, const int* idx) { return... function v_float32 (line 607) | inline v_float32 vx_lut(const float* ptr, const int* idx) { return V... function v_int64 (line 608) | inline v_int64 vx_lut(const int64 * ptr, const int* idx) { return VX... function v_uint64 (line 609) | inline v_uint64 vx_lut(const uint64 * ptr, const int* idx) { return ... function v_float64 (line 611) | inline v_float64 vx_lut(const double* ptr, const int* idx) { return ... function v_uint8 (line 618) | inline v_uint8 vx_lut_pairs(const uchar * ptr, const int* idx) { ret... function v_int8 (line 619) | inline v_int8 vx_lut_pairs(const schar * ptr, const int* idx) { retu... function v_uint16 (line 620) | inline v_uint16 vx_lut_pairs(const ushort * ptr, const int* idx) { r... function v_int16 (line 621) | inline v_int16 vx_lut_pairs(const short* ptr, const int* idx) { retu... function v_int32 (line 622) | inline v_int32 vx_lut_pairs(const int* ptr, const int* idx) { return... function v_uint32 (line 623) | inline v_uint32 vx_lut_pairs(const unsigned* ptr, const int* idx) { ... function v_float32 (line 624) | inline v_float32 vx_lut_pairs(const float* ptr, const int* idx) { re... function v_int64 (line 625) | inline v_int64 vx_lut_pairs(const int64 * ptr, const int* idx) { ret... function v_uint64 (line 626) | inline v_uint64 vx_lut_pairs(const uint64 * ptr, const int* idx) { r... function v_float64 (line 628) | inline v_float64 vx_lut_pairs(const double* ptr, const int* idx) { r... function v_uint8 (line 635) | inline v_uint8 vx_lut_quads(const uchar* ptr, const int* idx) { retu... function v_int8 (line 636) | inline v_int8 vx_lut_quads(const schar* ptr, const int* idx) { retur... function v_uint16 (line 637) | inline v_uint16 vx_lut_quads(const ushort* ptr, const int* idx) { re... function v_int16 (line 638) | inline v_int16 vx_lut_quads(const short* ptr, const int* idx) { retu... function v_int32 (line 639) | inline v_int32 vx_lut_quads(const int* ptr, const int* idx) { return... function v_uint32 (line 640) | inline v_uint32 vx_lut_quads(const unsigned* ptr, const int* idx) { ... function v_float32 (line 641) | inline v_float32 vx_lut_quads(const float* ptr, const int* idx) { re... function v_uint16 (line 647) | inline v_uint16 vx_load_expand(const uchar * ptr) { return VXPREFIX(... function v_int16 (line 648) | inline v_int16 vx_load_expand(const schar * ptr) { return VXPREFIX(_... function v_uint32 (line 649) | inline v_uint32 vx_load_expand(const ushort * ptr) { return VXPREFIX... function v_int32 (line 650) | inline v_int32 vx_load_expand(const short* ptr) { return VXPREFIX(_l... function v_int64 (line 651) | inline v_int64 vx_load_expand(const int* ptr) { return VXPREFIX(_loa... function v_uint64 (line 652) | inline v_uint64 vx_load_expand(const unsigned* ptr) { return VXPREFI... function v_float32 (line 653) | inline v_float32 vx_load_expand(const float16_t * ptr) { return VXPR... function v_uint32 (line 659) | inline v_uint32 vx_load_expand_q(const uchar * ptr) { return VXPREFI... function v_int32 (line 660) | inline v_int32 vx_load_expand_q(const schar * ptr) { return VXPREFIX... function vx_cleanup (line 664) | inline void vx_cleanup() { VXPREFIX(_cleanup)(); } function vx_store (line 670) | static inline function vx_store_aligned (line 673) | static inline type CV__SIMD_NAMESPACE (line 458) | namespace CV__SIMD_NAMESPACE { function v_uint8 (line 499) | inline v_uint8 vx_setall_u8(uchar v) { return VXPREFIX(_setall_u8)(v... function v_int8 (line 500) | inline v_int8 vx_setall_s8(schar v) { return VXPREFIX(_setall_s8)(v); } function v_uint16 (line 501) | inline v_uint16 vx_setall_u16(ushort v) { return VXPREFIX(_setall_u1... function v_int16 (line 502) | inline v_int16 vx_setall_s16(short v) { return VXPREFIX(_setall_s16)... function v_int32 (line 503) | inline v_int32 vx_setall_s32(int v) { return VXPREFIX(_setall_s32)(v... function v_uint32 (line 504) | inline v_uint32 vx_setall_u32(unsigned v) { return VXPREFIX(_setall_... function v_float32 (line 505) | inline v_float32 vx_setall_f32(float v) { return VXPREFIX(_setall_f3... function v_int64 (line 506) | inline v_int64 vx_setall_s64(int64 v) { return VXPREFIX(_setall_s64)... function v_uint64 (line 507) | inline v_uint64 vx_setall_u64(uint64 v) { return VXPREFIX(_setall_u6... function v_float64 (line 509) | inline v_float64 vx_setall_f64(double v) { return VXPREFIX(_setall_f... function v_uint8 (line 516) | inline v_uint8 vx_setzero_u8() { return VXPREFIX(_setzero_u8)(); } function v_int8 (line 517) | inline v_int8 vx_setzero_s8() { return VXPREFIX(_setzero_s8)(); } function v_uint16 (line 518) | inline v_uint16 vx_setzero_u16() { return VXPREFIX(_setzero_u16)(); } function v_int16 (line 519) | inline v_int16 vx_setzero_s16() { return VXPREFIX(_setzero_s16)(); } function v_int32 (line 520) | inline v_int32 vx_setzero_s32() { return VXPREFIX(_setzero_s32)(); } function v_uint32 (line 521) | inline v_uint32 vx_setzero_u32() { return VXPREFIX(_setzero_u32)(); } function v_float32 (line 522) | inline v_float32 vx_setzero_f32() { return VXPREFIX(_setzero_f32)(); } function v_int64 (line 523) | inline v_int64 vx_setzero_s64() { return VXPREFIX(_setzero_s64)(); } function v_uint64 (line 524) | inline v_uint64 vx_setzero_u64() { return VXPREFIX(_setzero_u64)(); } function v_float64 (line 526) | inline v_float64 vx_setzero_f64() { return VXPREFIX(_setzero_f64)(); } function v_uint8 (line 533) | inline v_uint8 vx_load(const uchar * ptr) { return VXPREFIX(_load)(p... function v_int8 (line 534) | inline v_int8 vx_load(const schar * ptr) { return VXPREFIX(_load)(pt... function v_uint16 (line 535) | inline v_uint16 vx_load(const ushort * ptr) { return VXPREFIX(_load)... function v_int16 (line 536) | inline v_int16 vx_load(const short * ptr) { return VXPREFIX(_load)(p... function v_int32 (line 537) | inline v_int32 vx_load(const int * ptr) { return VXPREFIX(_load)(ptr... function v_uint32 (line 538) | inline v_uint32 vx_load(const unsigned * ptr) { return VXPREFIX(_loa... function v_float32 (line 539) | inline v_float32 vx_load(const float * ptr) { return VXPREFIX(_load)... function v_int64 (line 540) | inline v_int64 vx_load(const int64 * ptr) { return VXPREFIX(_load)(p... function v_uint64 (line 541) | inline v_uint64 vx_load(const uint64 * ptr) { return VXPREFIX(_load)... function v_float64 (line 543) | inline v_float64 vx_load(const double * ptr) { return VXPREFIX(_load... function v_uint8 (line 550) | inline v_uint8 vx_load_aligned(const uchar * ptr) { return VXPREFIX(... function v_int8 (line 551) | inline v_int8 vx_load_aligned(const schar * ptr) { return VXPREFIX(_... function v_uint16 (line 552) | inline v_uint16 vx_load_aligned(const ushort * ptr) { return VXPREFI... function v_int16 (line 553) | inline v_int16 vx_load_aligned(const short * ptr) { return VXPREFIX(... function v_int32 (line 554) | inline v_int32 vx_load_aligned(const int * ptr) { return VXPREFIX(_l... function v_uint32 (line 555) | inline v_uint32 vx_load_aligned(const unsigned * ptr) { return VXPRE... function v_float32 (line 556) | inline v_float32 vx_load_aligned(const float * ptr) { return VXPREFI... function v_int64 (line 557) | inline v_int64 vx_load_aligned(const int64 * ptr) { return VXPREFIX(... function v_uint64 (line 558) | inline v_uint64 vx_load_aligned(const uint64 * ptr) { return VXPREFI... function v_float64 (line 560) | inline v_float64 vx_load_aligned(const double * ptr) { return VXPREF... function v_uint8 (line 567) | inline v_uint8 vx_load_low(const uchar * ptr) { return VXPREFIX(_loa... function v_int8 (line 568) | inline v_int8 vx_load_low(const schar * ptr) { return VXPREFIX(_load... function v_uint16 (line 569) | inline v_uint16 vx_load_low(const ushort * ptr) { return VXPREFIX(_l... function v_int16 (line 570) | inline v_int16 vx_load_low(const short * ptr) { return VXPREFIX(_loa... function v_int32 (line 571) | inline v_int32 vx_load_low(const int * ptr) { return VXPREFIX(_load_... function v_uint32 (line 572) | inline v_uint32 vx_load_low(const unsigned * ptr) { return VXPREFIX(... function v_float32 (line 573) | inline v_float32 vx_load_low(const float * ptr) { return VXPREFIX(_l... function v_int64 (line 574) | inline v_int64 vx_load_low(const int64 * ptr) { return VXPREFIX(_loa... function v_uint64 (line 575) | inline v_uint64 vx_load_low(const uint64 * ptr) { return VXPREFIX(_l... function v_float64 (line 577) | inline v_float64 vx_load_low(const double * ptr) { return VXPREFIX(_... function v_uint8 (line 584) | inline v_uint8 vx_load_halves(const uchar * ptr0, const uchar * ptr1... function v_int8 (line 585) | inline v_int8 vx_load_halves(const schar * ptr0, const schar * ptr1)... function v_uint16 (line 586) | inline v_uint16 vx_load_halves(const ushort * ptr0, const ushort * p... function v_int16 (line 587) | inline v_int16 vx_load_halves(const short * ptr0, const short * ptr1... function v_int32 (line 588) | inline v_int32 vx_load_halves(const int * ptr0, const int * ptr1) { ... function v_uint32 (line 589) | inline v_uint32 vx_load_halves(const unsigned * ptr0, const unsigned... function v_float32 (line 590) | inline v_float32 vx_load_halves(const float * ptr0, const float * pt... function v_int64 (line 591) | inline v_int64 vx_load_halves(const int64 * ptr0, const int64 * ptr1... function v_uint64 (line 592) | inline v_uint64 vx_load_halves(const uint64 * ptr0, const uint64 * p... function v_float64 (line 594) | inline v_float64 vx_load_halves(const double * ptr0, const double * ... function v_uint8 (line 601) | inline v_uint8 vx_lut(const uchar * ptr, const int* idx) { return VX... function v_int8 (line 602) | inline v_int8 vx_lut(const schar * ptr, const int* idx) { return VXP... function v_uint16 (line 603) | inline v_uint16 vx_lut(const ushort * ptr, const int* idx) { return ... function v_int16 (line 604) | inline v_int16 vx_lut(const short* ptr, const int* idx) { return VXP... function v_int32 (line 605) | inline v_int32 vx_lut(const int* ptr, const int* idx) { return VXPRE... function v_uint32 (line 606) | inline v_uint32 vx_lut(const unsigned* ptr, const int* idx) { return... function v_float32 (line 607) | inline v_float32 vx_lut(const float* ptr, const int* idx) { return V... function v_int64 (line 608) | inline v_int64 vx_lut(const int64 * ptr, const int* idx) { return VX... function v_uint64 (line 609) | inline v_uint64 vx_lut(const uint64 * ptr, const int* idx) { return ... function v_float64 (line 611) | inline v_float64 vx_lut(const double* ptr, const int* idx) { return ... function v_uint8 (line 618) | inline v_uint8 vx_lut_pairs(const uchar * ptr, const int* idx) { ret... function v_int8 (line 619) | inline v_int8 vx_lut_pairs(const schar * ptr, const int* idx) { retu... function v_uint16 (line 620) | inline v_uint16 vx_lut_pairs(const ushort * ptr, const int* idx) { r... function v_int16 (line 621) | inline v_int16 vx_lut_pairs(const short* ptr, const int* idx) { retu... function v_int32 (line 622) | inline v_int32 vx_lut_pairs(const int* ptr, const int* idx) { return... function v_uint32 (line 623) | inline v_uint32 vx_lut_pairs(const unsigned* ptr, const int* idx) { ... function v_float32 (line 624) | inline v_float32 vx_lut_pairs(const float* ptr, const int* idx) { re... function v_int64 (line 625) | inline v_int64 vx_lut_pairs(const int64 * ptr, const int* idx) { ret... function v_uint64 (line 626) | inline v_uint64 vx_lut_pairs(const uint64 * ptr, const int* idx) { r... function v_float64 (line 628) | inline v_float64 vx_lut_pairs(const double* ptr, const int* idx) { r... function v_uint8 (line 635) | inline v_uint8 vx_lut_quads(const uchar* ptr, const int* idx) { retu... function v_int8 (line 636) | inline v_int8 vx_lut_quads(const schar* ptr, const int* idx) { retur... function v_uint16 (line 637) | inline v_uint16 vx_lut_quads(const ushort* ptr, const int* idx) { re... function v_int16 (line 638) | inline v_int16 vx_lut_quads(const short* ptr, const int* idx) { retu... function v_int32 (line 639) | inline v_int32 vx_lut_quads(const int* ptr, const int* idx) { return... function v_uint32 (line 640) | inline v_uint32 vx_lut_quads(const unsigned* ptr, const int* idx) { ... function v_float32 (line 641) | inline v_float32 vx_lut_quads(const float* ptr, const int* idx) { re... function v_uint16 (line 647) | inline v_uint16 vx_load_expand(const uchar * ptr) { return VXPREFIX(... function v_int16 (line 648) | inline v_int16 vx_load_expand(const schar * ptr) { return VXPREFIX(_... function v_uint32 (line 649) | inline v_uint32 vx_load_expand(const ushort * ptr) { return VXPREFIX... function v_int32 (line 650) | inline v_int32 vx_load_expand(const short* ptr) { return VXPREFIX(_l... function v_int64 (line 651) | inline v_int64 vx_load_expand(const int* ptr) { return VXPREFIX(_loa... function v_uint64 (line 652) | inline v_uint64 vx_load_expand(const unsigned* ptr) { return VXPREFI... function v_float32 (line 653) | inline v_float32 vx_load_expand(const float16_t * ptr) { return VXPR... function v_uint32 (line 659) | inline v_uint32 vx_load_expand_q(const uchar * ptr) { return VXPREFI... function v_int32 (line 660) | inline v_int32 vx_load_expand_q(const schar * ptr) { return VXPREFIX... function vx_cleanup (line 664) | inline void vx_cleanup() { VXPREFIX(_cleanup)(); } function vx_store (line 670) | static inline function vx_store_aligned (line 673) | static inline type CV__SIMD_NAMESPACE (line 493) | namespace CV__SIMD_NAMESPACE { function v_uint8 (line 499) | inline v_uint8 vx_setall_u8(uchar v) { return VXPREFIX(_setall_u8)(v... function v_int8 (line 500) | inline v_int8 vx_setall_s8(schar v) { return VXPREFIX(_setall_s8)(v); } function v_uint16 (line 501) | inline v_uint16 vx_setall_u16(ushort v) { return VXPREFIX(_setall_u1... function v_int16 (line 502) | inline v_int16 vx_setall_s16(short v) { return VXPREFIX(_setall_s16)... function v_int32 (line 503) | inline v_int32 vx_setall_s32(int v) { return VXPREFIX(_setall_s32)(v... function v_uint32 (line 504) | inline v_uint32 vx_setall_u32(unsigned v) { return VXPREFIX(_setall_... function v_float32 (line 505) | inline v_float32 vx_setall_f32(float v) { return VXPREFIX(_setall_f3... function v_int64 (line 506) | inline v_int64 vx_setall_s64(int64 v) { return VXPREFIX(_setall_s64)... function v_uint64 (line 507) | inline v_uint64 vx_setall_u64(uint64 v) { return VXPREFIX(_setall_u6... function v_float64 (line 509) | inline v_float64 vx_setall_f64(double v) { return VXPREFIX(_setall_f... function v_uint8 (line 516) | inline v_uint8 vx_setzero_u8() { return VXPREFIX(_setzero_u8)(); } function v_int8 (line 517) | inline v_int8 vx_setzero_s8() { return VXPREFIX(_setzero_s8)(); } function v_uint16 (line 518) | inline v_uint16 vx_setzero_u16() { return VXPREFIX(_setzero_u16)(); } function v_int16 (line 519) | inline v_int16 vx_setzero_s16() { return VXPREFIX(_setzero_s16)(); } function v_int32 (line 520) | inline v_int32 vx_setzero_s32() { return VXPREFIX(_setzero_s32)(); } function v_uint32 (line 521) | inline v_uint32 vx_setzero_u32() { return VXPREFIX(_setzero_u32)(); } function v_float32 (line 522) | inline v_float32 vx_setzero_f32() { return VXPREFIX(_setzero_f32)(); } function v_int64 (line 523) | inline v_int64 vx_setzero_s64() { return VXPREFIX(_setzero_s64)(); } function v_uint64 (line 524) | inline v_uint64 vx_setzero_u64() { return VXPREFIX(_setzero_u64)(); } function v_float64 (line 526) | inline v_float64 vx_setzero_f64() { return VXPREFIX(_setzero_f64)(); } function v_uint8 (line 533) | inline v_uint8 vx_load(const uchar * ptr) { return VXPREFIX(_load)(p... function v_int8 (line 534) | inline v_int8 vx_load(const schar * ptr) { return VXPREFIX(_load)(pt... function v_uint16 (line 535) | inline v_uint16 vx_load(const ushort * ptr) { return VXPREFIX(_load)... function v_int16 (line 536) | inline v_int16 vx_load(const short * ptr) { return VXPREFIX(_load)(p... function v_int32 (line 537) | inline v_int32 vx_load(const int * ptr) { return VXPREFIX(_load)(ptr... function v_uint32 (line 538) | inline v_uint32 vx_load(const unsigned * ptr) { return VXPREFIX(_loa... function v_float32 (line 539) | inline v_float32 vx_load(const float * ptr) { return VXPREFIX(_load)... function v_int64 (line 540) | inline v_int64 vx_load(const int64 * ptr) { return VXPREFIX(_load)(p... function v_uint64 (line 541) | inline v_uint64 vx_load(const uint64 * ptr) { return VXPREFIX(_load)... function v_float64 (line 543) | inline v_float64 vx_load(const double * ptr) { return VXPREFIX(_load... function v_uint8 (line 550) | inline v_uint8 vx_load_aligned(const uchar * ptr) { return VXPREFIX(... function v_int8 (line 551) | inline v_int8 vx_load_aligned(const schar * ptr) { return VXPREFIX(_... function v_uint16 (line 552) | inline v_uint16 vx_load_aligned(const ushort * ptr) { return VXPREFI... function v_int16 (line 553) | inline v_int16 vx_load_aligned(const short * ptr) { return VXPREFIX(... function v_int32 (line 554) | inline v_int32 vx_load_aligned(const int * ptr) { return VXPREFIX(_l... function v_uint32 (line 555) | inline v_uint32 vx_load_aligned(const unsigned * ptr) { return VXPRE... function v_float32 (line 556) | inline v_float32 vx_load_aligned(const float * ptr) { return VXPREFI... function v_int64 (line 557) | inline v_int64 vx_load_aligned(const int64 * ptr) { return VXPREFIX(... function v_uint64 (line 558) | inline v_uint64 vx_load_aligned(const uint64 * ptr) { return VXPREFI... function v_float64 (line 560) | inline v_float64 vx_load_aligned(const double * ptr) { return VXPREF... function v_uint8 (line 567) | inline v_uint8 vx_load_low(const uchar * ptr) { return VXPREFIX(_loa... function v_int8 (line 568) | inline v_int8 vx_load_low(const schar * ptr) { return VXPREFIX(_load... function v_uint16 (line 569) | inline v_uint16 vx_load_low(const ushort * ptr) { return VXPREFIX(_l... function v_int16 (line 570) | inline v_int16 vx_load_low(const short * ptr) { return VXPREFIX(_loa... function v_int32 (line 571) | inline v_int32 vx_load_low(const int * ptr) { return VXPREFIX(_load_... function v_uint32 (line 572) | inline v_uint32 vx_load_low(const unsigned * ptr) { return VXPREFIX(... function v_float32 (line 573) | inline v_float32 vx_load_low(const float * ptr) { return VXPREFIX(_l... function v_int64 (line 574) | inline v_int64 vx_load_low(const int64 * ptr) { return VXPREFIX(_loa... function v_uint64 (line 575) | inline v_uint64 vx_load_low(const uint64 * ptr) { return VXPREFIX(_l... function v_float64 (line 577) | inline v_float64 vx_load_low(const double * ptr) { return VXPREFIX(_... function v_uint8 (line 584) | inline v_uint8 vx_load_halves(const uchar * ptr0, const uchar * ptr1... function v_int8 (line 585) | inline v_int8 vx_load_halves(const schar * ptr0, const schar * ptr1)... function v_uint16 (line 586) | inline v_uint16 vx_load_halves(const ushort * ptr0, const ushort * p... function v_int16 (line 587) | inline v_int16 vx_load_halves(const short * ptr0, const short * ptr1... function v_int32 (line 588) | inline v_int32 vx_load_halves(const int * ptr0, const int * ptr1) { ... function v_uint32 (line 589) | inline v_uint32 vx_load_halves(const unsigned * ptr0, const unsigned... function v_float32 (line 590) | inline v_float32 vx_load_halves(const float * ptr0, const float * pt... function v_int64 (line 591) | inline v_int64 vx_load_halves(const int64 * ptr0, const int64 * ptr1... function v_uint64 (line 592) | inline v_uint64 vx_load_halves(const uint64 * ptr0, const uint64 * p... function v_float64 (line 594) | inline v_float64 vx_load_halves(const double * ptr0, const double * ... function v_uint8 (line 601) | inline v_uint8 vx_lut(const uchar * ptr, const int* idx) { return VX... function v_int8 (line 602) | inline v_int8 vx_lut(const schar * ptr, const int* idx) { return VXP... function v_uint16 (line 603) | inline v_uint16 vx_lut(const ushort * ptr, const int* idx) { return ... function v_int16 (line 604) | inline v_int16 vx_lut(const short* ptr, const int* idx) { return VXP... function v_int32 (line 605) | inline v_int32 vx_lut(const int* ptr, const int* idx) { return VXPRE... function v_uint32 (line 606) | inline v_uint32 vx_lut(const unsigned* ptr, const int* idx) { return... function v_float32 (line 607) | inline v_float32 vx_lut(const float* ptr, const int* idx) { return V... function v_int64 (line 608) | inline v_int64 vx_lut(const int64 * ptr, const int* idx) { return VX... function v_uint64 (line 609) | inline v_uint64 vx_lut(const uint64 * ptr, const int* idx) { return ... function v_float64 (line 611) | inline v_float64 vx_lut(const double* ptr, const int* idx) { return ... function v_uint8 (line 618) | inline v_uint8 vx_lut_pairs(const uchar * ptr, const int* idx) { ret... function v_int8 (line 619) | inline v_int8 vx_lut_pairs(const schar * ptr, const int* idx) { retu... function v_uint16 (line 620) | inline v_uint16 vx_lut_pairs(const ushort * ptr, const int* idx) { r... function v_int16 (line 621) | inline v_int16 vx_lut_pairs(const short* ptr, const int* idx) { retu... function v_int32 (line 622) | inline v_int32 vx_lut_pairs(const int* ptr, const int* idx) { return... function v_uint32 (line 623) | inline v_uint32 vx_lut_pairs(const unsigned* ptr, const int* idx) { ... function v_float32 (line 624) | inline v_float32 vx_lut_pairs(const float* ptr, const int* idx) { re... function v_int64 (line 625) | inline v_int64 vx_lut_pairs(const int64 * ptr, const int* idx) { ret... function v_uint64 (line 626) | inline v_uint64 vx_lut_pairs(const uint64 * ptr, const int* idx) { r... function v_float64 (line 628) | inline v_float64 vx_lut_pairs(const double* ptr, const int* idx) { r... function v_uint8 (line 635) | inline v_uint8 vx_lut_quads(const uchar* ptr, const int* idx) { retu... function v_int8 (line 636) | inline v_int8 vx_lut_quads(const schar* ptr, const int* idx) { retur... function v_uint16 (line 637) | inline v_uint16 vx_lut_quads(const ushort* ptr, const int* idx) { re... function v_int16 (line 638) | inline v_int16 vx_lut_quads(const short* ptr, const int* idx) { retu... function v_int32 (line 639) | inline v_int32 vx_lut_quads(const int* ptr, const int* idx) { return... function v_uint32 (line 640) | inline v_uint32 vx_lut_quads(const unsigned* ptr, const int* idx) { ... function v_float32 (line 641) | inline v_float32 vx_lut_quads(const float* ptr, const int* idx) { re... function v_uint16 (line 647) | inline v_uint16 vx_load_expand(const uchar * ptr) { return VXPREFIX(... function v_int16 (line 648) | inline v_int16 vx_load_expand(const schar * ptr) { return VXPREFIX(_... function v_uint32 (line 649) | inline v_uint32 vx_load_expand(const ushort * ptr) { return VXPREFIX... function v_int32 (line 650) | inline v_int32 vx_load_expand(const short* ptr) { return VXPREFIX(_l... function v_int64 (line 651) | inline v_int64 vx_load_expand(const int* ptr) { return VXPREFIX(_loa... function v_uint64 (line 652) | inline v_uint64 vx_load_expand(const unsigned* ptr) { return VXPREFI... function v_float32 (line 653) | inline v_float32 vx_load_expand(const float16_t * ptr) { return VXPR... function v_uint32 (line 659) | inline v_uint32 vx_load_expand_q(const uchar * ptr) { return VXPREFI... function v_int32 (line 660) | inline v_int32 vx_load_expand_q(const schar * ptr) { return VXPREFIX... function vx_cleanup (line 664) | inline void vx_cleanup() { VXPREFIX(_cleanup)(); } function vx_store (line 670) | static inline function vx_store_aligned (line 673) | static inline type cv (line 271) | namespace cv { type hal (line 91) | namespace hal { type StoreMode (line 93) | enum StoreMode type V_TypeTraits (line 103) | struct V_TypeTraits type V_RegTraits (line 319) | struct V_RegTraits type CV__SIMD_NAMESPACE (line 382) | namespace CV__SIMD_NAMESPACE { function v_uint8 (line 499) | inline v_uint8 vx_setall_u8(uchar v) { return VXPREFIX(_setall_u8)(v... function v_int8 (line 500) | inline v_int8 vx_setall_s8(schar v) { return VXPREFIX(_setall_s8)(v); } function v_uint16 (line 501) | inline v_uint16 vx_setall_u16(ushort v) { return VXPREFIX(_setall_u1... function v_int16 (line 502) | inline v_int16 vx_setall_s16(short v) { return VXPREFIX(_setall_s16)... function v_int32 (line 503) | inline v_int32 vx_setall_s32(int v) { return VXPREFIX(_setall_s32)(v... function v_uint32 (line 504) | inline v_uint32 vx_setall_u32(unsigned v) { return VXPREFIX(_setall_... function v_float32 (line 505) | inline v_float32 vx_setall_f32(float v) { return VXPREFIX(_setall_f3... function v_int64 (line 506) | inline v_int64 vx_setall_s64(int64 v) { return VXPREFIX(_setall_s64)... function v_uint64 (line 507) | inline v_uint64 vx_setall_u64(uint64 v) { return VXPREFIX(_setall_u6... function v_float64 (line 509) | inline v_float64 vx_setall_f64(double v) { return VXPREFIX(_setall_f... function v_uint8 (line 516) | inline v_uint8 vx_setzero_u8() { return VXPREFIX(_setzero_u8)(); } function v_int8 (line 517) | inline v_int8 vx_setzero_s8() { return VXPREFIX(_setzero_s8)(); } function v_uint16 (line 518) | inline v_uint16 vx_setzero_u16() { return VXPREFIX(_setzero_u16)(); } function v_int16 (line 519) | inline v_int16 vx_setzero_s16() { return VXPREFIX(_setzero_s16)(); } function v_int32 (line 520) | inline v_int32 vx_setzero_s32() { return VXPREFIX(_setzero_s32)(); } function v_uint32 (line 521) | inline v_uint32 vx_setzero_u32() { return VXPREFIX(_setzero_u32)(); } function v_float32 (line 522) | inline v_float32 vx_setzero_f32() { return VXPREFIX(_setzero_f32)(); } function v_int64 (line 523) | inline v_int64 vx_setzero_s64() { return VXPREFIX(_setzero_s64)(); } function v_uint64 (line 524) | inline v_uint64 vx_setzero_u64() { return VXPREFIX(_setzero_u64)(); } function v_float64 (line 526) | inline v_float64 vx_setzero_f64() { return VXPREFIX(_setzero_f64)(); } function v_uint8 (line 533) | inline v_uint8 vx_load(const uchar * ptr) { return VXPREFIX(_load)(p... function v_int8 (line 534) | inline v_int8 vx_load(const schar * ptr) { return VXPREFIX(_load)(pt... function v_uint16 (line 535) | inline v_uint16 vx_load(const ushort * ptr) { return VXPREFIX(_load)... function v_int16 (line 536) | inline v_int16 vx_load(const short * ptr) { return VXPREFIX(_load)(p... function v_int32 (line 537) | inline v_int32 vx_load(const int * ptr) { return VXPREFIX(_load)(ptr... function v_uint32 (line 538) | inline v_uint32 vx_load(const unsigned * ptr) { return VXPREFIX(_loa... function v_float32 (line 539) | inline v_float32 vx_load(const float * ptr) { return VXPREFIX(_load)... function v_int64 (line 540) | inline v_int64 vx_load(const int64 * ptr) { return VXPREFIX(_load)(p... function v_uint64 (line 541) | inline v_uint64 vx_load(const uint64 * ptr) { return VXPREFIX(_load)... function v_float64 (line 543) | inline v_float64 vx_load(const double * ptr) { return VXPREFIX(_load... function v_uint8 (line 550) | inline v_uint8 vx_load_aligned(const uchar * ptr) { return VXPREFIX(... function v_int8 (line 551) | inline v_int8 vx_load_aligned(const schar * ptr) { return VXPREFIX(_... function v_uint16 (line 552) | inline v_uint16 vx_load_aligned(const ushort * ptr) { return VXPREFI... function v_int16 (line 553) | inline v_int16 vx_load_aligned(const short * ptr) { return VXPREFIX(... function v_int32 (line 554) | inline v_int32 vx_load_aligned(const int * ptr) { return VXPREFIX(_l... function v_uint32 (line 555) | inline v_uint32 vx_load_aligned(const unsigned * ptr) { return VXPRE... function v_float32 (line 556) | inline v_float32 vx_load_aligned(const float * ptr) { return VXPREFI... function v_int64 (line 557) | inline v_int64 vx_load_aligned(const int64 * ptr) { return VXPREFIX(... function v_uint64 (line 558) | inline v_uint64 vx_load_aligned(const uint64 * ptr) { return VXPREFI... function v_float64 (line 560) | inline v_float64 vx_load_aligned(const double * ptr) { return VXPREF... function v_uint8 (line 567) | inline v_uint8 vx_load_low(const uchar * ptr) { return VXPREFIX(_loa... function v_int8 (line 568) | inline v_int8 vx_load_low(const schar * ptr) { return VXPREFIX(_load... function v_uint16 (line 569) | inline v_uint16 vx_load_low(const ushort * ptr) { return VXPREFIX(_l... function v_int16 (line 570) | inline v_int16 vx_load_low(const short * ptr) { return VXPREFIX(_loa... function v_int32 (line 571) | inline v_int32 vx_load_low(const int * ptr) { return VXPREFIX(_load_... function v_uint32 (line 572) | inline v_uint32 vx_load_low(const unsigned * ptr) { return VXPREFIX(... function v_float32 (line 573) | inline v_float32 vx_load_low(const float * ptr) { return VXPREFIX(_l... function v_int64 (line 574) | inline v_int64 vx_load_low(const int64 * ptr) { return VXPREFIX(_loa... function v_uint64 (line 575) | inline v_uint64 vx_load_low(const uint64 * ptr) { return VXPREFIX(_l... function v_float64 (line 577) | inline v_float64 vx_load_low(const double * ptr) { return VXPREFIX(_... function v_uint8 (line 584) | inline v_uint8 vx_load_halves(const uchar * ptr0, const uchar * ptr1... function v_int8 (line 585) | inline v_int8 vx_load_halves(const schar * ptr0, const schar * ptr1)... function v_uint16 (line 586) | inline v_uint16 vx_load_halves(const ushort * ptr0, const ushort * p... function v_int16 (line 587) | inline v_int16 vx_load_halves(const short * ptr0, const short * ptr1... function v_int32 (line 588) | inline v_int32 vx_load_halves(const int * ptr0, const int * ptr1) { ... function v_uint32 (line 589) | inline v_uint32 vx_load_halves(const unsigned * ptr0, const unsigned... function v_float32 (line 590) | inline v_float32 vx_load_halves(const float * ptr0, const float * pt... function v_int64 (line 591) | inline v_int64 vx_load_halves(const int64 * ptr0, const int64 * ptr1... function v_uint64 (line 592) | inline v_uint64 vx_load_halves(const uint64 * ptr0, const uint64 * p... function v_float64 (line 594) | inline v_float64 vx_load_halves(const double * ptr0, const double * ... function v_uint8 (line 601) | inline v_uint8 vx_lut(const uchar * ptr, const int* idx) { return VX... function v_int8 (line 602) | inline v_int8 vx_lut(const schar * ptr, const int* idx) { return VXP... function v_uint16 (line 603) | inline v_uint16 vx_lut(const ushort * ptr, const int* idx) { return ... function v_int16 (line 604) | inline v_int16 vx_lut(const short* ptr, const int* idx) { return VXP... function v_int32 (line 605) | inline v_int32 vx_lut(const int* ptr, const int* idx) { return VXPRE... function v_uint32 (line 606) | inline v_uint32 vx_lut(const unsigned* ptr, const int* idx) { return... function v_float32 (line 607) | inline v_float32 vx_lut(const float* ptr, const int* idx) { return V... function v_int64 (line 608) | inline v_int64 vx_lut(const int64 * ptr, const int* idx) { return VX... function v_uint64 (line 609) | inline v_uint64 vx_lut(const uint64 * ptr, const int* idx) { return ... function v_float64 (line 611) | inline v_float64 vx_lut(const double* ptr, const int* idx) { return ... function v_uint8 (line 618) | inline v_uint8 vx_lut_pairs(const uchar * ptr, const int* idx) { ret... function v_int8 (line 619) | inline v_int8 vx_lut_pairs(const schar * ptr, const int* idx) { retu... function v_uint16 (line 620) | inline v_uint16 vx_lut_pairs(const ushort * ptr, const int* idx) { r... function v_int16 (line 621) | inline v_int16 vx_lut_pairs(const short* ptr, const int* idx) { retu... function v_int32 (line 622) | inline v_int32 vx_lut_pairs(const int* ptr, const int* idx) { return... function v_uint32 (line 623) | inline v_uint32 vx_lut_pairs(const unsigned* ptr, const int* idx) { ... function v_float32 (line 624) | inline v_float32 vx_lut_pairs(const float* ptr, const int* idx) { re... function v_int64 (line 625) | inline v_int64 vx_lut_pairs(const int64 * ptr, const int* idx) { ret... function v_uint64 (line 626) | inline v_uint64 vx_lut_pairs(const uint64 * ptr, const int* idx) { r... function v_float64 (line 628) | inline v_float64 vx_lut_pairs(const double* ptr, const int* idx) { r... function v_uint8 (line 635) | inline v_uint8 vx_lut_quads(const uchar* ptr, const int* idx) { retu... function v_int8 (line 636) | inline v_int8 vx_lut_quads(const schar* ptr, const int* idx) { retur... function v_uint16 (line 637) | inline v_uint16 vx_lut_quads(const ushort* ptr, const int* idx) { re... function v_int16 (line 638) | inline v_int16 vx_lut_quads(const short* ptr, const int* idx) { retu... function v_int32 (line 639) | inline v_int32 vx_lut_quads(const int* ptr, const int* idx) { return... function v_uint32 (line 640) | inline v_uint32 vx_lut_quads(const unsigned* ptr, const int* idx) { ... function v_float32 (line 641) | inline v_float32 vx_lut_quads(const float* ptr, const int* idx) { re... function v_uint16 (line 647) | inline v_uint16 vx_load_expand(const uchar * ptr) { return VXPREFIX(... function v_int16 (line 648) | inline v_int16 vx_load_expand(const schar * ptr) { return VXPREFIX(_... function v_uint32 (line 649) | inline v_uint32 vx_load_expand(const ushort * ptr) { return VXPREFIX... function v_int32 (line 650) | inline v_int32 vx_load_expand(const short* ptr) { return VXPREFIX(_l... function v_int64 (line 651) | inline v_int64 vx_load_expand(const int* ptr) { return VXPREFIX(_loa... function v_uint64 (line 652) | inline v_uint64 vx_load_expand(const unsigned* ptr) { return VXPREFI... function v_float32 (line 653) | inline v_float32 vx_load_expand(const float16_t * ptr) { return VXPR... function v_uint32 (line 659) | inline v_uint32 vx_load_expand_q(const uchar * ptr) { return VXPREFI... function v_int32 (line 660) | inline v_int32 vx_load_expand_q(const schar * ptr) { return VXPREFIX... function vx_cleanup (line 664) | inline void vx_cleanup() { VXPREFIX(_cleanup)(); } function vx_store (line 670) | static inline function vx_store_aligned (line 673) | static inline type CV__SIMD_NAMESPACE (line 418) | namespace CV__SIMD_NAMESPACE { function v_uint8 (line 499) | inline v_uint8 vx_setall_u8(uchar v) { return VXPREFIX(_setall_u8)(v... function v_int8 (line 500) | inline v_int8 vx_setall_s8(schar v) { return VXPREFIX(_setall_s8)(v); } function v_uint16 (line 501) | inline v_uint16 vx_setall_u16(ushort v) { return VXPREFIX(_setall_u1... function v_int16 (line 502) | inline v_int16 vx_setall_s16(short v) { return VXPREFIX(_setall_s16)... function v_int32 (line 503) | inline v_int32 vx_setall_s32(int v) { return VXPREFIX(_setall_s32)(v... function v_uint32 (line 504) | inline v_uint32 vx_setall_u32(unsigned v) { return VXPREFIX(_setall_... function v_float32 (line 505) | inline v_float32 vx_setall_f32(float v) { return VXPREFIX(_setall_f3... function v_int64 (line 506) | inline v_int64 vx_setall_s64(int64 v) { return VXPREFIX(_setall_s64)... function v_uint64 (line 507) | inline v_uint64 vx_setall_u64(uint64 v) { return VXPREFIX(_setall_u6... function v_float64 (line 509) | inline v_float64 vx_setall_f64(double v) { return VXPREFIX(_setall_f... function v_uint8 (line 516) | inline v_uint8 vx_setzero_u8() { return VXPREFIX(_setzero_u8)(); } function v_int8 (line 517) | inline v_int8 vx_setzero_s8() { return VXPREFIX(_setzero_s8)(); } function v_uint16 (line 518) | inline v_uint16 vx_setzero_u16() { return VXPREFIX(_setzero_u16)(); } function v_int16 (line 519) | inline v_int16 vx_setzero_s16() { return VXPREFIX(_setzero_s16)(); } function v_int32 (line 520) | inline v_int32 vx_setzero_s32() { return VXPREFIX(_setzero_s32)(); } function v_uint32 (line 521) | inline v_uint32 vx_setzero_u32() { return VXPREFIX(_setzero_u32)(); } function v_float32 (line 522) | inline v_float32 vx_setzero_f32() { return VXPREFIX(_setzero_f32)(); } function v_int64 (line 523) | inline v_int64 vx_setzero_s64() { return VXPREFIX(_setzero_s64)(); } function v_uint64 (line 524) | inline v_uint64 vx_setzero_u64() { return VXPREFIX(_setzero_u64)(); } function v_float64 (line 526) | inline v_float64 vx_setzero_f64() { return VXPREFIX(_setzero_f64)(); } function v_uint8 (line 533) | inline v_uint8 vx_load(const uchar * ptr) { return VXPREFIX(_load)(p... function v_int8 (line 534) | inline v_int8 vx_load(const schar * ptr) { return VXPREFIX(_load)(pt... function v_uint16 (line 535) | inline v_uint16 vx_load(const ushort * ptr) { return VXPREFIX(_load)... function v_int16 (line 536) | inline v_int16 vx_load(const short * ptr) { return VXPREFIX(_load)(p... function v_int32 (line 537) | inline v_int32 vx_load(const int * ptr) { return VXPREFIX(_load)(ptr... function v_uint32 (line 538) | inline v_uint32 vx_load(const unsigned * ptr) { return VXPREFIX(_loa... function v_float32 (line 539) | inline v_float32 vx_load(const float * ptr) { return VXPREFIX(_load)... function v_int64 (line 540) | inline v_int64 vx_load(const int64 * ptr) { return VXPREFIX(_load)(p... function v_uint64 (line 541) | inline v_uint64 vx_load(const uint64 * ptr) { return VXPREFIX(_load)... function v_float64 (line 543) | inline v_float64 vx_load(const double * ptr) { return VXPREFIX(_load... function v_uint8 (line 550) | inline v_uint8 vx_load_aligned(const uchar * ptr) { return VXPREFIX(... function v_int8 (line 551) | inline v_int8 vx_load_aligned(const schar * ptr) { return VXPREFIX(_... function v_uint16 (line 552) | inline v_uint16 vx_load_aligned(const ushort * ptr) { return VXPREFI... function v_int16 (line 553) | inline v_int16 vx_load_aligned(const short * ptr) { return VXPREFIX(... function v_int32 (line 554) | inline v_int32 vx_load_aligned(const int * ptr) { return VXPREFIX(_l... function v_uint32 (line 555) | inline v_uint32 vx_load_aligned(const unsigned * ptr) { return VXPRE... function v_float32 (line 556) | inline v_float32 vx_load_aligned(const float * ptr) { return VXPREFI... function v_int64 (line 557) | inline v_int64 vx_load_aligned(const int64 * ptr) { return VXPREFIX(... function v_uint64 (line 558) | inline v_uint64 vx_load_aligned(const uint64 * ptr) { return VXPREFI... function v_float64 (line 560) | inline v_float64 vx_load_aligned(const double * ptr) { return VXPREF... function v_uint8 (line 567) | inline v_uint8 vx_load_low(const uchar * ptr) { return VXPREFIX(_loa... function v_int8 (line 568) | inline v_int8 vx_load_low(const schar * ptr) { return VXPREFIX(_load... function v_uint16 (line 569) | inline v_uint16 vx_load_low(const ushort * ptr) { return VXPREFIX(_l... function v_int16 (line 570) | inline v_int16 vx_load_low(const short * ptr) { return VXPREFIX(_loa... function v_int32 (line 571) | inline v_int32 vx_load_low(const int * ptr) { return VXPREFIX(_load_... function v_uint32 (line 572) | inline v_uint32 vx_load_low(const unsigned * ptr) { return VXPREFIX(... function v_float32 (line 573) | inline v_float32 vx_load_low(const float * ptr) { return VXPREFIX(_l... function v_int64 (line 574) | inline v_int64 vx_load_low(const int64 * ptr) { return VXPREFIX(_loa... function v_uint64 (line 575) | inline v_uint64 vx_load_low(const uint64 * ptr) { return VXPREFIX(_l... function v_float64 (line 577) | inline v_float64 vx_load_low(const double * ptr) { return VXPREFIX(_... function v_uint8 (line 584) | inline v_uint8 vx_load_halves(const uchar * ptr0, const uchar * ptr1... function v_int8 (line 585) | inline v_int8 vx_load_halves(const schar * ptr0, const schar * ptr1)... function v_uint16 (line 586) | inline v_uint16 vx_load_halves(const ushort * ptr0, const ushort * p... function v_int16 (line 587) | inline v_int16 vx_load_halves(const short * ptr0, const short * ptr1... function v_int32 (line 588) | inline v_int32 vx_load_halves(const int * ptr0, const int * ptr1) { ... function v_uint32 (line 589) | inline v_uint32 vx_load_halves(const unsigned * ptr0, const unsigned... function v_float32 (line 590) | inline v_float32 vx_load_halves(const float * ptr0, const float * pt... function v_int64 (line 591) | inline v_int64 vx_load_halves(const int64 * ptr0, const int64 * ptr1... function v_uint64 (line 592) | inline v_uint64 vx_load_halves(const uint64 * ptr0, const uint64 * p... function v_float64 (line 594) | inline v_float64 vx_load_halves(const double * ptr0, const double * ... function v_uint8 (line 601) | inline v_uint8 vx_lut(const uchar * ptr, const int* idx) { return VX... function v_int8 (line 602) | inline v_int8 vx_lut(const schar * ptr, const int* idx) { return VXP... function v_uint16 (line 603) | inline v_uint16 vx_lut(const ushort * ptr, const int* idx) { return ... function v_int16 (line 604) | inline v_int16 vx_lut(const short* ptr, const int* idx) { return VXP... function v_int32 (line 605) | inline v_int32 vx_lut(const int* ptr, const int* idx) { return VXPRE... function v_uint32 (line 606) | inline v_uint32 vx_lut(const unsigned* ptr, const int* idx) { return... function v_float32 (line 607) | inline v_float32 vx_lut(const float* ptr, const int* idx) { return V... function v_int64 (line 608) | inline v_int64 vx_lut(const int64 * ptr, const int* idx) { return VX... function v_uint64 (line 609) | inline v_uint64 vx_lut(const uint64 * ptr, const int* idx) { return ... function v_float64 (line 611) | inline v_float64 vx_lut(const double* ptr, const int* idx) { return ... function v_uint8 (line 618) | inline v_uint8 vx_lut_pairs(const uchar * ptr, const int* idx) { ret... function v_int8 (line 619) | inline v_int8 vx_lut_pairs(const schar * ptr, const int* idx) { retu... function v_uint16 (line 620) | inline v_uint16 vx_lut_pairs(const ushort * ptr, const int* idx) { r... function v_int16 (line 621) | inline v_int16 vx_lut_pairs(const short* ptr, const int* idx) { retu... function v_int32 (line 622) | inline v_int32 vx_lut_pairs(const int* ptr, const int* idx) { return... function v_uint32 (line 623) | inline v_uint32 vx_lut_pairs(const unsigned* ptr, const int* idx) { ... function v_float32 (line 624) | inline v_float32 vx_lut_pairs(const float* ptr, const int* idx) { re... function v_int64 (line 625) | inline v_int64 vx_lut_pairs(const int64 * ptr, const int* idx) { ret... function v_uint64 (line 626) | inline v_uint64 vx_lut_pairs(const uint64 * ptr, const int* idx) { r... function v_float64 (line 628) | inline v_float64 vx_lut_pairs(const double* ptr, const int* idx) { r... function v_uint8 (line 635) | inline v_uint8 vx_lut_quads(const uchar* ptr, const int* idx) { retu... function v_int8 (line 636) | inline v_int8 vx_lut_quads(const schar* ptr, const int* idx) { retur... function v_uint16 (line 637) | inline v_uint16 vx_lut_quads(const ushort* ptr, const int* idx) { re... function v_int16 (line 638) | inline v_int16 vx_lut_quads(const short* ptr, const int* idx) { retu... function v_int32 (line 639) | inline v_int32 vx_lut_quads(const int* ptr, const int* idx) { return... function v_uint32 (line 640) | inline v_uint32 vx_lut_quads(const unsigned* ptr, const int* idx) { ... function v_float32 (line 641) | inline v_float32 vx_lut_quads(const float* ptr, const int* idx) { re... function v_uint16 (line 647) | inline v_uint16 vx_load_expand(const uchar * ptr) { return VXPREFIX(... function v_int16 (line 648) | inline v_int16 vx_load_expand(const schar * ptr) { return VXPREFIX(_... function v_uint32 (line 649) | inline v_uint32 vx_load_expand(const ushort * ptr) { return VXPREFIX... function v_int32 (line 650) | inline v_int32 vx_load_expand(const short* ptr) { return VXPREFIX(_l... function v_int64 (line 651) | inline v_int64 vx_load_expand(const int* ptr) { return VXPREFIX(_loa... function v_uint64 (line 652) | inline v_uint64 vx_load_expand(const unsigned* ptr) { return VXPREFI... function v_float32 (line 653) | inline v_float32 vx_load_expand(const float16_t * ptr) { return VXPR... function v_uint32 (line 659) | inline v_uint32 vx_load_expand_q(const uchar * ptr) { return VXPREFI... function v_int32 (line 660) | inline v_int32 vx_load_expand_q(const schar * ptr) { return VXPREFIX... function vx_cleanup (line 664) | inline void vx_cleanup() { VXPREFIX(_cleanup)(); } function vx_store (line 670) | static inline function vx_store_aligned (line 673) | static inline type CV__SIMD_NAMESPACE (line 458) | namespace CV__SIMD_NAMESPACE { function v_uint8 (line 499) | inline v_uint8 vx_setall_u8(uchar v) { return VXPREFIX(_setall_u8)(v... function v_int8 (line 500) | inline v_int8 vx_setall_s8(schar v) { return VXPREFIX(_setall_s8)(v); } function v_uint16 (line 501) | inline v_uint16 vx_setall_u16(ushort v) { return VXPREFIX(_setall_u1... function v_int16 (line 502) | inline v_int16 vx_setall_s16(short v) { return VXPREFIX(_setall_s16)... function v_int32 (line 503) | inline v_int32 vx_setall_s32(int v) { return VXPREFIX(_setall_s32)(v... function v_uint32 (line 504) | inline v_uint32 vx_setall_u32(unsigned v) { return VXPREFIX(_setall_... function v_float32 (line 505) | inline v_float32 vx_setall_f32(float v) { return VXPREFIX(_setall_f3... function v_int64 (line 506) | inline v_int64 vx_setall_s64(int64 v) { return VXPREFIX(_setall_s64)... function v_uint64 (line 507) | inline v_uint64 vx_setall_u64(uint64 v) { return VXPREFIX(_setall_u6... function v_float64 (line 509) | inline v_float64 vx_setall_f64(double v) { return VXPREFIX(_setall_f... function v_uint8 (line 516) | inline v_uint8 vx_setzero_u8() { return VXPREFIX(_setzero_u8)(); } function v_int8 (line 517) | inline v_int8 vx_setzero_s8() { return VXPREFIX(_setzero_s8)(); } function v_uint16 (line 518) | inline v_uint16 vx_setzero_u16() { return VXPREFIX(_setzero_u16)(); } function v_int16 (line 519) | inline v_int16 vx_setzero_s16() { return VXPREFIX(_setzero_s16)(); } function v_int32 (line 520) | inline v_int32 vx_setzero_s32() { return VXPREFIX(_setzero_s32)(); } function v_uint32 (line 521) | inline v_uint32 vx_setzero_u32() { return VXPREFIX(_setzero_u32)(); } function v_float32 (line 522) | inline v_float32 vx_setzero_f32() { return VXPREFIX(_setzero_f32)(); } function v_int64 (line 523) | inline v_int64 vx_setzero_s64() { return VXPREFIX(_setzero_s64)(); } function v_uint64 (line 524) | inline v_uint64 vx_setzero_u64() { return VXPREFIX(_setzero_u64)(); } function v_float64 (line 526) | inline v_float64 vx_setzero_f64() { return VXPREFIX(_setzero_f64)(); } function v_uint8 (line 533) | inline v_uint8 vx_load(const uchar * ptr) { return VXPREFIX(_load)(p... function v_int8 (line 534) | inline v_int8 vx_load(const schar * ptr) { return VXPREFIX(_load)(pt... function v_uint16 (line 535) | inline v_uint16 vx_load(const ushort * ptr) { return VXPREFIX(_load)... function v_int16 (line 536) | inline v_int16 vx_load(const short * ptr) { return VXPREFIX(_load)(p... function v_int32 (line 537) | inline v_int32 vx_load(const int * ptr) { return VXPREFIX(_load)(ptr... function v_uint32 (line 538) | inline v_uint32 vx_load(const unsigned * ptr) { return VXPREFIX(_loa... function v_float32 (line 539) | inline v_float32 vx_load(const float * ptr) { return VXPREFIX(_load)... function v_int64 (line 540) | inline v_int64 vx_load(const int64 * ptr) { return VXPREFIX(_load)(p... function v_uint64 (line 541) | inline v_uint64 vx_load(const uint64 * ptr) { return VXPREFIX(_load)... function v_float64 (line 543) | inline v_float64 vx_load(const double * ptr) { return VXPREFIX(_load... function v_uint8 (line 550) | inline v_uint8 vx_load_aligned(const uchar * ptr) { return VXPREFIX(... function v_int8 (line 551) | inline v_int8 vx_load_aligned(const schar * ptr) { return VXPREFIX(_... function v_uint16 (line 552) | inline v_uint16 vx_load_aligned(const ushort * ptr) { return VXPREFI... function v_int16 (line 553) | inline v_int16 vx_load_aligned(const short * ptr) { return VXPREFIX(... function v_int32 (line 554) | inline v_int32 vx_load_aligned(const int * ptr) { return VXPREFIX(_l... function v_uint32 (line 555) | inline v_uint32 vx_load_aligned(const unsigned * ptr) { return VXPRE... function v_float32 (line 556) | inline v_float32 vx_load_aligned(const float * ptr) { return VXPREFI... function v_int64 (line 557) | inline v_int64 vx_load_aligned(const int64 * ptr) { return VXPREFIX(... function v_uint64 (line 558) | inline v_uint64 vx_load_aligned(const uint64 * ptr) { return VXPREFI... function v_float64 (line 560) | inline v_float64 vx_load_aligned(const double * ptr) { return VXPREF... function v_uint8 (line 567) | inline v_uint8 vx_load_low(const uchar * ptr) { return VXPREFIX(_loa... function v_int8 (line 568) | inline v_int8 vx_load_low(const schar * ptr) { return VXPREFIX(_load... function v_uint16 (line 569) | inline v_uint16 vx_load_low(const ushort * ptr) { return VXPREFIX(_l... function v_int16 (line 570) | inline v_int16 vx_load_low(const short * ptr) { return VXPREFIX(_loa... function v_int32 (line 571) | inline v_int32 vx_load_low(const int * ptr) { return VXPREFIX(_load_... function v_uint32 (line 572) | inline v_uint32 vx_load_low(const unsigned * ptr) { return VXPREFIX(... function v_float32 (line 573) | inline v_float32 vx_load_low(const float * ptr) { return VXPREFIX(_l... function v_int64 (line 574) | inline v_int64 vx_load_low(const int64 * ptr) { return VXPREFIX(_loa... function v_uint64 (line 575) | inline v_uint64 vx_load_low(const uint64 * ptr) { return VXPREFIX(_l... function v_float64 (line 577) | inline v_float64 vx_load_low(const double * ptr) { return VXPREFIX(_... function v_uint8 (line 584) | inline v_uint8 vx_load_halves(const uchar * ptr0, const uchar * ptr1... function v_int8 (line 585) | inline v_int8 vx_load_halves(const schar * ptr0, const schar * ptr1)... function v_uint16 (line 586) | inline v_uint16 vx_load_halves(const ushort * ptr0, const ushort * p... function v_int16 (line 587) | inline v_int16 vx_load_halves(const short * ptr0, const short * ptr1... function v_int32 (line 588) | inline v_int32 vx_load_halves(const int * ptr0, const int * ptr1) { ... function v_uint32 (line 589) | inline v_uint32 vx_load_halves(const unsigned * ptr0, const unsigned... function v_float32 (line 590) | inline v_float32 vx_load_halves(const float * ptr0, const float * pt... function v_int64 (line 591) | inline v_int64 vx_load_halves(const int64 * ptr0, const int64 * ptr1... function v_uint64 (line 592) | inline v_uint64 vx_load_halves(const uint64 * ptr0, const uint64 * p... function v_float64 (line 594) | inline v_float64 vx_load_halves(const double * ptr0, const double * ... function v_uint8 (line 601) | inline v_uint8 vx_lut(const uchar * ptr, const int* idx) { return VX... function v_int8 (line 602) | inline v_int8 vx_lut(const schar * ptr, const int* idx) { return VXP... function v_uint16 (line 603) | inline v_uint16 vx_lut(const ushort * ptr, const int* idx) { return ... function v_int16 (line 604) | inline v_int16 vx_lut(const short* ptr, const int* idx) { return VXP... function v_int32 (line 605) | inline v_int32 vx_lut(const int* ptr, const int* idx) { return VXPRE... function v_uint32 (line 606) | inline v_uint32 vx_lut(const unsigned* ptr, const int* idx) { return... function v_float32 (line 607) | inline v_float32 vx_lut(const float* ptr, const int* idx) { return V... function v_int64 (line 608) | inline v_int64 vx_lut(const int64 * ptr, const int* idx) { return VX... function v_uint64 (line 609) | inline v_uint64 vx_lut(const uint64 * ptr, const int* idx) { return ... function v_float64 (line 611) | inline v_float64 vx_lut(const double* ptr, const int* idx) { return ... function v_uint8 (line 618) | inline v_uint8 vx_lut_pairs(const uchar * ptr, const int* idx) { ret... function v_int8 (line 619) | inline v_int8 vx_lut_pairs(const schar * ptr, const int* idx) { retu... function v_uint16 (line 620) | inline v_uint16 vx_lut_pairs(const ushort * ptr, const int* idx) { r... function v_int16 (line 621) | inline v_int16 vx_lut_pairs(const short* ptr, const int* idx) { retu... function v_int32 (line 622) | inline v_int32 vx_lut_pairs(const int* ptr, const int* idx) { return... function v_uint32 (line 623) | inline v_uint32 vx_lut_pairs(const unsigned* ptr, const int* idx) { ... function v_float32 (line 624) | inline v_float32 vx_lut_pairs(const float* ptr, const int* idx) { re... function v_int64 (line 625) | inline v_int64 vx_lut_pairs(const int64 * ptr, const int* idx) { ret... function v_uint64 (line 626) | inline v_uint64 vx_lut_pairs(const uint64 * ptr, const int* idx) { r... function v_float64 (line 628) | inline v_float64 vx_lut_pairs(const double* ptr, const int* idx) { r... function v_uint8 (line 635) | inline v_uint8 vx_lut_quads(const uchar* ptr, const int* idx) { retu... function v_int8 (line 636) | inline v_int8 vx_lut_quads(const schar* ptr, const int* idx) { retur... function v_uint16 (line 637) | inline v_uint16 vx_lut_quads(const ushort* ptr, const int* idx) { re... function v_int16 (line 638) | inline v_int16 vx_lut_quads(const short* ptr, const int* idx) { retu... function v_int32 (line 639) | inline v_int32 vx_lut_quads(const int* ptr, const int* idx) { return... function v_uint32 (line 640) | inline v_uint32 vx_lut_quads(const unsigned* ptr, const int* idx) { ... function v_float32 (line 641) | inline v_float32 vx_lut_quads(const float* ptr, const int* idx) { re... function v_uint16 (line 647) | inline v_uint16 vx_load_expand(const uchar * ptr) { return VXPREFIX(... function v_int16 (line 648) | inline v_int16 vx_load_expand(const schar * ptr) { return VXPREFIX(_... function v_uint32 (line 649) | inline v_uint32 vx_load_expand(const ushort * ptr) { return VXPREFIX... function v_int32 (line 650) | inline v_int32 vx_load_expand(const short* ptr) { return VXPREFIX(_l... function v_int64 (line 651) | inline v_int64 vx_load_expand(const int* ptr) { return VXPREFIX(_loa... function v_uint64 (line 652) | inline v_uint64 vx_load_expand(const unsigned* ptr) { return VXPREFI... function v_float32 (line 653) | inline v_float32 vx_load_expand(const float16_t * ptr) { return VXPR... function v_uint32 (line 659) | inline v_uint32 vx_load_expand_q(const uchar * ptr) { return VXPREFI... function v_int32 (line 660) | inline v_int32 vx_load_expand_q(const schar * ptr) { return VXPREFIX... function vx_cleanup (line 664) | inline void vx_cleanup() { VXPREFIX(_cleanup)(); } function vx_store (line 670) | static inline function vx_store_aligned (line 673) | static inline type CV__SIMD_NAMESPACE (line 493) | namespace CV__SIMD_NAMESPACE { function v_uint8 (line 499) | inline v_uint8 vx_setall_u8(uchar v) { return VXPREFIX(_setall_u8)(v... function v_int8 (line 500) | inline v_int8 vx_setall_s8(schar v) { return VXPREFIX(_setall_s8)(v); } function v_uint16 (line 501) | inline v_uint16 vx_setall_u16(ushort v) { return VXPREFIX(_setall_u1... function v_int16 (line 502) | inline v_int16 vx_setall_s16(short v) { return VXPREFIX(_setall_s16)... function v_int32 (line 503) | inline v_int32 vx_setall_s32(int v) { return VXPREFIX(_setall_s32)(v... function v_uint32 (line 504) | inline v_uint32 vx_setall_u32(unsigned v) { return VXPREFIX(_setall_... function v_float32 (line 505) | inline v_float32 vx_setall_f32(float v) { return VXPREFIX(_setall_f3... function v_int64 (line 506) | inline v_int64 vx_setall_s64(int64 v) { return VXPREFIX(_setall_s64)... function v_uint64 (line 507) | inline v_uint64 vx_setall_u64(uint64 v) { return VXPREFIX(_setall_u6... function v_float64 (line 509) | inline v_float64 vx_setall_f64(double v) { return VXPREFIX(_setall_f... function v_uint8 (line 516) | inline v_uint8 vx_setzero_u8() { return VXPREFIX(_setzero_u8)(); } function v_int8 (line 517) | inline v_int8 vx_setzero_s8() { return VXPREFIX(_setzero_s8)(); } function v_uint16 (line 518) | inline v_uint16 vx_setzero_u16() { return VXPREFIX(_setzero_u16)(); } function v_int16 (line 519) | inline v_int16 vx_setzero_s16() { return VXPREFIX(_setzero_s16)(); } function v_int32 (line 520) | inline v_int32 vx_setzero_s32() { return VXPREFIX(_setzero_s32)(); } function v_uint32 (line 521) | inline v_uint32 vx_setzero_u32() { return VXPREFIX(_setzero_u32)(); } function v_float32 (line 522) | inline v_float32 vx_setzero_f32() { return VXPREFIX(_setzero_f32)(); } function v_int64 (line 523) | inline v_int64 vx_setzero_s64() { return VXPREFIX(_setzero_s64)(); } function v_uint64 (line 524) | inline v_uint64 vx_setzero_u64() { return VXPREFIX(_setzero_u64)(); } function v_float64 (line 526) | inline v_float64 vx_setzero_f64() { return VXPREFIX(_setzero_f64)(); } function v_uint8 (line 533) | inline v_uint8 vx_load(const uchar * ptr) { return VXPREFIX(_load)(p... function v_int8 (line 534) | inline v_int8 vx_load(const schar * ptr) { return VXPREFIX(_load)(pt... function v_uint16 (line 535) | inline v_uint16 vx_load(const ushort * ptr) { return VXPREFIX(_load)... function v_int16 (line 536) | inline v_int16 vx_load(const short * ptr) { return VXPREFIX(_load)(p... function v_int32 (line 537) | inline v_int32 vx_load(const int * ptr) { return VXPREFIX(_load)(ptr... function v_uint32 (line 538) | inline v_uint32 vx_load(const unsigned * ptr) { return VXPREFIX(_loa... function v_float32 (line 539) | inline v_float32 vx_load(const float * ptr) { return VXPREFIX(_load)... function v_int64 (line 540) | inline v_int64 vx_load(const int64 * ptr) { return VXPREFIX(_load)(p... function v_uint64 (line 541) | inline v_uint64 vx_load(const uint64 * ptr) { return VXPREFIX(_load)... function v_float64 (line 543) | inline v_float64 vx_load(const double * ptr) { return VXPREFIX(_load... function v_uint8 (line 550) | inline v_uint8 vx_load_aligned(const uchar * ptr) { return VXPREFIX(... function v_int8 (line 551) | inline v_int8 vx_load_aligned(const schar * ptr) { return VXPREFIX(_... function v_uint16 (line 552) | inline v_uint16 vx_load_aligned(const ushort * ptr) { return VXPREFI... function v_int16 (line 553) | inline v_int16 vx_load_aligned(const short * ptr) { return VXPREFIX(... function v_int32 (line 554) | inline v_int32 vx_load_aligned(const int * ptr) { return VXPREFIX(_l... function v_uint32 (line 555) | inline v_uint32 vx_load_aligned(const unsigned * ptr) { return VXPRE... function v_float32 (line 556) | inline v_float32 vx_load_aligned(const float * ptr) { return VXPREFI... function v_int64 (line 557) | inline v_int64 vx_load_aligned(const int64 * ptr) { return VXPREFIX(... function v_uint64 (line 558) | inline v_uint64 vx_load_aligned(const uint64 * ptr) { return VXPREFI... function v_float64 (line 560) | inline v_float64 vx_load_aligned(const double * ptr) { return VXPREF... function v_uint8 (line 567) | inline v_uint8 vx_load_low(const uchar * ptr) { return VXPREFIX(_loa... function v_int8 (line 568) | inline v_int8 vx_load_low(const schar * ptr) { return VXPREFIX(_load... function v_uint16 (line 569) | inline v_uint16 vx_load_low(const ushort * ptr) { return VXPREFIX(_l... function v_int16 (line 570) | inline v_int16 vx_load_low(const short * ptr) { return VXPREFIX(_loa... function v_int32 (line 571) | inline v_int32 vx_load_low(const int * ptr) { return VXPREFIX(_load_... function v_uint32 (line 572) | inline v_uint32 vx_load_low(const unsigned * ptr) { return VXPREFIX(... function v_float32 (line 573) | inline v_float32 vx_load_low(const float * ptr) { return VXPREFIX(_l... function v_int64 (line 574) | inline v_int64 vx_load_low(const int64 * ptr) { return VXPREFIX(_loa... function v_uint64 (line 575) | inline v_uint64 vx_load_low(const uint64 * ptr) { return VXPREFIX(_l... function v_float64 (line 577) | inline v_float64 vx_load_low(const double * ptr) { return VXPREFIX(_... function v_uint8 (line 584) | inline v_uint8 vx_load_halves(const uchar * ptr0, const uchar * ptr1... function v_int8 (line 585) | inline v_int8 vx_load_halves(const schar * ptr0, const schar * ptr1)... function v_uint16 (line 586) | inline v_uint16 vx_load_halves(const ushort * ptr0, const ushort * p... function v_int16 (line 587) | inline v_int16 vx_load_halves(const short * ptr0, const short * ptr1... function v_int32 (line 588) | inline v_int32 vx_load_halves(const int * ptr0, const int * ptr1) { ... function v_uint32 (line 589) | inline v_uint32 vx_load_halves(const unsigned * ptr0, const unsigned... function v_float32 (line 590) | inline v_float32 vx_load_halves(const float * ptr0, const float * pt... function v_int64 (line 591) | inline v_int64 vx_load_halves(const int64 * ptr0, const int64 * ptr1... function v_uint64 (line 592) | inline v_uint64 vx_load_halves(const uint64 * ptr0, const uint64 * p... function v_float64 (line 594) | inline v_float64 vx_load_halves(const double * ptr0, const double * ... function v_uint8 (line 601) | inline v_uint8 vx_lut(const uchar * ptr, const int* idx) { return VX... function v_int8 (line 602) | inline v_int8 vx_lut(const schar * ptr, const int* idx) { return VXP... function v_uint16 (line 603) | inline v_uint16 vx_lut(const ushort * ptr, const int* idx) { return ... function v_int16 (line 604) | inline v_int16 vx_lut(const short* ptr, const int* idx) { return VXP... function v_int32 (line 605) | inline v_int32 vx_lut(const int* ptr, const int* idx) { return VXPRE... function v_uint32 (line 606) | inline v_uint32 vx_lut(const unsigned* ptr, const int* idx) { return... function v_float32 (line 607) | inline v_float32 vx_lut(const float* ptr, const int* idx) { return V... function v_int64 (line 608) | inline v_int64 vx_lut(const int64 * ptr, const int* idx) { return VX... function v_uint64 (line 609) | inline v_uint64 vx_lut(const uint64 * ptr, const int* idx) { return ... function v_float64 (line 611) | inline v_float64 vx_lut(const double* ptr, const int* idx) { return ... function v_uint8 (line 618) | inline v_uint8 vx_lut_pairs(const uchar * ptr, const int* idx) { ret... function v_int8 (line 619) | inline v_int8 vx_lut_pairs(const schar * ptr, const int* idx) { retu... function v_uint16 (line 620) | inline v_uint16 vx_lut_pairs(const ushort * ptr, const int* idx) { r... function v_int16 (line 621) | inline v_int16 vx_lut_pairs(const short* ptr, const int* idx) { retu... function v_int32 (line 622) | inline v_int32 vx_lut_pairs(const int* ptr, const int* idx) { return... function v_uint32 (line 623) | inline v_uint32 vx_lut_pairs(const unsigned* ptr, const int* idx) { ... function v_float32 (line 624) | inline v_float32 vx_lut_pairs(const float* ptr, const int* idx) { re... function v_int64 (line 625) | inline v_int64 vx_lut_pairs(const int64 * ptr, const int* idx) { ret... function v_uint64 (line 626) | inline v_uint64 vx_lut_pairs(const uint64 * ptr, const int* idx) { r... function v_float64 (line 628) | inline v_float64 vx_lut_pairs(const double* ptr, const int* idx) { r... function v_uint8 (line 635) | inline v_uint8 vx_lut_quads(const uchar* ptr, const int* idx) { retu... function v_int8 (line 636) | inline v_int8 vx_lut_quads(const schar* ptr, const int* idx) { retur... function v_uint16 (line 637) | inline v_uint16 vx_lut_quads(const ushort* ptr, const int* idx) { re... function v_int16 (line 638) | inline v_int16 vx_lut_quads(const short* ptr, const int* idx) { retu... function v_int32 (line 639) | inline v_int32 vx_lut_quads(const int* ptr, const int* idx) { return... function v_uint32 (line 640) | inline v_uint32 vx_lut_quads(const unsigned* ptr, const int* idx) { ... function v_float32 (line 641) | inline v_float32 vx_lut_quads(const float* ptr, const int* idx) { re... function v_uint16 (line 647) | inline v_uint16 vx_load_expand(const uchar * ptr) { return VXPREFIX(... function v_int16 (line 648) | inline v_int16 vx_load_expand(const schar * ptr) { return VXPREFIX(_... function v_uint32 (line 649) | inline v_uint32 vx_load_expand(const ushort * ptr) { return VXPREFIX... function v_int32 (line 650) | inline v_int32 vx_load_expand(const short* ptr) { return VXPREFIX(_l... function v_int64 (line 651) | inline v_int64 vx_load_expand(const int* ptr) { return VXPREFIX(_loa... function v_uint64 (line 652) | inline v_uint64 vx_load_expand(const unsigned* ptr) { return VXPREFI... function v_float32 (line 653) | inline v_float32 vx_load_expand(const float16_t * ptr) { return VXPR... function v_uint32 (line 659) | inline v_uint32 vx_load_expand_q(const uchar * ptr) { return VXPREFI... function v_int32 (line 660) | inline v_int32 vx_load_expand_q(const schar * ptr) { return VXPREFIX... function vx_cleanup (line 664) | inline void vx_cleanup() { VXPREFIX(_cleanup)(); } function vx_store (line 670) | static inline function vx_store_aligned (line 673) | static inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin_avx.hpp type cv (line 12) | namespace cv function CV_CPU_OPTIMIZATION_HAL_NAMESPACE_BEGIN (line 17) | CV_CPU_OPTIMIZATION_HAL_NAMESPACE_BEGIN function __m256 (line 24) | inline __m256 _v256_combine(const __m128& lo, const __m128& hi) function __m256d (line 27) | inline __m256d _v256_combine(const __m128d& lo, const __m128d& hi) function _v_cvtsi256_si32 (line 30) | inline int _v_cvtsi256_si32(const __m256i& a) function __m256i (line 33) | inline __m256i _v256_shuffle_odd_64(const __m256i& v) function __m256d (line 36) | inline __m256d _v256_shuffle_odd_64(const __m256d& v) function __m256i (line 40) | inline __m256i _v256_permute2x128(const __m256i& a, const __m256i& b) function __m256 (line 44) | inline __m256 _v256_permute2x128(const __m256& a, const __m256& b) function __m256d (line 48) | inline __m256d _v256_permute2x128(const __m256d& a, const __m256d& b) function _Tpvec (line 52) | inline _Tpvec v256_permute2x128(const _Tpvec& a, const _Tpvec& b) function __m256i (line 56) | inline __m256i _v256_permute4x64(const __m256i& a) function __m256d (line 60) | inline __m256d _v256_permute4x64(const __m256d& a) function _Tpvec (line 64) | inline _Tpvec v256_permute4x64(const _Tpvec& a) function __m128i (line 67) | inline __m128i _v256_extract_high(const __m256i& v) function __m128 (line 70) | inline __m128 _v256_extract_high(const __m256& v) function __m128d (line 73) | inline __m128d _v256_extract_high(const __m256d& v) function __m128i (line 76) | inline __m128i _v256_extract_low(const __m256i& v) function __m128 (line 79) | inline __m128 _v256_extract_low(const __m256& v) function __m128d (line 82) | inline __m128d _v256_extract_low(const __m256d& v) function __m256i (line 85) | inline __m256i _v256_packs_epu32(const __m256i& a, const __m256i& b) function _v256_extract_epi8 (line 94) | inline int _v256_extract_epi8(const __m256i& a) function _v256_extract_epi16 (line 105) | inline int _v256_extract_epi16(const __m256i& a) function _v256_extract_epi32 (line 116) | inline int _v256_extract_epi32(const __m256i& a) function int64 (line 127) | inline int64 _v256_extract_epi64(const __m256i& a) type v_uint8x32 (line 139) | struct v_uint8x32 method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } type v_int8x32 (line 168) | struct v_int8x32 method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } type v_uint16x16 (line 194) | struct v_uint16x16 method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } type v_int16x16 (line 216) | struct v_int16x16 method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } type v_uint32x8 (line 237) | struct v_uint32x8 method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } type v_int32x8 (line 256) | struct v_int32x8 method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } type v_float32x8 (line 274) | struct v_float32x8 method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... type v_uint64x4 (line 292) | struct v_uint64x4 method v_uint64x4 (line 298) | explicit v_uint64x4(__m256i v) : val(v) {} method v_uint64x4 (line 299) | v_uint64x4(uint64 v0, uint64 v1, uint64 v2, uint64 v3) method v_uint64x4 (line 302) | v_uint64x4() {} method uint64 (line 304) | uint64 get0() const type v_int64x4 (line 316) | struct v_int64x4 method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const type v_float64x4 (line 340) | struct v_float64x4 method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_float32x8 (line 487) | inline v_float32x8 v_reinterpret_as_f32(const v_float32x8& a) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float32x8 (line 489) | inline v_float32x8 v_reinterpret_as_f32(const v_float64x4& a) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float64x4 (line 492) | inline v_float64x4 v_reinterpret_as_f64(const v_float64x4& a) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_float64x4 (line 494) | inline v_float64x4 v_reinterpret_as_f64(const v_float32x8& a) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_uint64x4 (line 578) | inline v_uint64x4 v256_blend(const v_uint64x4& a, const v_uint64x4& b) method v_uint64x4 (line 298) | explicit v_uint64x4(__m256i v) : val(v) {} method v_uint64x4 (line 299) | v_uint64x4(uint64 v0, uint64 v1, uint64 v2, uint64 v3) method v_uint64x4 (line 302) | v_uint64x4() {} method uint64 (line 304) | uint64 get0() const function v_int64x4 (line 587) | inline v_int64x4 v256_blend(const v_int64x4& a, const v_int64x4& b) method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const function v256_zip (line 603) | inline void v256_zip(const _Tpvec& a, const _Tpvec& b, _Tpvec& ab0, _T... function _Tpvec (line 610) | inline _Tpvec v256_combine_diagonal(const _Tpvec& a, const _Tpvec& b) function v_float32x8 (line 613) | inline v_float32x8 v256_combine_diagonal(const v_float32x8& a, const v... method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float64x4 (line 616) | inline v_float64x4 v256_combine_diagonal(const v_float64x4& a, const v... method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function _Tpvec (line 620) | inline _Tpvec v256_alignr_128(const _Tpvec& a, const _Tpvec& b) function _Tpvec (line 624) | inline _Tpvec v256_alignr_64(const _Tpvec& a, const _Tpvec& b) function v_float64x4 (line 626) | inline v_float64x4 v256_alignr_64(const v_float64x4& a, const v_float6... method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function _Tpvec (line 631) | inline _Tpvec v256_swap_halves(const _Tpvec& a) function _Tpvec (line 635) | inline _Tpvec v256_reverse_64(const _Tpvec& a) function v_uint8x32 (line 710) | inline v_uint8x32 operator * (const v_uint8x32& a, const v_uint8x32& b) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_int8x32 (line 716) | inline v_int8x32 operator * (const v_int8x32& a, const v_int8x32& b) method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_uint16x16 (line 722) | inline v_uint16x16 operator * (const v_uint16x16& a, const v_uint16x16... method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_int16x16 (line 730) | inline v_int16x16 operator * (const v_int16x16& a, const v_int16x16& b) method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_uint8x32 (line 738) | inline v_uint8x32& operator *= (v_uint8x32& a, const v_uint8x32& b) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_int8x32 (line 740) | inline v_int8x32& operator *= (v_int8x32& a, const v_int8x32& b) method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_uint16x16 (line 742) | inline v_uint16x16& operator *= (v_uint16x16& a, const v_uint16x16& b) method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_int16x16 (line 744) | inline v_int16x16& operator *= (v_int16x16& a, const v_int16x16& b) method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_uint8x32 (line 763) | inline v_uint8x32 v_mul_wrap(const v_uint8x32& a, const v_uint8x32& b) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_int8x32 (line 773) | inline v_int8x32 v_mul_wrap(const v_int8x32& a, const v_int8x32& b) method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_mul_expand (line 779) | inline void v_mul_expand(const v_uint8x32& a, const v_uint8x32& b, function v_mul_expand (line 789) | inline void v_mul_expand(const v_int8x32& a, const v_int8x32& b, function v_mul_expand (line 799) | inline void v_mul_expand(const v_int16x16& a, const v_int16x16& b, function v_mul_expand (line 811) | inline void v_mul_expand(const v_uint16x16& a, const v_uint16x16& b, function v_mul_expand (line 823) | inline void v_mul_expand(const v_uint32x8& a, const v_uint32x8& b, function v_int16x16 (line 831) | inline v_int16x16 v_mul_hi(const v_int16x16& a, const v_int16x16& b) {... method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_uint16x16 (line 832) | inline v_uint16x16 v_mul_hi(const v_uint16x16& a, const v_uint16x16& b... method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function __m256i (line 860) | inline __m256i _mm256_srai_epi64xx(const __m256i a, int imm) function v_float32x8 (line 958) | inline v_float32x8 v_not_nan(const v_float32x8& a) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float64x4 (line 960) | inline v_float64x4 v_not_nan(const v_float64x4& a) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_uint8x32 (line 983) | inline v_uint8x32 v_rotate_left(const v_uint8x32& a, const v_uint8x32& b) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 999) | inline v_uint8x32 v_rotate_right(const v_uint8x32& a, const v_uint8x32... method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 1014) | inline v_uint8x32 v_rotate_left(const v_uint8x32& a) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 1030) | inline v_uint8x32 v_rotate_right(const v_uint8x32& a) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 1079) | inline v_uint8x32 v_reverse(const v_uint8x32 &a) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_int8x32 (line 1088) | inline v_int8x32 v_reverse(const v_int8x32 &a) method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_uint16x16 (line 1091) | inline v_uint16x16 v_reverse(const v_uint16x16 &a) method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_int16x16 (line 1100) | inline v_int16x16 v_reverse(const v_int16x16 &a) method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_uint32x8 (line 1103) | inline v_uint32x8 v_reverse(const v_uint32x8 &a) method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_int32x8 (line 1109) | inline v_int32x8 v_reverse(const v_int32x8 &a) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_float32x8 (line 1112) | inline v_float32x8 v_reverse(const v_float32x8 &a) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_uint64x4 (line 1115) | inline v_uint64x4 v_reverse(const v_uint64x4 &a) method v_uint64x4 (line 298) | explicit v_uint64x4(__m256i v) : val(v) {} method v_uint64x4 (line 299) | v_uint64x4(uint64 v0, uint64 v1, uint64 v2, uint64 v3) method v_uint64x4 (line 302) | v_uint64x4() {} method uint64 (line 304) | uint64 get0() const function v_int64x4 (line 1120) | inline v_int64x4 v_reverse(const v_int64x4 &a) method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const function v_float64x4 (line 1123) | inline v_float64x4 v_reverse(const v_float64x4 &a) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_reduce_sum (line 1129) | inline unsigned v_reduce_sum(const v_uint8x32& a) function v_reduce_sum (line 1135) | inline int v_reduce_sum(const v_int8x32& a) function v_reduce_sum (line 1204) | inline int v_reduce_sum(const v_int32x8& a) function v_reduce_sum (line 1215) | inline unsigned v_reduce_sum(const v_uint32x8& a) function v_reduce_sum (line 1218) | inline int v_reduce_sum(const v_int16x16& a) function v_reduce_sum (line 1220) | inline unsigned v_reduce_sum(const v_uint16x16& a) function v_reduce_sum (line 1223) | inline float v_reduce_sum(const v_float32x8& a) function uint64 (line 1234) | inline uint64 v_reduce_sum(const v_uint64x4& a) function int64 (line 1240) | inline int64 v_reduce_sum(const v_int64x4& a) function v_reduce_sum (line 1246) | inline double v_reduce_sum(const v_float64x4& a) function v_float32x8 (line 1252) | inline v_float32x8 v_reduce_sum4(const v_float32x8& a, const v_float32... method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_reduce_sad (line 1260) | inline unsigned v_reduce_sad(const v_uint8x32& a, const v_uint8x32& b) function v_reduce_sad (line 1266) | inline unsigned v_reduce_sad(const v_int8x32& a, const v_int8x32& b) function v_reduce_sad (line 1273) | inline unsigned v_reduce_sad(const v_uint16x16& a, const v_uint16x16& b) function v_reduce_sad (line 1279) | inline unsigned v_reduce_sad(const v_int16x16& a, const v_int16x16& b) function v_reduce_sad (line 1285) | inline unsigned v_reduce_sad(const v_uint32x8& a, const v_uint32x8& b) function v_reduce_sad (line 1289) | inline unsigned v_reduce_sad(const v_int32x8& a, const v_int32x8& b) function v_reduce_sad (line 1294) | inline float v_reduce_sad(const v_float32x8& a, const v_float32x8& b) function v_uint8x32 (line 1300) | inline v_uint8x32 v_popcount(const v_uint8x32& a) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint16x16 (line 1308) | inline v_uint16x16 v_popcount(const v_uint16x16& a) method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_uint32x8 (line 1314) | inline v_uint32x8 v_popcount(const v_uint32x8& a) method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_uint64x4 (line 1321) | inline v_uint64x4 v_popcount(const v_uint64x4& a) method v_uint64x4 (line 298) | explicit v_uint64x4(__m256i v) : val(v) {} method v_uint64x4 (line 299) | v_uint64x4(uint64 v0, uint64 v1, uint64 v2, uint64 v3) method v_uint64x4 (line 302) | v_uint64x4() {} method uint64 (line 304) | uint64 get0() const function v_uint8x32 (line 1325) | inline v_uint8x32 v_popcount(const v_int8x32& a) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint16x16 (line 1327) | inline v_uint16x16 v_popcount(const v_int16x16& a) method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_uint32x8 (line 1329) | inline v_uint32x8 v_popcount(const v_int32x8& a) method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_uint64x4 (line 1331) | inline v_uint64x4 v_popcount(const v_int64x4& a) method v_uint64x4 (line 298) | explicit v_uint64x4(__m256i v) : val(v) {} method v_uint64x4 (line 299) | v_uint64x4(uint64 v0, uint64 v1, uint64 v2, uint64 v3) method v_uint64x4 (line 302) | v_uint64x4() {} method uint64 (line 304) | uint64 get0() const function v_signmask (line 1335) | inline int v_signmask(const v_int8x32& a) function v_signmask (line 1337) | inline int v_signmask(const v_uint8x32& a) function v_signmask (line 1340) | inline int v_signmask(const v_int16x16& a) function v_signmask (line 1342) | inline int v_signmask(const v_uint16x16& a) function v_signmask (line 1345) | inline int v_signmask(const v_float32x8& a) function v_signmask (line 1347) | inline int v_signmask(const v_float64x4& a) function v_signmask (line 1350) | inline int v_signmask(const v_int32x8& a) function v_signmask (line 1352) | inline int v_signmask(const v_uint32x8& a) function v_signmask (line 1355) | inline int v_signmask(const v_int64x4& a) function v_signmask (line 1357) | inline int v_signmask(const v_uint64x4& a) function v_scan_forward (line 1360) | inline int v_scan_forward(const v_int8x32& a) { return trailingZeros32... function v_scan_forward (line 1361) | inline int v_scan_forward(const v_uint8x32& a) { return trailingZeros3... function v_scan_forward (line 1362) | inline int v_scan_forward(const v_int16x16& a) { return trailingZeros3... function v_scan_forward (line 1363) | inline int v_scan_forward(const v_uint16x16& a) { return trailingZeros... function v_scan_forward (line 1364) | inline int v_scan_forward(const v_int32x8& a) { return trailingZeros32... function v_scan_forward (line 1365) | inline int v_scan_forward(const v_uint32x8& a) { return trailingZeros3... function v_scan_forward (line 1366) | inline int v_scan_forward(const v_float32x8& a) { return trailingZeros... function v_scan_forward (line 1367) | inline int v_scan_forward(const v_int64x4& a) { return trailingZeros32... function v_scan_forward (line 1368) | inline int v_scan_forward(const v_uint64x4& a) { return trailingZeros3... function v_scan_forward (line 1369) | inline int v_scan_forward(const v_float64x4& a) { return trailingZeros... function v_int32x8 (line 1408) | inline v_int32x8 v_fma(const v_int32x8& a, const v_int32x8& b, const v... method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1413) | inline v_int32x8 v_muladd(const v_int32x8& a, const v_int32x8& b, cons... method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_float32x8 (line 1418) | inline v_float32x8 v_invsqrt(const v_float32x8& x) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float64x4 (line 1427) | inline v_float64x4 v_invsqrt(const v_float64x4& x) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_float32x8 (line 1441) | inline v_float32x8 v_abs(const v_float32x8& x) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float64x4 (line 1443) | inline v_float64x4 v_abs(const v_float64x4& x) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_uint8x32 (line 1447) | inline v_uint8x32 v_absdiff(const v_uint8x32& a, const v_uint8x32& b) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint16x16 (line 1449) | inline v_uint16x16 v_absdiff(const v_uint16x16& a, const v_uint16x16& b) method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_uint32x8 (line 1451) | inline v_uint32x8 v_absdiff(const v_uint32x8& a, const v_uint32x8& b) method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_uint8x32 (line 1454) | inline v_uint8x32 v_absdiff(const v_int8x32& a, const v_int8x32& b) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint16x16 (line 1461) | inline v_uint16x16 v_absdiff(const v_int16x16& a, const v_int16x16& b) method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_uint32x8 (line 1464) | inline v_uint32x8 v_absdiff(const v_int32x8& a, const v_int32x8& b) method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_float32x8 (line 1471) | inline v_float32x8 v_absdiff(const v_float32x8& a, const v_float32x8& b) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float64x4 (line 1474) | inline v_float64x4 v_absdiff(const v_float64x4& a, const v_float64x4& b) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_int8x32 (line 1478) | inline v_int8x32 v_absdiffs(const v_int8x32& a, const v_int8x32& b) method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_int16x16 (line 1484) | inline v_int16x16 v_absdiffs(const v_int16x16& a, const v_int16x16& b) method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_int32x8 (line 1490) | inline v_int32x8 v_round(const v_float32x8& a) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1493) | inline v_int32x8 v_round(const v_float64x4& a) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1496) | inline v_int32x8 v_round(const v_float64x4& a, const v_float64x4& b) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1502) | inline v_int32x8 v_trunc(const v_float32x8& a) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1505) | inline v_int32x8 v_trunc(const v_float64x4& a) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1508) | inline v_int32x8 v_floor(const v_float32x8& a) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1511) | inline v_int32x8 v_floor(const v_float64x4& a) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1514) | inline v_int32x8 v_ceil(const v_float32x8& a) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1517) | inline v_int32x8 v_ceil(const v_float64x4& a) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_float32x8 (line 1521) | inline v_float32x8 v_cvt_f32(const v_int32x8& a) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float32x8 (line 1524) | inline v_float32x8 v_cvt_f32(const v_float64x4& a) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float32x8 (line 1527) | inline v_float32x8 v_cvt_f32(const v_float64x4& a, const v_float64x4& b) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float64x4 (line 1533) | inline v_float64x4 v_cvt_f64(const v_int32x8& a) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_float64x4 (line 1536) | inline v_float64x4 v_cvt_f64_high(const v_int32x8& a) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_float64x4 (line 1539) | inline v_float64x4 v_cvt_f64(const v_float32x8& a) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_float64x4 (line 1542) | inline v_float64x4 v_cvt_f64_high(const v_float32x8& a) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_float64x4 (line 1546) | inline v_float64x4 v_cvt_f64(const v_int64x4& v) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_int8x32 (line 1569) | inline v_int8x32 v256_lut(const schar* tab, const int* idx) method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_int8x32 (line 1576) | inline v_int8x32 v256_lut_pairs(const schar* tab, const int* idx) method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_int8x32 (line 1583) | inline v_int8x32 v256_lut_quads(const schar* tab, const int* idx) method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 1587) | inline v_uint8x32 v256_lut(const uchar* tab, const int* idx) { return ... method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 1588) | inline v_uint8x32 v256_lut_pairs(const uchar* tab, const int* idx) { r... method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 1589) | inline v_uint8x32 v256_lut_quads(const uchar* tab, const int* idx) { r... method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_int16x16 (line 1591) | inline v_int16x16 v256_lut(const short* tab, const int* idx) method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_int16x16 (line 1596) | inline v_int16x16 v256_lut_pairs(const short* tab, const int* idx) method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_int16x16 (line 1600) | inline v_int16x16 v256_lut_quads(const short* tab, const int* idx) method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_uint16x16 (line 1608) | inline v_uint16x16 v256_lut(const ushort* tab, const int* idx) { retur... method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_uint16x16 (line 1609) | inline v_uint16x16 v256_lut_pairs(const ushort* tab, const int* idx) {... method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_uint16x16 (line 1610) | inline v_uint16x16 v256_lut_quads(const ushort* tab, const int* idx) {... method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_int32x8 (line 1612) | inline v_int32x8 v256_lut(const int* tab, const int* idx) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1616) | inline v_int32x8 v256_lut_pairs(const int* tab, const int* idx) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1624) | inline v_int32x8 v256_lut_quads(const int* tab, const int* idx) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_uint32x8 (line 1628) | inline v_uint32x8 v256_lut(const unsigned* tab, const int* idx) { retu... method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_uint32x8 (line 1629) | inline v_uint32x8 v256_lut_pairs(const unsigned* tab, const int* idx) ... method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_uint32x8 (line 1630) | inline v_uint32x8 v256_lut_quads(const unsigned* tab, const int* idx) ... method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_int64x4 (line 1632) | inline v_int64x4 v256_lut(const int64* tab, const int* idx) method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const function v_int64x4 (line 1640) | inline v_int64x4 v256_lut_pairs(const int64* tab, const int* idx) method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const function v_uint64x4 (line 1644) | inline v_uint64x4 v256_lut(const uint64* tab, const int* idx) { return... method v_uint64x4 (line 298) | explicit v_uint64x4(__m256i v) : val(v) {} method v_uint64x4 (line 299) | v_uint64x4(uint64 v0, uint64 v1, uint64 v2, uint64 v3) method v_uint64x4 (line 302) | v_uint64x4() {} method uint64 (line 304) | uint64 get0() const function v_uint64x4 (line 1645) | inline v_uint64x4 v256_lut_pairs(const uint64* tab, const int* idx) { ... method v_uint64x4 (line 298) | explicit v_uint64x4(__m256i v) : val(v) {} method v_uint64x4 (line 299) | v_uint64x4(uint64 v0, uint64 v1, uint64 v2, uint64 v3) method v_uint64x4 (line 302) | v_uint64x4() {} method uint64 (line 304) | uint64 get0() const function v_float32x8 (line 1647) | inline v_float32x8 v256_lut(const float* tab, const int* idx) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float32x8 (line 1651) | inline v_float32x8 v256_lut_pairs(const float* tab, const int* idx) { ... method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float32x8 (line 1652) | inline v_float32x8 v256_lut_quads(const float* tab, const int* idx) { ... method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float64x4 (line 1654) | inline v_float64x4 v256_lut(const double* tab, const int* idx) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_float64x4 (line 1658) | inline v_float64x4 v256_lut_pairs(const double* tab, const int* idx) {... method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_int32x8 (line 1660) | inline v_int32x8 v_lut(const int* tab, const v_int32x8& idxvec) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_uint32x8 (line 1665) | inline v_uint32x8 v_lut(const unsigned* tab, const v_int32x8& idxvec) method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_float32x8 (line 1670) | inline v_float32x8 v_lut(const float* tab, const v_int32x8& idxvec) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float64x4 (line 1675) | inline v_float64x4 v_lut(const double* tab, const v_int32x8& idxvec) method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_lut_deinterleave (line 1680) | inline void v_lut_deinterleave(const float* tab, const v_int32x8& idxv... function v_lut_deinterleave (line 1704) | inline void v_lut_deinterleave(const double* tab, const v_int32x8& idx... function v_int8x32 (line 1719) | inline v_int8x32 v_interleave_pairs(const v_int8x32& vec) method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 1723) | inline v_uint8x32 v_interleave_pairs(const v_uint8x32& vec) { return v... method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_int8x32 (line 1724) | inline v_int8x32 v_interleave_quads(const v_int8x32& vec) method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 1728) | inline v_uint8x32 v_interleave_quads(const v_uint8x32& vec) { return v... method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_int16x16 (line 1730) | inline v_int16x16 v_interleave_pairs(const v_int16x16& vec) method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_uint16x16 (line 1734) | inline v_uint16x16 v_interleave_pairs(const v_uint16x16& vec) { return... method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_int16x16 (line 1735) | inline v_int16x16 v_interleave_quads(const v_int16x16& vec) method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_uint16x16 (line 1739) | inline v_uint16x16 v_interleave_quads(const v_uint16x16& vec) { return... method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_int32x8 (line 1741) | inline v_int32x8 v_interleave_pairs(const v_int32x8& vec) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_uint32x8 (line 1745) | inline v_uint32x8 v_interleave_pairs(const v_uint32x8& vec) { return v... method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_float32x8 (line 1746) | inline v_float32x8 v_interleave_pairs(const v_float32x8& vec) { return... method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_int8x32 (line 1748) | inline v_int8x32 v_pack_triplets(const v_int8x32& vec) method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 1753) | inline v_uint8x32 v_pack_triplets(const v_uint8x32& vec) { return v_re... method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_int16x16 (line 1755) | inline v_int16x16 v_pack_triplets(const v_int16x16& vec) method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_uint16x16 (line 1760) | inline v_uint16x16 v_pack_triplets(const v_uint16x16& vec) { return v_... method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_int32x8 (line 1762) | inline v_int32x8 v_pack_triplets(const v_int32x8& vec) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_uint32x8 (line 1766) | inline v_uint32x8 v_pack_triplets(const v_uint32x8& vec) { return v_re... method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_float32x8 (line 1767) | inline v_float32x8 v_pack_triplets(const v_float32x8& vec) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_int32x8 (line 1777) | inline v_int32x8 v_dotprod(const v_int16x16& a, const v_int16x16& b) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1779) | inline v_int32x8 v_dotprod(const v_int16x16& a, const v_int16x16& b, c... method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int64x4 (line 1783) | inline v_int64x4 v_dotprod(const v_int32x8& a, const v_int32x8& b) method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const function v_int64x4 (line 1789) | inline v_int64x4 v_dotprod(const v_int32x8& a, const v_int32x8& b, con... method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const function v_uint32x8 (line 1793) | inline v_uint32x8 v_dotprod_expand(const v_uint8x32& a, const v_uint8x... method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_uint32x8 (line 1806) | inline v_uint32x8 v_dotprod_expand(const v_uint8x32& a, const v_uint8x... method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_int32x8 (line 1809) | inline v_int32x8 v_dotprod_expand(const v_int8x32& a, const v_int8x32& b) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1821) | inline v_int32x8 v_dotprod_expand(const v_int8x32& a, const v_int8x32&... method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_uint64x4 (line 1825) | inline v_uint64x4 v_dotprod_expand(const v_uint16x16& a, const v_uint1... method v_uint64x4 (line 298) | explicit v_uint64x4(__m256i v) : val(v) {} method v_uint64x4 (line 299) | v_uint64x4(uint64 v0, uint64 v1, uint64 v2, uint64 v3) method v_uint64x4 (line 302) | v_uint64x4() {} method uint64 (line 304) | uint64 get0() const function v_uint64x4 (line 1845) | inline v_uint64x4 v_dotprod_expand(const v_uint16x16& a, const v_uint1... method v_uint64x4 (line 298) | explicit v_uint64x4(__m256i v) : val(v) {} method v_uint64x4 (line 299) | v_uint64x4(uint64 v0, uint64 v1, uint64 v2, uint64 v3) method v_uint64x4 (line 302) | v_uint64x4() {} method uint64 (line 304) | uint64 get0() const function v_int64x4 (line 1848) | inline v_int64x4 v_dotprod_expand(const v_int16x16& a, const v_int16x1... method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const function v_int64x4 (line 1861) | inline v_int64x4 v_dotprod_expand(const v_int16x16& a, const v_int16x1... method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const function v_float64x4 (line 1865) | inline v_float64x4 v_dotprod_expand(const v_int32x8& a, const v_int32x... method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_float64x4 (line 1867) | inline v_float64x4 v_dotprod_expand(const v_int32x8& a, const v_int32x... method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_int32x8 (line 1873) | inline v_int32x8 v_dotprod_fast(const v_int16x16& a, const v_int16x16& b) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1875) | inline v_int32x8 v_dotprod_fast(const v_int16x16& a, const v_int16x16&... method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int64x4 (line 1879) | inline v_int64x4 v_dotprod_fast(const v_int32x8& a, const v_int32x8& b) method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const function v_int64x4 (line 1881) | inline v_int64x4 v_dotprod_fast(const v_int32x8& a, const v_int32x8& b... method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const function v_uint32x8 (line 1885) | inline v_uint32x8 v_dotprod_expand_fast(const v_uint8x32& a, const v_u... method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_uint32x8 (line 1887) | inline v_uint32x8 v_dotprod_expand_fast(const v_uint8x32& a, const v_u... method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_int32x8 (line 1890) | inline v_int32x8 v_dotprod_expand_fast(const v_int8x32& a, const v_int... method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_int32x8 (line 1892) | inline v_int32x8 v_dotprod_expand_fast(const v_int8x32& a, const v_int... method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_uint64x4 (line 1896) | inline v_uint64x4 v_dotprod_expand_fast(const v_uint16x16& a, const v_... method v_uint64x4 (line 298) | explicit v_uint64x4(__m256i v) : val(v) {} method v_uint64x4 (line 299) | v_uint64x4(uint64 v0, uint64 v1, uint64 v2, uint64 v3) method v_uint64x4 (line 302) | v_uint64x4() {} method uint64 (line 304) | uint64 get0() const function v_uint64x4 (line 1913) | inline v_uint64x4 v_dotprod_expand_fast(const v_uint16x16& a, const v_... method v_uint64x4 (line 298) | explicit v_uint64x4(__m256i v) : val(v) {} method v_uint64x4 (line 299) | v_uint64x4(uint64 v0, uint64 v1, uint64 v2, uint64 v3) method v_uint64x4 (line 302) | v_uint64x4() {} method uint64 (line 304) | uint64 get0() const function v_int64x4 (line 1916) | inline v_int64x4 v_dotprod_expand_fast(const v_int16x16& a, const v_in... method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const function v_int64x4 (line 1924) | inline v_int64x4 v_dotprod_expand_fast(const v_int16x16& a, const v_in... method v_int64x4 (line 322) | explicit v_int64x4(__m256i v) : val(v) {} method v_int64x4 (line 323) | v_int64x4(int64 v0, int64 v1, int64 v2, int64 v3) method v_int64x4 (line 326) | v_int64x4() {} method int64 (line 328) | int64 get0() const function v_float64x4 (line 1928) | inline v_float64x4 v_dotprod_expand_fast(const v_int32x8& a, const v_i... method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_float64x4 (line 1930) | inline v_float64x4 v_dotprod_expand_fast(const v_int32x8& a, const v_i... method v_float64x4 (line 346) | explicit v_float64x4(__m256d v) : val(v) {} method v_float64x4 (line 347) | v_float64x4(double v0, double v1, double v2, double v3) method v_float64x4 (line 350) | v_float64x4() {} method get0 (line 352) | double get0() const { return _mm_cvtsd_f64(_mm256_castpd256_pd128(va... function v_float32x8 (line 1936) | inline v_float32x8 v_matmul(const v_float32x8& v, const v_float32x8& m0, method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_float32x8 (line 1947) | inline v_float32x8 v_matmuladd(const v_float32x8& v, const v_float32x8... method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_int8x32 (line 2014) | inline v_int8x32 v_pack(const v_int16x16& a, const v_int16x16& b) method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 2017) | inline v_uint8x32 v_pack(const v_uint16x16& a, const v_uint16x16& b) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 2025) | inline v_uint8x32 v_pack_u(const v_int16x16& a, const v_int16x16& b) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_pack_store (line 2030) | inline void v_pack_store(schar* ptr, const v_int16x16& a) function v_pack_store (line 2033) | inline void v_pack_store(uchar* ptr, const v_uint16x16& a) function v_pack_u_store (line 2041) | inline void v_pack_u_store(uchar* ptr, const v_int16x16& a) function v_uint8x32 (line 2044) | inline method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_rshr_pack_store (line 2053) | inline function v_uint8x32 (line 2060) | inline method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_rshr_pack_u_store (line 2067) | inline function v_int8x32 (line 2074) | inline method v_int8x32 (line 174) | explicit v_int8x32(__m256i v) : val(v) {} method v_int8x32 (line 175) | v_int8x32(schar v0, schar v1, schar v2, schar v3, method v_int8x32 (line 189) | v_int8x32() {} method schar (line 191) | schar get0() const { return (schar)_v_cvtsi256_si32(val); } function v_rshr_pack_store (line 2081) | inline function v_int16x16 (line 2089) | inline v_int16x16 v_pack(const v_int32x8& a, const v_int32x8& b) method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_uint16x16 (line 2092) | inline v_uint16x16 v_pack(const v_uint32x8& a, const v_uint32x8& b) method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_uint16x16 (line 2095) | inline v_uint16x16 v_pack_u(const v_int32x8& a, const v_int32x8& b) method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_pack_store (line 2098) | inline void v_pack_store(short* ptr, const v_int32x8& a) function v_pack_store (line 2101) | inline void v_pack_store(ushort* ptr, const v_uint32x8& a) function v_pack_u_store (line 2109) | inline void v_pack_u_store(ushort* ptr, const v_int32x8& a) function v_uint16x16 (line 2113) | inline method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_rshr_pack_store (line 2122) | inline function v_uint16x16 (line 2129) | inline method v_uint16x16 (line 200) | explicit v_uint16x16(__m256i v) : val(v) {} method v_uint16x16 (line 201) | v_uint16x16(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x16 (line 211) | v_uint16x16() {} method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi256_si32(val); } function v_rshr_pack_u_store (line 2136) | inline function v_int16x16 (line 2143) | inline method v_int16x16 (line 222) | explicit v_int16x16(__m256i v) : val(v) {} method v_int16x16 (line 223) | v_int16x16(short v0, short v1, short v2, short v3, method v_int16x16 (line 232) | v_int16x16() {} method get0 (line 234) | short get0() const { return (short)_v_cvtsi256_si32(val); } function v_rshr_pack_store (line 2150) | inline function v_uint32x8 (line 2159) | inline v_uint32x8 v_pack(const v_uint64x4& a, const v_uint64x4& b) method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_int32x8 (line 2167) | inline v_int32x8 v_pack(const v_int64x4& a, const v_int64x4& b) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_pack_store (line 2170) | inline void v_pack_store(unsigned* ptr, const v_uint64x4& a) function v_pack_store (line 2176) | inline void v_pack_store(int* ptr, const v_int64x4& b) function v_uint32x8 (line 2179) | inline method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_rshr_pack_store (line 2186) | inline function v_int32x8 (line 2193) | inline method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_rshr_pack_store (line 2200) | inline function v_uint8x32 (line 2208) | inline v_uint8x32 v_pack_b(const v_uint16x16& a, const v_uint16x16& b) method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 2214) | inline v_uint8x32 v_pack_b(const v_uint32x8& a, const v_uint32x8& b, method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function v_uint8x32 (line 2224) | inline v_uint8x32 v_pack_b(const v_uint64x4& a, const v_uint64x4& b, c... method v_uint8x32 (line 145) | explicit v_uint8x32(__m256i v) : val(v) {} method v_uint8x32 (line 146) | v_uint8x32(uchar v0, uchar v1, uchar v2, uchar v3, method v_uint8x32 (line 163) | v_uint8x32() {} method uchar (line 165) | uchar get0() const { return (uchar)_v_cvtsi256_si32(val); } function uchar (line 2262) | inline uchar v_extract_n(v_uint8x32 a) function schar (line 2268) | inline schar v_extract_n(v_int8x32 a) function ushort (line 2274) | inline ushort v_extract_n(v_uint16x16 a) function v_extract_n (line 2280) | inline short v_extract_n(v_int16x16 a) function uint (line 2286) | inline uint v_extract_n(v_uint32x8 a) function v_extract_n (line 2292) | inline int v_extract_n(v_int32x8 a) function uint64 (line 2298) | inline uint64 v_extract_n(v_uint64x4 a) function int64 (line 2304) | inline int64 v_extract_n(v_int64x4 v) function v_extract_n (line 2310) | inline float v_extract_n(v_float32x8 v) function v_extract_n (line 2318) | inline double v_extract_n(v_float64x4 v) function v_uint32x8 (line 2326) | inline v_uint32x8 v_broadcast_element(v_uint32x8 a) method v_uint32x8 (line 243) | explicit v_uint32x8(__m256i v) : val(v) {} method v_uint32x8 (line 244) | v_uint32x8(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x8 (line 251) | v_uint32x8() {} method get0 (line 253) | unsigned get0() const { return (unsigned)_v_cvtsi256_si32(val); } function v_int32x8 (line 2333) | inline v_int32x8 v_broadcast_element(const v_int32x8 &a) method v_int32x8 (line 262) | explicit v_int32x8(__m256i v) : val(v) {} method v_int32x8 (line 263) | v_int32x8(int v0, int v1, int v2, int v3, method v_int32x8 (line 269) | v_int32x8() {} method get0 (line 271) | int get0() const { return _v_cvtsi256_si32(val); } function v_float32x8 (line 2337) | inline v_float32x8 v_broadcast_element(const v_float32x8 &a) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_load_deinterleave (line 2343) | inline void v_load_deinterleave( const uchar* ptr, v_uint8x32& a, v_ui... function v_load_deinterleave (line 2360) | inline void v_load_deinterleave( const ushort* ptr, v_uint16x16& a, v_... function v_load_deinterleave (line 2377) | inline void v_load_deinterleave( const unsigned* ptr, v_uint32x8& a, v... function v_load_deinterleave (line 2393) | inline void v_load_deinterleave( const uint64* ptr, v_uint64x4& a, v_u... function v_load_deinterleave (line 2406) | inline void v_load_deinterleave( const uchar* ptr, v_uint8x32& a, v_ui... function v_load_deinterleave (line 2440) | inline void v_load_deinterleave( const ushort* ptr, v_uint16x16& a, v_... function v_load_deinterleave (line 2471) | inline void v_load_deinterleave( const unsigned* ptr, v_uint32x8& a, v... function v_load_deinterleave (line 2493) | inline void v_load_deinterleave( const uint64* ptr, v_uint64x4& a, v_u... function v_load_deinterleave (line 2511) | inline void v_load_deinterleave( const uchar* ptr, v_uint8x32& a, v_ui... function v_load_deinterleave (line 2546) | inline void v_load_deinterleave( const ushort* ptr, v_uint16x16& a, v_... function v_load_deinterleave (line 2580) | inline void v_load_deinterleave( const unsigned* ptr, v_uint32x8& a, v... function v_load_deinterleave (line 2608) | inline void v_load_deinterleave( const uint64* ptr, v_uint64x4& a, v_u... function v_store_interleave (line 2633) | inline void v_store_interleave( uchar* ptr, const v_uint8x32& x, const... function v_store_interleave (line 2659) | inline void v_store_interleave( ushort* ptr, const v_uint16x16& x, con... function v_store_interleave (line 2685) | inline void v_store_interleave( unsigned* ptr, const v_uint32x8& x, co... function v_store_interleave (line 2711) | inline void v_store_interleave( uint64* ptr, const v_uint64x4& x, cons... function v_store_interleave (line 2737) | inline void v_store_interleave( uchar* ptr, const v_uint8x32& a, const... function v_store_interleave (line 2787) | inline void v_store_interleave( ushort* ptr, const v_uint16x16& a, con... function v_store_interleave (line 2837) | inline void v_store_interleave( unsigned* ptr, const v_uint32x8& a, co... function v_store_interleave (line 2872) | inline void v_store_interleave( uint64* ptr, const v_uint64x4& a, cons... function v_store_interleave (line 2903) | inline void v_store_interleave( uchar* ptr, const v_uint8x32& a, const... function v_store_interleave (line 2945) | inline void v_store_interleave( ushort* ptr, const v_uint16x16& a, con... function v_store_interleave (line 2987) | inline void v_store_interleave( unsigned* ptr, const v_uint32x8& a, co... function v_store_interleave (line 3029) | inline void v_store_interleave( uint64* ptr, const v_uint64x4& a, cons... function v_float32x8 (line 3128) | inline v_float32x8 v256_load_expand(const float16_t* ptr) method v_float32x8 (line 280) | explicit v_float32x8(__m256 v) : val(v) {} method v_float32x8 (line 281) | v_float32x8(float v0, float v1, float v2, float v3, method v_float32x8 (line 287) | v_float32x8() {} method get0 (line 289) | float get0() const { return _mm_cvtss_f32(_mm256_castps256_ps128(val... function v_pack_store (line 3140) | inline void v_pack_store(float16_t* ptr, const v_float32x8& a) function v256_cleanup (line 3157) | inline void v256_cleanup() { _mm256_zeroall(); } FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin_avx512.hpp function __m512i (line 68) | inline __m512i _v512_combine(const __m256i& lo, const __m256i& hi) function __m512 (line 71) | inline __m512 _v512_combine(const __m256& lo, const __m256& hi) function __m512d (line 74) | inline __m512d _v512_combine(const __m256d& lo, const __m256d& hi) function _v_cvtsi512_si32 (line 77) | inline int _v_cvtsi512_si32(const __m512i& a) function __m256i (line 80) | inline __m256i _v512_extract_high(const __m512i& v) function __m256 (line 83) | inline __m256 _v512_extract_high(const __m512& v) function __m256d (line 86) | inline __m256d _v512_extract_high(const __m512d& v) function __m256i (line 89) | inline __m256i _v512_extract_low(const __m512i& v) function __m256 (line 92) | inline __m256 _v512_extract_low(const __m512& v) function __m256d (line 95) | inline __m256d _v512_extract_low(const __m512d& v) function __m512i (line 98) | inline __m512i _v512_insert(const __m512i& a, const __m256i& b) function __m512 (line 101) | inline __m512 _v512_insert(const __m512& a, const __m256& b) function __m512d (line 104) | inline __m512d _v512_insert(const __m512d& a, const __m256d& b) type cv (line 109) | namespace cv function CV_CPU_OPTIMIZATION_HAL_NAMESPACE_BEGIN (line 114) | CV_CPU_OPTIMIZATION_HAL_NAMESPACE_BEGIN type v_int8x64 (line 154) | struct v_int8x64 method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } type v_uint16x32 (line 190) | struct v_uint16x32 method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } type v_int16x32 (line 216) | struct v_int16x32 method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } type v_uint32x16 (line 240) | struct v_uint32x16 method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } type v_int32x16 (line 262) | struct v_int32x16 method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } type v_float32x16 (line 281) | struct v_float32x16 method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... type v_uint64x8 (line 300) | struct v_uint64x8 method v_uint64x8 (line 306) | explicit v_uint64x8(__m512i v) : val(v) {} method v_uint64x8 (line 307) | v_uint64x8(uint64 v0, uint64 v1, uint64 v2, uint64 v3, uint64 v4, ui... method v_uint64x8 (line 309) | v_uint64x8() {} method v_uint64x8 (line 311) | static inline v_uint64x8 zero() { return v_uint64x8(_mm512_setzero_s... method uint64 (line 313) | uint64 get0() const type v_int64x8 (line 325) | struct v_int64x8 method v_int64x8 (line 331) | explicit v_int64x8(__m512i v) : val(v) {} method v_int64x8 (line 332) | v_int64x8(int64 v0, int64 v1, int64 v2, int64 v3, int64 v4, int64 v5... method v_int64x8 (line 334) | v_int64x8() {} method v_int64x8 (line 336) | static inline v_int64x8 zero() { return v_int64x8(_mm512_setzero_si5... method int64 (line 338) | int64 get0() const type v_float64x8 (line 350) | struct v_float64x8 method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_float32x16 (line 498) | inline v_float32x16 v_reinterpret_as_f32(const v_float32x16& a) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float32x16 (line 500) | inline v_float32x16 v_reinterpret_as_f32(const v_float64x8& a) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float64x8 (line 503) | inline v_float64x8 v_reinterpret_as_f64(const v_float64x8& a) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_float64x8 (line 505) | inline v_float64x8 v_reinterpret_as_f64(const v_float32x16& a) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_float32x16 (line 509) | inline v_float32x16 v512_load_expand(const float16_t* ptr) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_pack_store (line 514) | inline void v_pack_store(float16_t* ptr, const v_float32x16& a) function v_zip (line 521) | inline void v_zip(const v_int8x64& a, const v_int8x64& b, v_int8x64& a... function v_zip (line 541) | inline void v_zip(const v_int16x32& a, const v_int16x32& b, v_int16x32... function v_zip (line 550) | inline void v_zip(const v_int32x16& a, const v_int32x16& b, v_int32x16... function v_zip (line 557) | inline void v_zip(const v_int64x8& a, const v_int64x8& b, v_int64x8& a... function v_zip (line 565) | inline void v_zip(const v_uint8x64& a, const v_uint8x64& b, v_uint8x... function v_zip (line 572) | inline void v_zip(const v_uint16x32& a, const v_uint16x32& b, v_uint... function v_zip (line 579) | inline void v_zip(const v_uint32x16& a, const v_uint32x16& b, v_uint... function v_zip (line 586) | inline void v_zip(const v_uint64x8& a, const v_uint64x8& b, v_uint64... function v_zip (line 593) | inline void v_zip(const v_float32x16& a, const v_float32x16& b, v_fl... function v_zip (line 600) | inline void v_zip(const v_float64x8& a, const v_float64x8& b, v_floa... function v_uint8x64 (line 652) | inline v_uint8x64 v_mul_wrap(const v_uint8x64& a, const v_uint8x64& b) function v_int8x64 (line 660) | inline v_int8x64 v_mul_wrap(const v_int8x64& a, const v_int8x64& b) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_uint8x64 (line 705) | inline v_uint8x64 operator * (const v_uint8x64& a, const v_uint8x64& b) function v_int8x64 (line 711) | inline v_int8x64 operator * (const v_int8x64& a, const v_int8x64& b) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_uint16x32 (line 717) | inline v_uint16x32 operator * (const v_uint16x32& a, const v_uint16x32... method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_int16x32 (line 727) | inline v_int16x32 operator * (const v_int16x32& a, const v_int16x32& b) method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_uint8x64 (line 736) | inline v_uint8x64& operator *= (v_uint8x64& a, const v_uint8x64& b) function v_int8x64 (line 738) | inline v_int8x64& operator *= (v_int8x64& a, const v_int8x64& b) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_uint16x32 (line 740) | inline v_uint16x32& operator *= (v_uint16x32& a, const v_uint16x32& b) method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_int16x32 (line 742) | inline v_int16x32& operator *= (v_int16x32& a, const v_int16x32& b) method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_int16x32 (line 745) | inline v_int16x32 v_mul_hi(const v_int16x32& a, const v_int16x32& b) {... method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_uint16x32 (line 746) | inline v_uint16x32 v_mul_hi(const v_uint16x32& a, const v_uint16x32& b... method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_mul_expand (line 749) | inline void v_mul_expand(const v_uint8x64& a, const v_uint8x64& b, function v_mul_expand (line 759) | inline void v_mul_expand(const v_int8x64& a, const v_int8x64& b, function v_mul_expand (line 769) | inline void v_mul_expand(const v_int16x32& a, const v_int16x32& b, function v_mul_expand (line 779) | inline void v_mul_expand(const v_uint16x32& a, const v_uint16x32& b, function v_mul_expand (line 789) | inline void v_mul_expand(const v_uint32x16& a, const v_uint32x16& b, function v_mul_expand (line 796) | inline void v_mul_expand(const v_int32x16& a, const v_int32x16& b, function v_float32x16 (line 903) | inline v_float32x16 v_not_nan(const v_float32x16& a) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float64x8 (line 905) | inline v_float64x8 v_not_nan(const v_float64x8& a) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... type _v_rotate_right (line 933) | struct _v_rotate_right { static inline v_int8x64 eval(const v_int8x64&... method v_int8x64 (line 933) | static inline v_int8x64 eval(const v_int8x64&, const v_int8x64&) { r... type _v_rotate_right (line 935) | struct _v_rotate_right { static inline v_int... method v_int8x64 (line 935) | static inline v_int8x64 eval(const v_int8x64& a, const v_int8x64& b) type _v_rotate_right (line 941) | struct _v_rotate_right { static inline v_int8x6... method v_int8x64 (line 941) | static inline v_int8x64 eval(const v_int8x64& a, const v_int8x64& b) type _v_rotate_right (line 947) | struct _v_rotate_right { static inline v_int8... method v_int8x64 (line 947) | static inline v_int8x64 eval(const v_int8x64&, const v_int8x64& b) type _v_rotate_right (line 953) | struct _v_rotate_right { static inline v_int8x64... method v_int8x64 (line 953) | static inline v_int8x64 eval(const v_int8x64&, const v_int8x64& b) type _v_rotate_right (line 956) | struct _v_rotate_right { static inline v_int8x... method v_int8x64 (line 956) | static inline v_int8x64 eval(const v_int8x64& a, const v_int8x64& b) type _v_rotate_right (line 959) | struct _v_rotate_right { static inline v_int8x64 e... method v_int8x64 (line 959) | static inline v_int8x64 eval(const v_int8x64& a, const v_int8x64&) {... type _v_rotate_right (line 961) | struct _v_rotate_right { static inline v_int8x6... method v_int8x64 (line 961) | static inline v_int8x64 eval(const v_int8x64&, const v_int8x64& b) type _v_rotate_right (line 964) | struct _v_rotate_right { static inline v_int8x64 e... method v_int8x64 (line 964) | static inline v_int8x64 eval(const v_int8x64&, const v_int8x64& b) {... type _v_rotate_right (line 966) | struct _v_rotate_right { static inline v_int8x64 e... method v_int8x64 (line 966) | static inline v_int8x64 eval(const v_int8x64&, const v_int8x64&) { r... function v_int8x64 (line 968) | inline v_int8x64 v_rotate_right(const v_int8x64& a, const v_int8x64& b) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_int8x64 (line 986) | inline v_int8x64 v_rotate_left(const v_int8x64& a, const v_int8x64& b) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_int8x64 (line 1006) | inline v_int8x64 v_rotate_right(const v_int8x64& a) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_int8x64 (line 1025) | inline v_int8x64 v_rotate_left(const v_int8x64& a) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_uint8x64 (line 1101) | inline v_uint8x64 v_reverse(const v_uint8x64 &a) function v_int8x64 (line 1122) | inline v_int8x64 v_reverse(const v_int8x64 &a) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_uint16x32 (line 1125) | inline v_uint16x32 v_reverse(const v_uint16x32 &a) method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_int16x32 (line 1146) | inline v_int16x32 v_reverse(const v_int16x32 &a) method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_uint32x16 (line 1149) | inline v_uint32x16 v_reverse(const v_uint32x16 &a) method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_int32x16 (line 1155) | inline v_int32x16 v_reverse(const v_int32x16 &a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_float32x16 (line 1158) | inline v_float32x16 v_reverse(const v_float32x16 &a) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_uint64x8 (line 1161) | inline v_uint64x8 v_reverse(const v_uint64x8 &a) method v_uint64x8 (line 306) | explicit v_uint64x8(__m512i v) : val(v) {} method v_uint64x8 (line 307) | v_uint64x8(uint64 v0, uint64 v1, uint64 v2, uint64 v3, uint64 v4, ui... method v_uint64x8 (line 309) | v_uint64x8() {} method v_uint64x8 (line 311) | static inline v_uint64x8 zero() { return v_uint64x8(_mm512_setzero_s... method uint64 (line 313) | uint64 get0() const function v_int64x8 (line 1167) | inline v_int64x8 v_reverse(const v_int64x8 &a) method v_int64x8 (line 331) | explicit v_int64x8(__m512i v) : val(v) {} method v_int64x8 (line 332) | v_int64x8(int64 v0, int64 v1, int64 v2, int64 v3, int64 v4, int64 v5... method v_int64x8 (line 334) | v_int64x8() {} method v_int64x8 (line 336) | static inline v_int64x8 zero() { return v_int64x8(_mm512_setzero_si5... method int64 (line 338) | int64 get0() const function v_float64x8 (line 1170) | inline v_float64x8 v_reverse(const v_float64x8 &a) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_reduce_sum (line 1222) | inline float v_reduce_sum(const v_float32x16& a) function v_reduce_sum (line 1229) | inline int v_reduce_sum(const v_int32x16& a) function uint (line 1236) | inline uint v_reduce_sum(const v_uint32x16& a) function v_reduce_sum (line 1252) | inline int v_reduce_sum(const v_int16x32& a) function uint (line 1254) | inline uint v_reduce_sum(const v_uint16x32& a) function v_float32x16 (line 1283) | inline v_float32x16 v_reduce_sum4(const v_float32x16& a, const v_float... method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_reduce_sad (line 1293) | inline unsigned v_reduce_sad(const v_uint8x64& a, const v_uint8x64& b) function v_reduce_sad (line 1300) | inline unsigned v_reduce_sad(const v_int8x64& a, const v_int8x64& b) function v_reduce_sad (line 1308) | inline unsigned v_reduce_sad(const v_uint16x32& a, const v_uint16x32& b) function v_reduce_sad (line 1310) | inline unsigned v_reduce_sad(const v_int16x32& a, const v_int16x32& b) function v_reduce_sad (line 1312) | inline unsigned v_reduce_sad(const v_uint32x16& a, const v_uint32x16& b) function v_reduce_sad (line 1314) | inline unsigned v_reduce_sad(const v_int32x16& a, const v_int32x16& b) function v_reduce_sad (line 1316) | inline float v_reduce_sad(const v_float32x16& a, const v_float32x16& b) function v_reduce_sad (line 1318) | inline double v_reduce_sad(const v_float64x8& a, const v_float64x8& b) function v_uint8x64 (line 1322) | inline v_uint8x64 v_popcount(const v_int8x64& a) function v_uint16x32 (line 1344) | inline v_uint16x32 v_popcount(const v_int16x32& a) method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_uint32x16 (line 1358) | inline v_uint32x16 v_popcount(const v_int32x16& a) method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_uint64x8 (line 1369) | inline v_uint64x8 v_popcount(const v_int64x8& a) method v_uint64x8 (line 306) | explicit v_uint64x8(__m512i v) : val(v) {} method v_uint64x8 (line 307) | v_uint64x8(uint64 v0, uint64 v1, uint64 v2, uint64 v3, uint64 v4, ui... method v_uint64x8 (line 309) | v_uint64x8() {} method v_uint64x8 (line 311) | static inline v_uint64x8 zero() { return v_uint64x8(_mm512_setzero_s... method uint64 (line 313) | uint64 get0() const function v_uint8x64 (line 1379) | inline v_uint8x64 v_popcount(const v_uint8x64& a) { return v_popcoun... function v_uint16x32 (line 1380) | inline v_uint16x32 v_popcount(const v_uint16x32& a) { return v_popcoun... method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_uint32x16 (line 1381) | inline v_uint32x16 v_popcount(const v_uint32x16& a) { return v_popcoun... method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_uint64x8 (line 1382) | inline v_uint64x8 v_popcount(const v_uint64x8& a) { return v_popcoun... method v_uint64x8 (line 306) | explicit v_uint64x8(__m512i v) : val(v) {} method v_uint64x8 (line 307) | v_uint64x8(uint64 v0, uint64 v1, uint64 v2, uint64 v3, uint64 v4, ui... method v_uint64x8 (line 309) | v_uint64x8() {} method v_uint64x8 (line 311) | static inline v_uint64x8 zero() { return v_uint64x8(_mm512_setzero_s... method uint64 (line 313) | uint64 get0() const function v_int32x16 (line 1403) | inline v_int32x16 v_fma(const v_int32x16& a, const v_int32x16& b, cons... method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1405) | inline v_int32x16 v_muladd(const v_int32x16& a, const v_int32x16& b, c... method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_float32x16 (line 1408) | inline v_float32x16 v_invsqrt(const v_float32x16& x) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float64x8 (line 1420) | inline v_float64x8 v_invsqrt(const v_float64x8& x) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_float32x16 (line 1444) | inline v_float32x16 v_abs(const v_float32x16& x) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float64x8 (line 1455) | inline v_float64x8 v_abs(const v_float64x8& x) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_uint8x64 (line 1472) | inline v_uint8x64 v_absdiff(const v_uint8x64& a, const v_uint8x64& b) function v_uint16x32 (line 1474) | inline v_uint16x32 v_absdiff(const v_uint16x32& a, const v_uint16x32& b) method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_uint32x16 (line 1476) | inline v_uint32x16 v_absdiff(const v_uint32x16& a, const v_uint32x16& b) method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_uint8x64 (line 1479) | inline v_uint8x64 v_absdiff(const v_int8x64& a, const v_int8x64& b) function v_uint16x32 (line 1486) | inline v_uint16x32 v_absdiff(const v_int16x32& a, const v_int16x32& b) method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_uint32x16 (line 1489) | inline v_uint32x16 v_absdiff(const v_int32x16& a, const v_int32x16& b) method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_float32x16 (line 1496) | inline v_float32x16 v_absdiff(const v_float32x16& a, const v_float32x1... method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float64x8 (line 1499) | inline v_float64x8 v_absdiff(const v_float64x8& a, const v_float64x8& b) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_int8x64 (line 1503) | inline v_int8x64 v_absdiffs(const v_int8x64& a, const v_int8x64& b) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_int16x32 (line 1509) | inline v_int16x32 v_absdiffs(const v_int16x32& a, const v_int16x32& b) method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_int32x16 (line 1515) | inline v_int32x16 v_round(const v_float32x16& a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1518) | inline v_int32x16 v_round(const v_float64x8& a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1521) | inline v_int32x16 v_round(const v_float64x8& a, const v_float64x8& b) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1524) | inline v_int32x16 v_trunc(const v_float32x16& a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1527) | inline v_int32x16 v_trunc(const v_float64x8& a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1531) | inline v_int32x16 v_floor(const v_float32x16& a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1534) | inline v_int32x16 v_floor(const v_float64x8& a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1537) | inline v_int32x16 v_ceil(const v_float32x16& a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1540) | inline v_int32x16 v_ceil(const v_float64x8& a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1543) | inline v_int32x16 v_floor(const v_float32x16& a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1546) | inline v_int32x16 v_floor(const v_float64x8& a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1549) | inline v_int32x16 v_ceil(const v_float32x16& a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1552) | inline v_int32x16 v_ceil(const v_float64x8& a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_float32x16 (line 1557) | inline v_float32x16 v_cvt_f32(const v_int32x16& a) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float32x16 (line 1560) | inline v_float32x16 v_cvt_f32(const v_float64x8& a) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float32x16 (line 1563) | inline v_float32x16 v_cvt_f32(const v_float64x8& a, const v_float64x8& b) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float64x8 (line 1566) | inline v_float64x8 v_cvt_f64(const v_int32x16& a) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_float64x8 (line 1569) | inline v_float64x8 v_cvt_f64_high(const v_int32x16& a) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_float64x8 (line 1572) | inline v_float64x8 v_cvt_f64(const v_float32x16& a) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_float64x8 (line 1575) | inline v_float64x8 v_cvt_f64_high(const v_float32x16& a) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_float64x8 (line 1579) | inline v_float64x8 v_cvt_f64(const v_int64x8& v) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_int8x64 (line 1606) | inline v_int8x64 v512_lut(const schar* tab, const int* idx) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_int8x64 (line 1614) | inline v_int8x64 v512_lut_pairs(const schar* tab, const int* idx) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_int8x64 (line 1620) | inline v_int8x64 v512_lut_quads(const schar* tab, const int* idx) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_uint8x64 (line 1624) | inline v_uint8x64 v512_lut(const uchar* tab, const int* idx) { return ... function v_uint8x64 (line 1625) | inline v_uint8x64 v512_lut_pairs(const uchar* tab, const int* idx) { r... function v_uint8x64 (line 1626) | inline v_uint8x64 v512_lut_quads(const uchar* tab, const int* idx) { r... function v_int16x32 (line 1628) | inline v_int16x32 v512_lut(const short* tab, const int* idx) method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_int16x32 (line 1634) | inline v_int16x32 v512_lut_pairs(const short* tab, const int* idx) method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_int16x32 (line 1638) | inline v_int16x32 v512_lut_quads(const short* tab, const int* idx) method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_uint16x32 (line 1646) | inline v_uint16x32 v512_lut(const ushort* tab, const int* idx) { retur... method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_uint16x32 (line 1647) | inline v_uint16x32 v512_lut_pairs(const ushort* tab, const int* idx) {... method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_uint16x32 (line 1648) | inline v_uint16x32 v512_lut_quads(const ushort* tab, const int* idx) {... method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_int32x16 (line 1650) | inline v_int32x16 v512_lut(const int* tab, const int* idx) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1654) | inline v_int32x16 v512_lut_pairs(const int* tab, const int* idx) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1662) | inline v_int32x16 v512_lut_quads(const int* tab, const int* idx) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_uint32x16 (line 1670) | inline v_uint32x16 v512_lut(const unsigned* tab, const int* idx) { ret... method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_uint32x16 (line 1671) | inline v_uint32x16 v512_lut_pairs(const unsigned* tab, const int* idx)... method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_uint32x16 (line 1672) | inline v_uint32x16 v512_lut_quads(const unsigned* tab, const int* idx)... method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_int64x8 (line 1674) | inline v_int64x8 v512_lut(const int64* tab, const int* idx) method v_int64x8 (line 331) | explicit v_int64x8(__m512i v) : val(v) {} method v_int64x8 (line 332) | v_int64x8(int64 v0, int64 v1, int64 v2, int64 v3, int64 v4, int64 v5... method v_int64x8 (line 334) | v_int64x8() {} method v_int64x8 (line 336) | static inline v_int64x8 zero() { return v_int64x8(_mm512_setzero_si5... method int64 (line 338) | int64 get0() const function v_int64x8 (line 1682) | inline v_int64x8 v512_lut_pairs(const int64* tab, const int* idx) method v_int64x8 (line 331) | explicit v_int64x8(__m512i v) : val(v) {} method v_int64x8 (line 332) | v_int64x8(int64 v0, int64 v1, int64 v2, int64 v3, int64 v4, int64 v5... method v_int64x8 (line 334) | v_int64x8() {} method v_int64x8 (line 336) | static inline v_int64x8 zero() { return v_int64x8(_mm512_setzero_si5... method int64 (line 338) | int64 get0() const function v_uint64x8 (line 1690) | inline v_uint64x8 v512_lut(const uint64* tab, const int* idx) { return... method v_uint64x8 (line 306) | explicit v_uint64x8(__m512i v) : val(v) {} method v_uint64x8 (line 307) | v_uint64x8(uint64 v0, uint64 v1, uint64 v2, uint64 v3, uint64 v4, ui... method v_uint64x8 (line 309) | v_uint64x8() {} method v_uint64x8 (line 311) | static inline v_uint64x8 zero() { return v_uint64x8(_mm512_setzero_s... method uint64 (line 313) | uint64 get0() const function v_uint64x8 (line 1691) | inline v_uint64x8 v512_lut_pairs(const uint64* tab, const int* idx) { ... method v_uint64x8 (line 306) | explicit v_uint64x8(__m512i v) : val(v) {} method v_uint64x8 (line 307) | v_uint64x8(uint64 v0, uint64 v1, uint64 v2, uint64 v3, uint64 v4, ui... method v_uint64x8 (line 309) | v_uint64x8() {} method v_uint64x8 (line 311) | static inline v_uint64x8 zero() { return v_uint64x8(_mm512_setzero_s... method uint64 (line 313) | uint64 get0() const function v_float32x16 (line 1693) | inline v_float32x16 v512_lut(const float* tab, const int* idx) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float32x16 (line 1697) | inline v_float32x16 v512_lut_pairs(const float* tab, const int* idx) {... method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float32x16 (line 1698) | inline v_float32x16 v512_lut_quads(const float* tab, const int* idx) {... method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float64x8 (line 1700) | inline v_float64x8 v512_lut(const double* tab, const int* idx) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_float64x8 (line 1704) | inline v_float64x8 v512_lut_pairs(const double* tab, const int* idx) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_int32x16 (line 1713) | inline v_int32x16 v_lut(const int* tab, const v_int32x16& idxvec) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_uint32x16 (line 1718) | inline v_uint32x16 v_lut(const unsigned* tab, const v_int32x16& idxvec) method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_float32x16 (line 1723) | inline v_float32x16 v_lut(const float* tab, const v_int32x16& idxvec) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float64x8 (line 1728) | inline v_float64x8 v_lut(const double* tab, const v_int32x16& idxvec) method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_lut_deinterleave (line 1733) | inline void v_lut_deinterleave(const float* tab, const v_int32x16& idx... function v_lut_deinterleave (line 1739) | inline void v_lut_deinterleave(const double* tab, const v_int32x16& id... function v_int8x64 (line 1745) | inline v_int8x64 v_interleave_pairs(const v_int8x64& vec) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_uint8x64 (line 1749) | inline v_uint8x64 v_interleave_pairs(const v_uint8x64& vec) { return v... function v_int8x64 (line 1750) | inline v_int8x64 v_interleave_quads(const v_int8x64& vec) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_uint8x64 (line 1754) | inline v_uint8x64 v_interleave_quads(const v_uint8x64& vec) { return v... function v_int16x32 (line 1756) | inline v_int16x32 v_interleave_pairs(const v_int16x32& vec) method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_uint16x32 (line 1760) | inline v_uint16x32 v_interleave_pairs(const v_uint16x32& vec) { return... method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_int16x32 (line 1761) | inline v_int16x32 v_interleave_quads(const v_int16x32& vec) method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_uint16x32 (line 1765) | inline v_uint16x32 v_interleave_quads(const v_uint16x32& vec) { return... method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_int32x16 (line 1767) | inline v_int32x16 v_interleave_pairs(const v_int32x16& vec) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_uint32x16 (line 1771) | inline v_uint32x16 v_interleave_pairs(const v_uint32x16& vec) { return... method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_float32x16 (line 1772) | inline v_float32x16 v_interleave_pairs(const v_float32x16& vec) { retu... method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_int8x64 (line 1774) | inline v_int8x64 v_pack_triplets(const v_int8x64& vec) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_uint8x64 (line 1780) | inline v_uint8x64 v_pack_triplets(const v_uint8x64& vec) { return v_re... function v_int16x32 (line 1782) | inline v_int16x32 v_pack_triplets(const v_int16x32& vec) method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_uint16x32 (line 1787) | inline v_uint16x32 v_pack_triplets(const v_uint16x32& vec) { return v_... method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_int32x16 (line 1789) | inline v_int32x16 v_pack_triplets(const v_int32x16& vec) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_uint32x16 (line 1794) | inline v_uint32x16 v_pack_triplets(const v_uint32x16& vec) { return v_... method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_float32x16 (line 1795) | inline v_float32x16 v_pack_triplets(const v_float32x16& vec) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_int32x16 (line 1806) | inline v_int32x16 v_dotprod(const v_int16x32& a, const v_int16x32& b) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1808) | inline v_int32x16 v_dotprod(const v_int16x32& a, const v_int16x32& b, ... method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int64x8 (line 1812) | inline v_int64x8 v_dotprod(const v_int32x16& a, const v_int32x16& b) method v_int64x8 (line 331) | explicit v_int64x8(__m512i v) : val(v) {} method v_int64x8 (line 332) | v_int64x8(int64 v0, int64 v1, int64 v2, int64 v3, int64 v4, int64 v5... method v_int64x8 (line 334) | v_int64x8() {} method v_int64x8 (line 336) | static inline v_int64x8 zero() { return v_int64x8(_mm512_setzero_si5... method int64 (line 338) | int64 get0() const function v_int64x8 (line 1818) | inline v_int64x8 v_dotprod(const v_int32x16& a, const v_int32x16& b, c... method v_int64x8 (line 331) | explicit v_int64x8(__m512i v) : val(v) {} method v_int64x8 (line 332) | v_int64x8(int64 v0, int64 v1, int64 v2, int64 v3, int64 v4, int64 v5... method v_int64x8 (line 334) | v_int64x8() {} method v_int64x8 (line 336) | static inline v_int64x8 zero() { return v_int64x8(_mm512_setzero_si5... method int64 (line 338) | int64 get0() const function v_uint32x16 (line 1822) | inline v_uint32x16 v_dotprod_expand(const v_uint8x64& a, const v_uint8... method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_uint32x16 (line 1834) | inline v_uint32x16 v_dotprod_expand(const v_uint8x64& a, const v_uint8... method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_int32x16 (line 1837) | inline v_int32x16 v_dotprod_expand(const v_int8x64& a, const v_int8x64... method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1849) | inline v_int32x16 v_dotprod_expand(const v_int8x64& a, const v_int8x64... method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_uint64x8 (line 1853) | inline v_uint64x8 v_dotprod_expand(const v_uint16x32& a, const v_uint1... method v_uint64x8 (line 306) | explicit v_uint64x8(__m512i v) : val(v) {} method v_uint64x8 (line 307) | v_uint64x8(uint64 v0, uint64 v1, uint64 v2, uint64 v3, uint64 v4, ui... method v_uint64x8 (line 309) | v_uint64x8() {} method v_uint64x8 (line 311) | static inline v_uint64x8 zero() { return v_uint64x8(_mm512_setzero_s... method uint64 (line 313) | uint64 get0() const function v_uint64x8 (line 1873) | inline v_uint64x8 v_dotprod_expand(const v_uint16x32& a, const v_uint1... method v_uint64x8 (line 306) | explicit v_uint64x8(__m512i v) : val(v) {} method v_uint64x8 (line 307) | v_uint64x8(uint64 v0, uint64 v1, uint64 v2, uint64 v3, uint64 v4, ui... method v_uint64x8 (line 309) | v_uint64x8() {} method v_uint64x8 (line 311) | static inline v_uint64x8 zero() { return v_uint64x8(_mm512_setzero_s... method uint64 (line 313) | uint64 get0() const function v_int64x8 (line 1876) | inline v_int64x8 v_dotprod_expand(const v_int16x32& a, const v_int16x3... method v_int64x8 (line 331) | explicit v_int64x8(__m512i v) : val(v) {} method v_int64x8 (line 332) | v_int64x8(int64 v0, int64 v1, int64 v2, int64 v3, int64 v4, int64 v5... method v_int64x8 (line 334) | v_int64x8() {} method v_int64x8 (line 336) | static inline v_int64x8 zero() { return v_int64x8(_mm512_setzero_si5... method int64 (line 338) | int64 get0() const function v_int64x8 (line 1883) | inline v_int64x8 v_dotprod_expand(const v_int16x32& a, const v_int16x3... method v_int64x8 (line 331) | explicit v_int64x8(__m512i v) : val(v) {} method v_int64x8 (line 332) | v_int64x8(int64 v0, int64 v1, int64 v2, int64 v3, int64 v4, int64 v5... method v_int64x8 (line 334) | v_int64x8() {} method v_int64x8 (line 336) | static inline v_int64x8 zero() { return v_int64x8(_mm512_setzero_si5... method int64 (line 338) | int64 get0() const function v_float64x8 (line 1887) | inline v_float64x8 v_dotprod_expand(const v_int32x16& a, const v_int32... method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_float64x8 (line 1889) | inline v_float64x8 v_dotprod_expand(const v_int32x16& a, const v_int32... method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_int32x16 (line 1895) | inline v_int32x16 v_dotprod_fast(const v_int16x32& a, const v_int16x32... method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1897) | inline v_int32x16 v_dotprod_fast(const v_int16x32& a, const v_int16x32... method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int64x8 (line 1901) | inline v_int64x8 v_dotprod_fast(const v_int32x16& a, const v_int32x16& b) method v_int64x8 (line 331) | explicit v_int64x8(__m512i v) : val(v) {} method v_int64x8 (line 332) | v_int64x8(int64 v0, int64 v1, int64 v2, int64 v3, int64 v4, int64 v5... method v_int64x8 (line 334) | v_int64x8() {} method v_int64x8 (line 336) | static inline v_int64x8 zero() { return v_int64x8(_mm512_setzero_si5... method int64 (line 338) | int64 get0() const function v_int64x8 (line 1903) | inline v_int64x8 v_dotprod_fast(const v_int32x16& a, const v_int32x16&... method v_int64x8 (line 331) | explicit v_int64x8(__m512i v) : val(v) {} method v_int64x8 (line 332) | v_int64x8(int64 v0, int64 v1, int64 v2, int64 v3, int64 v4, int64 v5... method v_int64x8 (line 334) | v_int64x8() {} method v_int64x8 (line 336) | static inline v_int64x8 zero() { return v_int64x8(_mm512_setzero_si5... method int64 (line 338) | int64 get0() const function v_uint32x16 (line 1907) | inline v_uint32x16 v_dotprod_expand_fast(const v_uint8x64& a, const v_... method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_uint32x16 (line 1909) | inline v_uint32x16 v_dotprod_expand_fast(const v_uint8x64& a, const v_... method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_int32x16 (line 1912) | inline v_int32x16 v_dotprod_expand_fast(const v_int8x64& a, const v_in... method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_int32x16 (line 1914) | inline v_int32x16 v_dotprod_expand_fast(const v_int8x64& a, const v_in... method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_uint64x8 (line 1918) | inline v_uint64x8 v_dotprod_expand_fast(const v_uint16x32& a, const v_... method v_uint64x8 (line 306) | explicit v_uint64x8(__m512i v) : val(v) {} method v_uint64x8 (line 307) | v_uint64x8(uint64 v0, uint64 v1, uint64 v2, uint64 v3, uint64 v4, ui... method v_uint64x8 (line 309) | v_uint64x8() {} method v_uint64x8 (line 311) | static inline v_uint64x8 zero() { return v_uint64x8(_mm512_setzero_s... method uint64 (line 313) | uint64 get0() const function v_uint64x8 (line 1934) | inline v_uint64x8 v_dotprod_expand_fast(const v_uint16x32& a, const v_... method v_uint64x8 (line 306) | explicit v_uint64x8(__m512i v) : val(v) {} method v_uint64x8 (line 307) | v_uint64x8(uint64 v0, uint64 v1, uint64 v2, uint64 v3, uint64 v4, ui... method v_uint64x8 (line 309) | v_uint64x8() {} method v_uint64x8 (line 311) | static inline v_uint64x8 zero() { return v_uint64x8(_mm512_setzero_s... method uint64 (line 313) | uint64 get0() const function v_int64x8 (line 1937) | inline v_int64x8 v_dotprod_expand_fast(const v_int16x32& a, const v_in... method v_int64x8 (line 331) | explicit v_int64x8(__m512i v) : val(v) {} method v_int64x8 (line 332) | v_int64x8(int64 v0, int64 v1, int64 v2, int64 v3, int64 v4, int64 v5... method v_int64x8 (line 334) | v_int64x8() {} method v_int64x8 (line 336) | static inline v_int64x8 zero() { return v_int64x8(_mm512_setzero_si5... method int64 (line 338) | int64 get0() const function v_int64x8 (line 1939) | inline v_int64x8 v_dotprod_expand_fast(const v_int16x32& a, const v_in... method v_int64x8 (line 331) | explicit v_int64x8(__m512i v) : val(v) {} method v_int64x8 (line 332) | v_int64x8(int64 v0, int64 v1, int64 v2, int64 v3, int64 v4, int64 v5... method v_int64x8 (line 334) | v_int64x8() {} method v_int64x8 (line 336) | static inline v_int64x8 zero() { return v_int64x8(_mm512_setzero_si5... method int64 (line 338) | int64 get0() const function v_float64x8 (line 1943) | inline v_float64x8 v_dotprod_expand_fast(const v_int32x16& a, const v_... method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_float64x8 (line 1945) | inline v_float64x8 v_dotprod_expand_fast(const v_int32x16& a, const v_... method v_float64x8 (line 356) | explicit v_float64x8(__m512d v) : val(v) {} method v_float64x8 (line 357) | v_float64x8(double v0, double v1, double v2, double v3, double v4, d... method v_float64x8 (line 359) | v_float64x8() {} method v_float64x8 (line 361) | static inline v_float64x8 zero() { return v_float64x8(_mm512_setzero... method get0 (line 363) | double get0() const { return _mm_cvtsd_f64(_mm512_castpd512_pd128(va... function v_float32x16 (line 1952) | inline v_float32x16 v_matmul(const v_float32x16& v, method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_float32x16 (line 1963) | inline v_float32x16 v_matmuladd(const v_float32x16& v, method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_int8x64 (line 2030) | inline v_int8x64 v_pack(const v_int16x32& a, const v_int16x32& b) method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_uint8x64 (line 2033) | inline v_uint8x64 v_pack(const v_uint16x32& a, const v_uint16x32& b) function v_uint8x64 (line 2039) | inline v_uint8x64 v_pack_u(const v_int16x32& a, const v_int16x32& b) function v_pack_store (line 2044) | inline void v_pack_store(schar* ptr, const v_int16x32& a) function v_pack_store (line 2047) | inline void v_pack_store(uchar* ptr, const v_uint16x32& a) function v_pack_u_store (line 2053) | inline void v_pack_u_store(uchar* ptr, const v_int16x32& a) function v_uint8x64 (line 2056) | inline function v_rshr_pack_store (line 2065) | inline function v_uint8x64 (line 2072) | inline function v_rshr_pack_u_store (line 2079) | inline function v_int8x64 (line 2086) | inline method v_int8x64 (line 160) | explicit v_int8x64(__m512i v) : val(v) {} method v_int8x64 (line 161) | v_int8x64(schar v0, schar v1, schar v2, schar v3, method v_int8x64 (line 183) | v_int8x64() {} method v_int8x64 (line 185) | static inline v_int8x64 zero() { return v_int8x64(_mm512_setzero_si5... method schar (line 187) | schar get0() const { return (schar)_v_cvtsi512_si32(val); } function v_rshr_pack_store (line 2093) | inline function v_int16x32 (line 2101) | inline v_int16x32 v_pack(const v_int32x16& a, const v_int32x16& b) method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_uint16x32 (line 2104) | inline v_uint16x32 v_pack(const v_uint32x16& a, const v_uint32x16& b) method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_uint16x32 (line 2110) | inline v_uint16x32 v_pack_u(const v_int32x16& a, const v_int32x16& b) method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_pack_store (line 2113) | inline void v_pack_store(short* ptr, const v_int32x16& a) function v_pack_store (line 2116) | inline void v_pack_store(ushort* ptr, const v_uint32x16& a) function v_pack_u_store (line 2122) | inline void v_pack_u_store(ushort* ptr, const v_int32x16& a) function v_uint16x32 (line 2126) | inline method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_rshr_pack_store (line 2134) | inline function v_uint16x32 (line 2141) | inline method v_uint16x32 (line 196) | explicit v_uint16x32(__m512i v) : val(v) {} method v_uint16x32 (line 197) | v_uint16x32(ushort v0, ushort v1, ushort v2, ushort v3, method v_uint16x32 (line 209) | v_uint16x32() {} method v_uint16x32 (line 211) | static inline v_uint16x32 zero() { return v_uint16x32(_mm512_setzero... method ushort (line 213) | ushort get0() const { return (ushort)_v_cvtsi512_si32(val); } function v_rshr_pack_u_store (line 2148) | inline function v_int16x32 (line 2155) | inline method v_int16x32 (line 222) | explicit v_int16x32(__m512i v) : val(v) {} method v_int16x32 (line 223) | v_int16x32(short v0, short v1, short v2, short v3, short v4, sh... method v_int16x32 (line 233) | v_int16x32() {} method v_int16x32 (line 235) | static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_s... method get0 (line 237) | short get0() const { return (short)_v_cvtsi512_si32(val); } function v_rshr_pack_store (line 2162) | inline function v_uint32x16 (line 2171) | inline v_uint32x16 v_pack(const v_uint64x8& a, const v_uint64x8& b) method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_int32x16 (line 2174) | inline v_int32x16 v_pack(const v_int64x8& a, const v_int64x8& b) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_pack_store (line 2177) | inline void v_pack_store(unsigned* ptr, const v_uint64x8& a) function v_pack_store (line 2180) | inline void v_pack_store(int* ptr, const v_int64x8& b) function v_uint32x16 (line 2183) | inline method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_rshr_pack_store (line 2190) | inline function v_int32x16 (line 2197) | inline method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_rshr_pack_store (line 2204) | inline function v_uint8x64 (line 2212) | inline v_uint8x64 v_pack_b(const v_uint16x32& a, const v_uint16x32& b) function v_uint8x64 (line 2215) | inline v_uint8x64 v_pack_b(const v_uint32x16& a, const v_uint32x16& b, function v_uint8x64 (line 2224) | inline v_uint8x64 v_pack_b(const v_uint64x8& a, const v_uint64x8& b, c... function v_uint32x16 (line 2275) | inline v_uint32x16 v_broadcast_element(v_uint32x16 a) method v_uint32x16 (line 246) | explicit v_uint32x16(__m512i v) : val(v) {} method v_uint32x16 (line 247) | v_uint32x16(unsigned v0, unsigned v1, unsigned v2, unsigned v3, method v_uint32x16 (line 255) | v_uint32x16() {} method v_uint32x16 (line 257) | static inline v_uint32x16 zero() { return v_uint32x16(_mm512_setzero... method get0 (line 259) | unsigned get0() const { return (unsigned)_v_cvtsi512_si32(val); } function v_int32x16 (line 2282) | inline v_int32x16 v_broadcast_element(const v_int32x16 &a) method v_int32x16 (line 268) | explicit v_int32x16(__m512i v) : val(v) {} method v_int32x16 (line 269) | v_int32x16(int v0, int v1, int v2, int v3, int v4, int v5, int v... method v_int32x16 (line 274) | v_int32x16() {} method v_int32x16 (line 276) | static inline v_int32x16 zero() { return v_int32x16(_mm512_setzero_s... method get0 (line 278) | int get0() const { return _v_cvtsi512_si32(val); } function v_float32x16 (line 2286) | inline v_float32x16 v_broadcast_element(const v_float32x16 &a) method v_float32x16 (line 287) | explicit v_float32x16(__m512 v) : val(v) {} method v_float32x16 (line 288) | v_float32x16(float v0, float v1, float v2, float v3, float v4, fl... method v_float32x16 (line 293) | v_float32x16() {} method v_float32x16 (line 295) | static inline v_float32x16 zero() { return v_float32x16(_mm512_setze... method get0 (line 297) | float get0() const { return _mm_cvtss_f32(_mm512_castps512_ps128(val... function v_load_deinterleave (line 2292) | inline void v_load_deinterleave( const uchar* ptr, v_uint8x64& a, v_ui... function v_load_deinterleave (line 2318) | inline void v_load_deinterleave( const ushort* ptr, v_uint16x32& a, v_... function v_load_deinterleave (line 2330) | inline void v_load_deinterleave( const unsigned* ptr, v_uint32x16& a, ... function v_load_deinterleave (line 2340) | inline void v_load_deinterleave( const uint64* ptr, v_uint64x8& a, v_u... function v_load_deinterleave (line 2350) | inline void v_load_deinterleave( const uchar* ptr, v_uint8x64& a, v_ui... function v_load_deinterleave (line 2404) | inline void v_load_deinterleave( const ushort* ptr, v_uint16x32& a, v_... function v_load_deinterleave (line 2422) | inline void v_load_deinterleave( const unsigned* ptr, v_uint32x16& a, ... function v_load_deinterleave (line 2438) | inline void v_load_deinterleave( const uint64* ptr, v_uint64x8& a, v_u... function v_load_deinterleave (line 2454) | inline void v_load_deinterleave( const uchar* ptr, v_uint8x64& a, v_ui... function v_load_deinterleave (line 2502) | inline void v_load_deinterleave( const ushort* ptr, v_uint16x32& a, v_... function v_load_deinterleave (line 2525) | inline void v_load_deinterleave( const unsigned* ptr, v_uint32x16& a, ... function v_load_deinterleave (line 2546) | inline void v_load_deinterleave( const uint64* ptr, v_uint64x8& a, v_u... function v_store_interleave (line 2569) | inline void v_store_interleave( uchar* ptr, const v_uint8x64& x, const... function v_store_interleave (line 2591) | inline void v_store_interleave( ushort* ptr, const v_uint16x32& x, con... function v_store_interleave (line 2613) | inline void v_store_interleave( unsigned* ptr, const v_uint32x16& x, c... function v_store_interleave (line 2635) | inline void v_store_interleave( uint64* ptr, const v_uint64x8& x, cons... function v_store_interleave (line 2657) | inline void v_store_interleave( uchar* ptr, const v_uint8x64& a, const... function v_store_interleave (line 2721) | inline void v_store_interleave( ushort* ptr, const v_uint16x32& a, con... function v_store_interleave (line 2758) | inline void v_store_interleave( unsigned* ptr, const v_uint32x16& a, c... function v_store_interleave (line 2790) | inline void v_store_interleave( uint64* ptr, const v_uint64x8& a, cons... function v_store_interleave (line 2822) | inline void v_store_interleave( uchar* ptr, const v_uint8x64& a, const... function v_store_interleave (line 2856) | inline void v_store_interleave( ushort* ptr, const v_uint16x32& a, con... function v_store_interleave (line 2890) | inline void v_store_interleave( unsigned* ptr, const v_uint32x16& a, c... function v_store_interleave (line 2924) | inline void v_store_interleave( uint64* ptr, const v_uint64x8& a, cons... function int64 (line 3019) | inline int64 v_signmask(const v_int8x64& a) { return (int64)_mm512_mov... function v_signmask (line 3020) | inline int v_signmask(const v_int16x32& a) { return (int)_mm512_cmp_ep... function v_signmask (line 3021) | inline int v_signmask(const v_int32x16& a) { return (int)_mm512_cmp_ep... function v_signmask (line 3022) | inline int v_signmask(const v_int64x8& a) { return (int)_mm512_cmp_epi... function int64 (line 3024) | inline int64 v_signmask(const v_uint8x64& a) { return v_signmask(v_rei... function v_signmask (line 3025) | inline int v_signmask(const v_uint16x32& a) { return v_signmask(v_rein... function v_signmask (line 3026) | inline int v_signmask(const v_uint32x16& a) { return v_signmask(v_rein... function v_signmask (line 3027) | inline int v_signmask(const v_uint64x8& a) { return v_signmask(v_reint... function v_signmask (line 3028) | inline int v_signmask(const v_float32x16& a) { return v_signmask(v_rei... function v_signmask (line 3029) | inline int v_signmask(const v_float64x8& a) { return v_signmask(v_rein... function v_check_all (line 3032) | inline bool v_check_all(const v_int8x64& a) { return !(bool)_mm512_cmp... function v_check_any (line 3033) | inline bool v_check_any(const v_int8x64& a) { return (bool)_mm512_move... function v_check_all (line 3034) | inline bool v_check_all(const v_int16x32& a) { return !(bool)_mm512_cm... function v_check_any (line 3035) | inline bool v_check_any(const v_int16x32& a) { return (bool)_mm512_cmp... function v_check_all (line 3036) | inline bool v_check_all(const v_int32x16& a) { return !(bool)_mm512_cm... function v_check_any (line 3037) | inline bool v_check_any(const v_int32x16& a) { return (bool)_mm512_cmp... function v_check_all (line 3038) | inline bool v_check_all(const v_int64x8& a) { return !(bool)_mm512_cmp... function v_check_any (line 3039) | inline bool v_check_any(const v_int64x8& a) { return (bool)_mm512_cmp_... function v_check_all (line 3041) | inline bool v_check_all(const v_float32x16& a) { return v_check_all(v_... function v_check_any (line 3042) | inline bool v_check_any(const v_float32x16& a) { return v_check_any(v_... function v_check_all (line 3043) | inline bool v_check_all(const v_float64x8& a) { return v_check_all(v_r... function v_check_any (line 3044) | inline bool v_check_any(const v_float64x8& a) { return v_check_any(v_r... function v_check_all (line 3045) | inline bool v_check_all(const v_uint8x64& a) { return v_check_all(v_re... function v_check_all (line 3046) | inline bool v_check_all(const v_uint16x32& a) { return v_check_all(v_r... function v_check_all (line 3047) | inline bool v_check_all(const v_uint32x16& a) { return v_check_all(v_r... function v_check_all (line 3048) | inline bool v_check_all(const v_uint64x8& a) { return v_check_all(v_re... function v_check_any (line 3049) | inline bool v_check_any(const v_uint8x64& a) { return v_check_any(v_re... function v_check_any (line 3050) | inline bool v_check_any(const v_uint16x32& a) { return v_check_any(v_r... function v_check_any (line 3051) | inline bool v_check_any(const v_uint32x16& a) { return v_check_any(v_r... function v_check_any (line 3052) | inline bool v_check_any(const v_uint64x8& a) { return v_check_any(v_re... function v_scan_forward (line 3054) | inline int v_scan_forward(const v_int8x64& a) function v_scan_forward (line 3060) | inline int v_scan_forward(const v_uint8x64& a) { return v_scan_forward... function v_scan_forward (line 3061) | inline int v_scan_forward(const v_int16x32& a) { return trailingZeros3... function v_scan_forward (line 3062) | inline int v_scan_forward(const v_uint16x32& a) { return trailingZeros... function v_scan_forward (line 3063) | inline int v_scan_forward(const v_int32x16& a) { return trailingZeros3... function v_scan_forward (line 3064) | inline int v_scan_forward(const v_uint32x16& a) { return trailingZeros... function v_scan_forward (line 3065) | inline int v_scan_forward(const v_float32x16& a) { return trailingZero... function v_scan_forward (line 3066) | inline int v_scan_forward(const v_int64x8& a) { return trailingZeros32... function v_scan_forward (line 3067) | inline int v_scan_forward(const v_uint64x8& a) { return trailingZeros3... function v_scan_forward (line 3068) | inline int v_scan_forward(const v_float64x8& a) { return trailingZeros... function v512_cleanup (line 3070) | inline void v512_cleanup() { _mm256_zeroall(); } FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin_cpp.hpp type v_reg (line 368) | struct v_reg method v_reg (line 379) | explicit v_reg(const _Tp* ptr) { for( int i = 0; i < n; i++ ) s[i] = p... method v_reg (line 384) | v_reg(_Tp s0, _Tp s1) { s[0] = s0; s[1] = s1; } method v_reg (line 389) | v_reg(_Tp s0, _Tp s1, _Tp s2, _Tp s3) { s[0] = s0; s[1] = s1; s[2] = s... method v_reg (line 394) | v_reg(_Tp s0, _Tp s1, _Tp s2, _Tp s3, method v_reg (line 404) | v_reg(_Tp s0, _Tp s1, _Tp s2, _Tp s3, method v_reg (line 418) | v_reg() {} method v_reg (line 421) | v_reg(const v_reg<_Tp, n> & r) method _Tp (line 436) | _Tp get0() const { return s[0]; } method _Tp (line 439) | _Tp get(const int i) const { return s[i]; } method high (line 440) | v_reg<_Tp, n> high() const method zero (line 452) | static v_reg<_Tp, n> zero() method all (line 460) | static v_reg<_Tp, n> all(_Tp s) method reinterpret_as (line 468) | v_reg<_Tp2, n2> reinterpret_as() const method v_reg (line 476) | v_reg& operator=(const v_reg<_Tp, n> & r) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin_forward.hpp type cv (line 9) | namespace cv type v_uint8x64 (line 33) | struct v_uint8x64 type v_int8x64 (line 34) | struct v_int8x64 type v_uint16x32 (line 35) | struct v_uint16x32 type v_int16x32 (line 36) | struct v_int16x32 type v_uint32x16 (line 37) | struct v_uint32x16 type v_int32x16 (line 38) | struct v_int32x16 type v_uint64x8 (line 39) | struct v_uint64x8 type v_int64x8 (line 40) | struct v_int64x8 type v_float32x16 (line 41) | struct v_float32x16 type v_float64x8 (line 42) | struct v_float64x8 type v_uint8x32 (line 56) | struct v_uint8x32 type v_int8x32 (line 57) | struct v_int8x32 type v_uint16x16 (line 58) | struct v_uint16x16 type v_int16x16 (line 59) | struct v_int16x16 type v_uint32x8 (line 60) | struct v_uint32x8 type v_int32x8 (line 61) | struct v_int32x8 type v_uint64x4 (line 62) | struct v_uint64x4 type v_int64x4 (line 63) | struct v_int64x4 type v_float32x8 (line 64) | struct v_float32x8 type v_float64x4 (line 65) | struct v_float64x4 type v_uint8x16 (line 79) | struct v_uint8x16 type v_int8x16 (line 80) | struct v_int8x16 type v_uint16x8 (line 81) | struct v_uint16x8 type v_int16x8 (line 82) | struct v_int16x8 type v_uint32x4 (line 83) | struct v_uint32x4 type v_int32x4 (line 84) | struct v_int32x4 type v_uint64x2 (line 85) | struct v_uint64x2 type v_int64x2 (line 86) | struct v_int64x2 type v_float32x4 (line 87) | struct v_float32x4 type v_float64x2 (line 88) | struct v_float64x2 FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin_msa.hpp type cv (line 11) | namespace cv type v_uint8x16 (line 23) | struct v_uint8x16 method v_uint8x16 (line 28) | v_uint8x16() {} method v_uint8x16 (line 29) | explicit v_uint8x16(v16u8 v) : val(v) {} method v_uint8x16 (line 30) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const type v_int8x16 (line 45) | struct v_int8x16 method v_int8x16 (line 50) | v_int8x16() {} method v_int8x16 (line 51) | explicit v_int8x16(v16i8 v) : val(v) {} method v_int8x16 (line 52) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 59) | schar get0() const type v_uint16x8 (line 67) | struct v_uint16x8 method v_uint16x8 (line 72) | v_uint16x8() {} method v_uint16x8 (line 73) | explicit v_uint16x8(v8u16 v) : val(v) {} method v_uint16x8 (line 74) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 80) | ushort get0() const type v_int16x8 (line 88) | struct v_int16x8 method v_int16x8 (line 93) | v_int16x8() {} method v_int16x8 (line 94) | explicit v_int16x8(v8i16 v) : val(v) {} method v_int16x8 (line 95) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 101) | short get0() const type v_uint32x4 (line 109) | struct v_uint32x4 method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const type v_int32x4 (line 130) | struct v_int32x4 method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const type v_float32x4 (line 151) | struct v_float32x4 method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const type v_uint64x2 (line 172) | struct v_uint64x2 method v_uint64x2 (line 177) | v_uint64x2() {} method v_uint64x2 (line 178) | explicit v_uint64x2(v2u64 v) : val(v) {} method v_uint64x2 (line 179) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 185) | uint64 get0() const type v_int64x2 (line 193) | struct v_int64x2 method v_int64x2 (line 198) | v_int64x2() {} method v_int64x2 (line 199) | explicit v_int64x2(v2i64 v) : val(v) {} method v_int64x2 (line 200) | v_int64x2(int64 v0, int64 v1) method int64 (line 206) | int64 get0() const type v_float64x2 (line 214) | struct v_float64x2 method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_uint8x16 (line 303) | inline v_uint8x16 v_pack_b(const v_uint16x8& a, const v_uint16x8& b) method v_uint8x16 (line 28) | v_uint8x16() {} method v_uint8x16 (line 29) | explicit v_uint8x16(v16u8 v) : val(v) {} method v_uint8x16 (line 30) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const function v_uint8x16 (line 308) | inline v_uint8x16 v_pack_b(const v_uint32x4& a, const v_uint32x4& b, method v_uint8x16 (line 28) | v_uint8x16() {} method v_uint8x16 (line 29) | explicit v_uint8x16(v16u8 v) : val(v) {} method v_uint8x16 (line 30) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const function v_uint8x16 (line 314) | inline v_uint8x16 v_pack_b(const v_uint64x2& a, const v_uint64x2& b, c... method v_uint8x16 (line 28) | v_uint8x16() {} method v_uint8x16 (line 29) | explicit v_uint8x16(v16u8 v) : val(v) {} method v_uint8x16 (line 30) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const function v_float32x4 (line 323) | inline v_float32x4 v_matmul(const v_float32x4& v, const v_float32x4& m0, method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_float32x4 (line 335) | inline v_float32x4 v_matmuladd(const v_float32x4& v, const v_float32x4... method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_mul_expand (line 402) | inline void v_mul_expand(const v_int8x16& a, const v_int8x16& b, function v_mul_expand (line 413) | inline void v_mul_expand(const v_uint8x16& a, const v_uint8x16& b, function v_mul_expand (line 424) | inline void v_mul_expand(const v_int16x8& a, const v_int16x8& b, function v_mul_expand (line 435) | inline void v_mul_expand(const v_uint16x8& a, const v_uint16x8& b, function v_mul_expand (line 446) | inline void v_mul_expand(const v_uint32x4& a, const v_uint32x4& b, function v_int16x8 (line 457) | inline v_int16x8 v_mul_hi(const v_int16x8& a, const v_int16x8& b) method v_int16x8 (line 93) | v_int16x8() {} method v_int16x8 (line 94) | explicit v_int16x8(v8i16 v) : val(v) {} method v_int16x8 (line 95) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 101) | short get0() const function v_uint16x8 (line 468) | inline v_uint16x8 v_mul_hi(const v_uint16x8& a, const v_uint16x8& b) method v_uint16x8 (line 72) | v_uint16x8() {} method v_uint16x8 (line 73) | explicit v_uint16x8(v8u16 v) : val(v) {} method v_uint16x8 (line 74) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 80) | ushort get0() const function v_int32x4 (line 482) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 484) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b, con... method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int64x2 (line 488) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b) method v_int64x2 (line 198) | v_int64x2() {} method v_int64x2 (line 199) | explicit v_int64x2(v2i64 v) : val(v) {} method v_int64x2 (line 200) | v_int64x2(int64 v0, int64 v1) method int64 (line 206) | int64 get0() const function v_int64x2 (line 490) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b, con... method v_int64x2 (line 198) | v_int64x2() {} method v_int64x2 (line 199) | explicit v_int64x2(v2i64 v) : val(v) {} method v_int64x2 (line 200) | v_int64x2(int64 v0, int64 v1) method int64 (line 206) | int64 get0() const function v_uint32x4 (line 494) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_uint32x4 (line 503) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_int32x4 (line 513) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16& b) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 518) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16& b, method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_uint64x2 (line 523) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... method v_uint64x2 (line 177) | v_uint64x2() {} method v_uint64x2 (line 178) | explicit v_uint64x2(v2u64 v) : val(v) {} method v_uint64x2 (line 179) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 185) | uint64 get0() const function v_uint64x2 (line 532) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... method v_uint64x2 (line 177) | v_uint64x2() {} method v_uint64x2 (line 178) | explicit v_uint64x2(v2u64 v) : val(v) {} method v_uint64x2 (line 179) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 185) | uint64 get0() const function v_int64x2 (line 543) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8& b) method v_int64x2 (line 198) | v_int64x2() {} method v_int64x2 (line 199) | explicit v_int64x2(v2i64 v) : val(v) {} method v_int64x2 (line 200) | v_int64x2(int64 v0, int64 v1) method int64 (line 206) | int64 get0() const function v_int64x2 (line 548) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8&... method v_int64x2 (line 198) | v_int64x2() {} method v_int64x2 (line 199) | explicit v_int64x2(v2i64 v) : val(v) {} method v_int64x2 (line 200) | v_int64x2(int64 v0, int64 v1) method int64 (line 206) | int64 get0() const function v_float64x2 (line 552) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int32x... method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float64x2 (line 554) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int32x... method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_int32x4 (line 561) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 563) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b... method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int64x2 (line 567) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b) method v_int64x2 (line 198) | v_int64x2() {} method v_int64x2 (line 199) | explicit v_int64x2(v2i64 v) : val(v) {} method v_int64x2 (line 200) | v_int64x2(int64 v0, int64 v1) method int64 (line 206) | int64 get0() const function v_int64x2 (line 569) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b... method v_int64x2 (line 198) | v_int64x2() {} method v_int64x2 (line 199) | explicit v_int64x2(v2i64 v) : val(v) {} method v_int64x2 (line 200) | v_int64x2(int64 v0, int64 v1) method int64 (line 206) | int64 get0() const function v_uint32x4 (line 573) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_uint32x4 (line 575) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_int32x4 (line 577) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 579) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_uint64x2 (line 583) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... method v_uint64x2 (line 177) | v_uint64x2() {} method v_uint64x2 (line 178) | explicit v_uint64x2(v2u64 v) : val(v) {} method v_uint64x2 (line 179) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 185) | uint64 get0() const function v_uint64x2 (line 585) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... method v_uint64x2 (line 177) | v_uint64x2() {} method v_uint64x2 (line 178) | explicit v_uint64x2(v2u64 v) : val(v) {} method v_uint64x2 (line 179) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 185) | uint64 get0() const function v_int64x2 (line 587) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... method v_int64x2 (line 198) | v_int64x2() {} method v_int64x2 (line 199) | explicit v_int64x2(v2i64 v) : val(v) {} method v_int64x2 (line 200) | v_int64x2(int64 v0, int64 v1) method int64 (line 206) | int64 get0() const function v_int64x2 (line 589) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... method v_int64x2 (line 198) | v_int64x2() {} method v_int64x2 (line 199) | explicit v_int64x2(v2i64 v) : val(v) {} method v_int64x2 (line 200) | v_int64x2(int64 v0, int64 v1) method int64 (line 206) | int64 get0() const function v_float64x2 (line 593) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_i... method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float64x2 (line 595) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_i... method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float32x4 (line 631) | inline v_float32x4 operator ~ (const v_float32x4& a) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_float64x2 (line 676) | inline v_float64x2 operator ~ (const v_float64x2& a) method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float32x4 (line 731) | inline v_float32x4 v_not_nan(const v_float32x4& a) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_float64x2 (line 733) | inline v_float64x2 v_not_nan(const v_float64x2& a) method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float32x4 (line 770) | inline v_float32x4 v_magnitude(const v_float32x4& a, const v_float32x4... method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_float32x4 (line 776) | inline v_float32x4 v_sqr_magnitude(const v_float32x4& a, const v_float... method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_float32x4 (line 781) | inline v_float32x4 v_fma(const v_float32x4& a, const v_float32x4& b, c... method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_int32x4 (line 786) | inline v_int32x4 v_fma(const v_int32x4& a, const v_int32x4& b, const v... method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_float32x4 (line 791) | inline v_float32x4 v_muladd(const v_float32x4& a, const v_float32x4& b... method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_int32x4 (line 796) | inline v_int32x4 v_muladd(const v_int32x4& a, const v_int32x4& b, cons... method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_float64x2 (line 801) | inline v_float64x2 v_magnitude(const v_float64x2& a, const v_float64x2... method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float64x2 (line 807) | inline v_float64x2 v_sqr_magnitude(const v_float64x2& a, const v_float... method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float64x2 (line 812) | inline v_float64x2 v_fma(const v_float64x2& a, const v_float64x2& b, c... method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float64x2 (line 817) | inline v_float64x2 v_muladd(const v_float64x2& a, const v_float64x2& b... method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_uint8x16 (line 926) | inline v_uint8x16 v_reverse(const v_uint8x16 &a) method v_uint8x16 (line 28) | v_uint8x16() {} method v_uint8x16 (line 29) | explicit v_uint8x16(v16u8 v) : val(v) {} method v_uint8x16 (line 30) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const function v_int8x16 (line 932) | inline v_int8x16 v_reverse(const v_int8x16 &a) method v_int8x16 (line 50) | v_int8x16() {} method v_int8x16 (line 51) | explicit v_int8x16(v16i8 v) : val(v) {} method v_int8x16 (line 52) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 59) | schar get0() const function v_uint16x8 (line 935) | inline v_uint16x8 v_reverse(const v_uint16x8 &a) method v_uint16x8 (line 72) | v_uint16x8() {} method v_uint16x8 (line 73) | explicit v_uint16x8(v8u16 v) : val(v) {} method v_uint16x8 (line 74) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 80) | ushort get0() const function v_int16x8 (line 941) | inline v_int16x8 v_reverse(const v_int16x8 &a) method v_int16x8 (line 93) | v_int16x8() {} method v_int16x8 (line 94) | explicit v_int16x8(v8i16 v) : val(v) {} method v_int16x8 (line 95) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 101) | short get0() const function v_uint32x4 (line 944) | inline v_uint32x4 v_reverse(const v_uint32x4 &a) method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_int32x4 (line 954) | inline v_int32x4 v_reverse(const v_int32x4 &a) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_float32x4 (line 957) | inline v_float32x4 v_reverse(const v_float32x4 &a) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_uint64x2 (line 960) | inline v_uint64x2 v_reverse(const v_uint64x2 &a) method v_uint64x2 (line 177) | v_uint64x2() {} method v_uint64x2 (line 178) | explicit v_uint64x2(v2u64 v) : val(v) {} method v_uint64x2 (line 179) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 185) | uint64 get0() const function v_int64x2 (line 968) | inline v_int64x2 v_reverse(const v_int64x2 &a) method v_int64x2 (line 198) | v_int64x2() {} method v_int64x2 (line 199) | explicit v_int64x2(v2i64 v) : val(v) {} method v_int64x2 (line 200) | v_int64x2(int64 v0, int64 v1) method int64 (line 206) | int64 get0() const function v_float64x2 (line 971) | inline v_float64x2 v_reverse(const v_float64x2 &a) method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function uint64 (line 1048) | inline uint64 v_reduce_sum(const v_uint64x2& a) function int64 (line 1050) | inline int64 v_reduce_sum(const v_int64x2& a) function v_reduce_sum (line 1052) | inline double v_reduce_sum(const v_float64x2& a) function v_float32x4 (line 1058) | inline v_float32x4 v_reduce_sum4(const v_float32x4& a, const v_float32... method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_reduce_sad (line 1070) | inline unsigned v_reduce_sad(const v_uint8x16& a, const v_uint8x16& b) function v_reduce_sad (line 1077) | inline unsigned v_reduce_sad(const v_int8x16& a, const v_int8x16& b) function v_reduce_sad (line 1084) | inline unsigned v_reduce_sad(const v_uint16x8& a, const v_uint16x8& b) function v_reduce_sad (line 1090) | inline unsigned v_reduce_sad(const v_int16x8& a, const v_int16x8& b) function v_reduce_sad (line 1096) | inline unsigned v_reduce_sad(const v_uint32x4& a, const v_uint32x4& b) function v_reduce_sad (line 1101) | inline unsigned v_reduce_sad(const v_int32x4& a, const v_int32x4& b) function v_reduce_sad (line 1106) | inline float v_reduce_sad(const v_float32x4& a, const v_float32x4& b) function v_signmask (line 1149) | inline int v_signmask(const v_uint8x16& a) function v_signmask (line 1158) | inline int v_signmask(const v_int8x16& a) function v_signmask (line 1161) | inline int v_signmask(const v_uint16x8& a) function v_signmask (line 1169) | inline int v_signmask(const v_int16x8& a) function v_signmask (line 1172) | inline int v_signmask(const v_uint32x4& a) function v_signmask (line 1179) | inline int v_signmask(const v_int32x4& a) function v_signmask (line 1181) | inline int v_signmask(const v_float32x4& a) function v_signmask (line 1184) | inline int v_signmask(const v_uint64x2& a) function v_signmask (line 1189) | inline int v_signmask(const v_int64x2& a) function v_signmask (line 1191) | inline int v_signmask(const v_float64x2& a) function v_scan_forward (line 1194) | inline int v_scan_forward(const v_int8x16& a) { return trailingZeros32... function v_scan_forward (line 1195) | inline int v_scan_forward(const v_uint8x16& a) { return trailingZeros3... function v_scan_forward (line 1196) | inline int v_scan_forward(const v_int16x8& a) { return trailingZeros32... function v_scan_forward (line 1197) | inline int v_scan_forward(const v_uint16x8& a) { return trailingZeros3... function v_scan_forward (line 1198) | inline int v_scan_forward(const v_int32x4& a) { return trailingZeros32... function v_scan_forward (line 1199) | inline int v_scan_forward(const v_uint32x4& a) { return trailingZeros3... function v_scan_forward (line 1200) | inline int v_scan_forward(const v_float32x4& a) { return trailingZeros... function v_scan_forward (line 1201) | inline int v_scan_forward(const v_int64x2& a) { return trailingZeros32... function v_scan_forward (line 1202) | inline int v_scan_forward(const v_uint64x2& a) { return trailingZeros3... function v_scan_forward (line 1203) | inline int v_scan_forward(const v_float64x2& a) { return trailingZeros... function v_check_all (line 1224) | inline bool v_check_all(const v_int8x16& a) function v_check_all (line 1226) | inline bool v_check_all(const v_int16x8& a) function v_check_all (line 1228) | inline bool v_check_all(const v_int32x4& a) function v_check_all (line 1230) | inline bool v_check_all(const v_float32x4& a) function v_check_any (line 1233) | inline bool v_check_any(const v_int8x16& a) function v_check_any (line 1235) | inline bool v_check_any(const v_int16x8& a) function v_check_any (line 1237) | inline bool v_check_any(const v_int32x4& a) function v_check_any (line 1239) | inline bool v_check_any(const v_float32x4& a) function v_check_all (line 1242) | inline bool v_check_all(const v_int64x2& a) function v_check_all (line 1244) | inline bool v_check_all(const v_float64x2& a) function v_check_any (line 1246) | inline bool v_check_any(const v_int64x2& a) function v_check_any (line 1248) | inline bool v_check_any(const v_float64x2& a) function v_uint32x4 (line 1298) | inline v_uint32x4 v_load_expand_q(const uchar* ptr) method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_int32x4 (line 1303) | inline v_int32x4 v_load_expand_q(const schar* ptr) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 1358) | inline v_int32x4 v_round(const v_float32x4& a) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 1363) | inline v_int32x4 v_floor(const v_float32x4& a) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 1369) | inline v_int32x4 v_ceil(const v_float32x4& a) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 1375) | inline v_int32x4 v_trunc(const v_float32x4& a) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 1380) | inline v_int32x4 v_round(const v_float64x2& a) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 1385) | inline v_int32x4 v_round(const v_float64x2& a, const v_float64x2& b) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 1390) | inline v_int32x4 v_floor(const v_float64x2& a) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 1396) | inline v_int32x4 v_ceil(const v_float64x2& a) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 1402) | inline v_int32x4 v_trunc(const v_float64x2& a) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_float32x4 (line 1470) | inline v_float32x4 v_cvt_f32(const v_int32x4& a) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_float32x4 (line 1475) | inline v_float32x4 v_cvt_f32(const v_float64x2& a) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_float32x4 (line 1480) | inline v_float32x4 v_cvt_f32(const v_float64x2& a, const v_float64x2& b) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_float64x2 (line 1485) | inline v_float64x2 v_cvt_f64(const v_int32x4& a) method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float64x2 (line 1490) | inline v_float64x2 v_cvt_f64_high(const v_int32x4& a) method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float64x2 (line 1495) | inline v_float64x2 v_cvt_f64(const v_float32x4& a) method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float64x2 (line 1500) | inline v_float64x2 v_cvt_f64_high(const v_float32x4& a) method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float64x2 (line 1505) | inline v_float64x2 v_cvt_f64(const v_int64x2& a) method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_int8x16 (line 1511) | inline v_int8x16 v_lut(const schar* tab, const int* idx) method v_int8x16 (line 50) | v_int8x16() {} method v_int8x16 (line 51) | explicit v_int8x16(v16i8 v) : val(v) {} method v_int8x16 (line 52) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 59) | schar get0() const function v_int8x16 (line 1534) | inline v_int8x16 v_lut_pairs(const schar* tab, const int* idx) method v_int8x16 (line 50) | v_int8x16() {} method v_int8x16 (line 51) | explicit v_int8x16(v16i8 v) : val(v) {} method v_int8x16 (line 52) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 59) | schar get0() const function v_int8x16 (line 1557) | inline v_int8x16 v_lut_quads(const schar* tab, const int* idx) method v_int8x16 (line 50) | v_int8x16() {} method v_int8x16 (line 51) | explicit v_int8x16(v16i8 v) : val(v) {} method v_int8x16 (line 52) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 59) | schar get0() const function v_uint8x16 (line 1580) | inline v_uint8x16 v_lut(const uchar* tab, const int* idx) { return v_r... method v_uint8x16 (line 28) | v_uint8x16() {} method v_uint8x16 (line 29) | explicit v_uint8x16(v16u8 v) : val(v) {} method v_uint8x16 (line 30) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const function v_uint8x16 (line 1581) | inline v_uint8x16 v_lut_pairs(const uchar* tab, const int* idx) { retu... method v_uint8x16 (line 28) | v_uint8x16() {} method v_uint8x16 (line 29) | explicit v_uint8x16(v16u8 v) : val(v) {} method v_uint8x16 (line 30) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const function v_uint8x16 (line 1582) | inline v_uint8x16 v_lut_quads(const uchar* tab, const int* idx) { retu... method v_uint8x16 (line 28) | v_uint8x16() {} method v_uint8x16 (line 29) | explicit v_uint8x16(v16u8 v) : val(v) {} method v_uint8x16 (line 30) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const function v_int16x8 (line 1585) | inline v_int16x8 v_lut(const short* tab, const int* idx) method v_int16x8 (line 93) | v_int16x8() {} method v_int16x8 (line 94) | explicit v_int16x8(v8i16 v) : val(v) {} method v_int16x8 (line 95) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 101) | short get0() const function v_int16x8 (line 1600) | inline v_int16x8 v_lut_pairs(const short* tab, const int* idx) method v_int16x8 (line 93) | v_int16x8() {} method v_int16x8 (line 94) | explicit v_int16x8(v8i16 v) : val(v) {} method v_int16x8 (line 95) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 101) | short get0() const function v_int16x8 (line 1615) | inline v_int16x8 v_lut_quads(const short* tab, const int* idx) method v_int16x8 (line 93) | v_int16x8() {} method v_int16x8 (line 94) | explicit v_int16x8(v8i16 v) : val(v) {} method v_int16x8 (line 95) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 101) | short get0() const function v_uint16x8 (line 1619) | inline v_uint16x8 v_lut(const ushort* tab, const int* idx) { return v_... method v_uint16x8 (line 72) | v_uint16x8() {} method v_uint16x8 (line 73) | explicit v_uint16x8(v8u16 v) : val(v) {} method v_uint16x8 (line 74) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 80) | ushort get0() const function v_uint16x8 (line 1620) | inline v_uint16x8 v_lut_pairs(const ushort* tab, const int* idx) { ret... method v_uint16x8 (line 72) | v_uint16x8() {} method v_uint16x8 (line 73) | explicit v_uint16x8(v8u16 v) : val(v) {} method v_uint16x8 (line 74) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 80) | ushort get0() const function v_uint16x8 (line 1621) | inline v_uint16x8 v_lut_quads(const ushort* tab, const int* idx) { ret... method v_uint16x8 (line 72) | v_uint16x8() {} method v_uint16x8 (line 73) | explicit v_uint16x8(v8u16 v) : val(v) {} method v_uint16x8 (line 74) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 80) | ushort get0() const function v_int32x4 (line 1623) | inline v_int32x4 v_lut(const int* tab, const int* idx) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 1634) | inline v_int32x4 v_lut_pairs(const int* tab, const int* idx) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_int32x4 (line 1638) | inline v_int32x4 v_lut_quads(const int* tab, const int* idx) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_uint32x4 (line 1642) | inline v_uint32x4 v_lut(const unsigned* tab, const int* idx) { return ... method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_uint32x4 (line 1643) | inline v_uint32x4 v_lut_pairs(const unsigned* tab, const int* idx) { r... method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_uint32x4 (line 1644) | inline v_uint32x4 v_lut_quads(const unsigned* tab, const int* idx) { r... method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_int64x2 (line 1646) | inline v_int64x2 v_lut(const int64_t* tab, const int* idx) method v_int64x2 (line 198) | v_int64x2() {} method v_int64x2 (line 199) | explicit v_int64x2(v2i64 v) : val(v) {} method v_int64x2 (line 200) | v_int64x2(int64 v0, int64 v1) method int64 (line 206) | int64 get0() const function v_int64x2 (line 1650) | inline v_int64x2 v_lut_pairs(const int64_t* tab, const int* idx) method v_int64x2 (line 198) | v_int64x2() {} method v_int64x2 (line 199) | explicit v_int64x2(v2i64 v) : val(v) {} method v_int64x2 (line 200) | v_int64x2(int64 v0, int64 v1) method int64 (line 206) | int64 get0() const function v_uint64x2 (line 1654) | inline v_uint64x2 v_lut(const uint64_t* tab, const int* idx) { return ... method v_uint64x2 (line 177) | v_uint64x2() {} method v_uint64x2 (line 178) | explicit v_uint64x2(v2u64 v) : val(v) {} method v_uint64x2 (line 179) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 185) | uint64 get0() const function v_uint64x2 (line 1655) | inline v_uint64x2 v_lut_pairs(const uint64_t* tab, const int* idx) { r... method v_uint64x2 (line 177) | v_uint64x2() {} method v_uint64x2 (line 178) | explicit v_uint64x2(v2u64 v) : val(v) {} method v_uint64x2 (line 179) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 185) | uint64 get0() const function v_float32x4 (line 1657) | inline v_float32x4 v_lut(const float* tab, const int* idx) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_float32x4 (line 1668) | inline v_float32x4 v_lut_pairs(const float* tab, const int* idx) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_float32x4 (line 1677) | inline v_float32x4 v_lut_quads(const float* tab, const int* idx) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_int32x4 (line 1682) | inline v_int32x4 v_lut(const int* tab, const v_int32x4& idxvec) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_uint32x4 (line 1690) | inline v_uint32x4 v_lut(const unsigned* tab, const v_int32x4& idxvec) method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_float32x4 (line 1702) | inline v_float32x4 v_lut(const float* tab, const v_int32x4& idxvec) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_lut_deinterleave (line 1710) | inline void v_lut_deinterleave(const float* tab, const v_int32x4& idxv... function v_int8x16 (line 1721) | inline v_int8x16 v_interleave_pairs(const v_int8x16& vec) method v_int8x16 (line 50) | v_int8x16() {} method v_int8x16 (line 51) | explicit v_int8x16(v16i8 v) : val(v) {} method v_int8x16 (line 52) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 59) | schar get0() const function v_uint8x16 (line 1726) | inline v_uint8x16 v_interleave_pairs(const v_uint8x16& vec) method v_uint8x16 (line 28) | v_uint8x16() {} method v_uint8x16 (line 29) | explicit v_uint8x16(v16u8 v) : val(v) {} method v_uint8x16 (line 30) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const function v_int8x16 (line 1728) | inline v_int8x16 v_interleave_quads(const v_int8x16& vec) method v_int8x16 (line 50) | v_int8x16() {} method v_int8x16 (line 51) | explicit v_int8x16(v16i8 v) : val(v) {} method v_int8x16 (line 52) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 59) | schar get0() const function v_uint8x16 (line 1733) | inline v_uint8x16 v_interleave_quads(const v_uint8x16& vec) { return v... method v_uint8x16 (line 28) | v_uint8x16() {} method v_uint8x16 (line 29) | explicit v_uint8x16(v16u8 v) : val(v) {} method v_uint8x16 (line 30) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const function v_int16x8 (line 1735) | inline v_int16x8 v_interleave_pairs(const v_int16x8& vec) method v_int16x8 (line 93) | v_int16x8() {} method v_int16x8 (line 94) | explicit v_int16x8(v8i16 v) : val(v) {} method v_int16x8 (line 95) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 101) | short get0() const function v_uint16x8 (line 1741) | inline v_uint16x8 v_interleave_pairs(const v_uint16x8& vec) { return v... method v_uint16x8 (line 72) | v_uint16x8() {} method v_uint16x8 (line 73) | explicit v_uint16x8(v8u16 v) : val(v) {} method v_uint16x8 (line 74) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 80) | ushort get0() const function v_int16x8 (line 1743) | inline v_int16x8 v_interleave_quads(const v_int16x8& vec) method v_int16x8 (line 93) | v_int16x8() {} method v_int16x8 (line 94) | explicit v_int16x8(v8i16 v) : val(v) {} method v_int16x8 (line 95) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 101) | short get0() const function v_uint16x8 (line 1749) | inline v_uint16x8 v_interleave_quads(const v_uint16x8& vec) { return v... method v_uint16x8 (line 72) | v_uint16x8() {} method v_uint16x8 (line 73) | explicit v_uint16x8(v8u16 v) : val(v) {} method v_uint16x8 (line 74) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 80) | ushort get0() const function v_int32x4 (line 1751) | inline v_int32x4 v_interleave_pairs(const v_int32x4& vec) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_uint32x4 (line 1761) | inline v_uint32x4 v_interleave_pairs(const v_uint32x4& vec) { return v... method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_float32x4 (line 1762) | inline v_float32x4 v_interleave_pairs(const v_float32x4& vec) { return... method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_int8x16 (line 1764) | inline v_int8x16 v_pack_triplets(const v_int8x16& vec) method v_int8x16 (line 50) | v_int8x16() {} method v_int8x16 (line 51) | explicit v_int8x16(v16i8 v) : val(v) {} method v_int8x16 (line 52) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 59) | schar get0() const function v_uint8x16 (line 1770) | inline v_uint8x16 v_pack_triplets(const v_uint8x16& vec) { return v_re... method v_uint8x16 (line 28) | v_uint8x16() {} method v_uint8x16 (line 29) | explicit v_uint8x16(v16u8 v) : val(v) {} method v_uint8x16 (line 30) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const function v_int16x8 (line 1772) | inline v_int16x8 v_pack_triplets(const v_int16x8& vec) method v_int16x8 (line 93) | v_int16x8() {} method v_int16x8 (line 94) | explicit v_int16x8(v8i16 v) : val(v) {} method v_int16x8 (line 95) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 101) | short get0() const function v_uint16x8 (line 1778) | inline v_uint16x8 v_pack_triplets(const v_uint16x8& vec) { return v_re... method v_uint16x8 (line 72) | v_uint16x8() {} method v_uint16x8 (line 73) | explicit v_uint16x8(v8u16 v) : val(v) {} method v_uint16x8 (line 74) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 80) | ushort get0() const function v_int32x4 (line 1779) | inline v_int32x4 v_pack_triplets(const v_int32x4& vec) { return vec; } method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_uint32x4 (line 1780) | inline v_uint32x4 v_pack_triplets(const v_uint32x4& vec) { return vec; } method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_float32x4 (line 1781) | inline v_float32x4 v_pack_triplets(const v_float32x4& vec) { return ve... method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_float64x2 (line 1783) | inline v_float64x2 v_lut(const double* tab, const int* idx) method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float64x2 (line 1793) | inline v_float64x2 v_lut_pairs(const double* tab, const int* idx) method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_float64x2 (line 1798) | inline v_float64x2 v_lut(const double* tab, const v_int32x4& idxvec) method v_float64x2 (line 219) | v_float64x2() {} method v_float64x2 (line 220) | explicit v_float64x2(v2f64 v) : val(v) {} method v_float64x2 (line 221) | v_float64x2(double v0, double v1) method get0 (line 227) | double get0() const function v_lut_deinterleave (line 1806) | inline void v_lut_deinterleave(const double* tab, const v_int32x4& idx... function v_extract_n (line 1818) | inline typename _Tp::lane_type v_extract_n(const _Tp& a) function v_uint32x4 (line 1824) | inline v_uint32x4 v_broadcast_element(const v_uint32x4& a) method v_uint32x4 (line 114) | v_uint32x4() {} method v_uint32x4 (line 115) | explicit v_uint32x4(v4u32 v) : val(v) {} method v_uint32x4 (line 116) | v_uint32x4(unsigned int v0, unsigned int v1, unsigned int v2, unsign... method get0 (line 122) | unsigned int get0() const function v_int32x4 (line 1829) | inline v_int32x4 v_broadcast_element(const v_int32x4& a) method v_int32x4 (line 135) | v_int32x4() {} method v_int32x4 (line 136) | explicit v_int32x4(v4i32 v) : val(v) {} method v_int32x4 (line 137) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 143) | int get0() const function v_float32x4 (line 1834) | inline v_float32x4 v_broadcast_element(const v_float32x4& a) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_float32x4 (line 1841) | inline v_float32x4 v_load_expand(const float16_t* ptr) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_pack_store (line 1851) | inline void v_pack_store(float16_t* ptr, const v_float32x4& v) function v_float32x4 (line 1862) | inline v_float32x4 v_load_expand(const float16_t* ptr) method v_float32x4 (line 156) | v_float32x4() {} method v_float32x4 (line 157) | explicit v_float32x4(v4f32 v) : val(v) {} method v_float32x4 (line 158) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 164) | float get0() const function v_pack_store (line 1870) | inline void v_pack_store(float16_t* ptr, const v_float32x4& v) function v_cleanup (line 1879) | inline void v_cleanup() {} FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin_neon.hpp type cv (line 51) | namespace cv type v_uint8x16 (line 138) | struct v_uint8x16 method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const type v_int8x16 (line 159) | struct v_int8x16 method v_int8x16 (line 164) | v_int8x16() {} method v_int8x16 (line 165) | explicit v_int8x16(int8x16_t v) : val(v) {} method v_int8x16 (line 166) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 172) | schar get0() const type v_uint16x8 (line 180) | struct v_uint16x8 method v_uint16x8 (line 185) | v_uint16x8() {} method v_uint16x8 (line 186) | explicit v_uint16x8(uint16x8_t v) : val(v) {} method v_uint16x8 (line 187) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 192) | ushort get0() const type v_int16x8 (line 200) | struct v_int16x8 method v_int16x8 (line 205) | v_int16x8() {} method v_int16x8 (line 206) | explicit v_int16x8(int16x8_t v) : val(v) {} method v_int16x8 (line 207) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 212) | short get0() const type v_uint32x4 (line 220) | struct v_uint32x4 method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const type v_int32x4 (line 240) | struct v_int32x4 method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const type v_float32x4 (line 259) | struct v_float32x4 method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const type v_uint64x2 (line 278) | struct v_uint64x2 method v_uint64x2 (line 283) | v_uint64x2() {} method v_uint64x2 (line 284) | explicit v_uint64x2(uint64x2_t v) : val(v) {} method v_uint64x2 (line 285) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 290) | uint64 get0() const type v_int64x2 (line 297) | struct v_int64x2 method v_int64x2 (line 302) | v_int64x2() {} method v_int64x2 (line 303) | explicit v_int64x2(int64x2_t v) : val(v) {} method v_int64x2 (line 304) | v_int64x2(int64 v0, int64 v1) method int64 (line 309) | int64 get0() const type v_float64x2 (line 317) | struct v_float64x2 method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_uint8x16 (line 412) | inline v_uint8x16 v_pack_b(const v_uint16x8& a, const v_uint16x8& b) method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const function v_uint8x16 (line 418) | inline v_uint8x16 v_pack_b(const v_uint32x4& a, const v_uint32x4& b, method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const function v_uint8x16 (line 426) | inline v_uint8x16 v_pack_b(const v_uint64x2& a, const v_uint64x2& b, c... method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const function v_float32x4 (line 440) | inline v_float32x4 v_matmul(const v_float32x4& v, const v_float32x4& m0, method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 452) | inline v_float32x4 v_matmuladd(const v_float32x4& v, const v_float32x4... method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 503) | inline v_float32x4 operator / (const v_float32x4& a, const v_float32x4... method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 510) | inline v_float32x4& operator /= (v_float32x4& a, const v_float32x4& b) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_mul_expand (line 537) | inline void v_mul_expand(const v_int8x16& a, const v_int8x16& b, function v_mul_expand (line 548) | inline void v_mul_expand(const v_uint8x16& a, const v_uint8x16& b, function v_mul_expand (line 559) | inline void v_mul_expand(const v_int16x8& a, const v_int16x8& b, function v_mul_expand (line 570) | inline void v_mul_expand(const v_uint16x8& a, const v_uint16x8& b, function v_mul_expand (line 581) | inline void v_mul_expand(const v_uint32x4& a, const v_uint32x4& b, function v_int16x8 (line 592) | inline v_int16x8 v_mul_hi(const v_int16x8& a, const v_int16x8& b) method v_int16x8 (line 205) | v_int16x8() {} method v_int16x8 (line 206) | explicit v_int16x8(int16x8_t v) : val(v) {} method v_int16x8 (line 207) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 212) | short get0() const function v_uint16x8 (line 605) | inline v_uint16x8 v_mul_hi(const v_uint16x8& a, const v_uint16x8& b) method v_uint16x8 (line 185) | v_uint16x8() {} method v_uint16x8 (line 186) | explicit v_uint16x8(uint16x8_t v) : val(v) {} method v_uint16x8 (line 187) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 192) | ushort get0() const function v_int32x4 (line 622) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 633) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b, con... method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int64x2 (line 646) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b) method v_int64x2 (line 302) | v_int64x2() {} method v_int64x2 (line 303) | explicit v_int64x2(int64x2_t v) : val(v) {} method v_int64x2 (line 304) | v_int64x2(int64 v0, int64 v1) method int64 (line 309) | int64 get0() const function v_int64x2 (line 657) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b, con... method v_int64x2 (line 302) | v_int64x2() {} method v_int64x2 (line 303) | explicit v_int64x2(int64x2_t v) : val(v) {} method v_int64x2 (line 304) | v_int64x2(int64 v0, int64 v1) method int64 (line 309) | int64 get0() const function v_uint32x4 (line 670) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_uint32x4 (line 692) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_int32x4 (line 702) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16& b) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 717) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16& b, method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_uint64x2 (line 728) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... method v_uint64x2 (line 283) | v_uint64x2() {} method v_uint64x2 (line 284) | explicit v_uint64x2(uint64x2_t v) : val(v) {} method v_uint64x2 (line 285) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 290) | uint64 get0() const function v_uint64x2 (line 743) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... method v_uint64x2 (line 283) | v_uint64x2() {} method v_uint64x2 (line 284) | explicit v_uint64x2(uint64x2_t v) : val(v) {} method v_uint64x2 (line 285) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 290) | uint64 get0() const function v_int64x2 (line 746) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8& b) method v_int64x2 (line 302) | v_int64x2() {} method v_int64x2 (line 303) | explicit v_int64x2(int64x2_t v) : val(v) {} method v_int64x2 (line 304) | v_int64x2(int64 v0, int64 v1) method int64 (line 309) | int64 get0() const function v_int64x2 (line 759) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8& b, method v_int64x2 (line 302) | v_int64x2() {} method v_int64x2 (line 303) | explicit v_int64x2(int64x2_t v) : val(v) {} method v_int64x2 (line 304) | v_int64x2(int64 v0, int64 v1) method int64 (line 309) | int64 get0() const function v_float64x2 (line 765) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int32x... method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 767) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int3... method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_int32x4 (line 775) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 789) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b... method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int64x2 (line 805) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b) method v_int64x2 (line 302) | v_int64x2() {} method v_int64x2 (line 303) | explicit v_int64x2(int64x2_t v) : val(v) {} method v_int64x2 (line 304) | v_int64x2(int64 v0, int64 v1) method int64 (line 309) | int64 get0() const function v_int64x2 (line 819) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b... method v_int64x2 (line 302) | v_int64x2() {} method v_int64x2 (line 303) | explicit v_int64x2(int64x2_t v) : val(v) {} method v_int64x2 (line 304) | v_int64x2(int64 v0, int64 v1) method int64 (line 309) | int64 get0() const function v_uint32x4 (line 835) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_uint32x4 (line 847) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_int32x4 (line 856) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 866) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_uint64x2 (line 876) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... method v_uint64x2 (line 283) | v_uint64x2() {} method v_uint64x2 (line 284) | explicit v_uint64x2(uint64x2_t v) : val(v) {} method v_uint64x2 (line 285) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 290) | uint64 get0() const function v_uint64x2 (line 884) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... method v_uint64x2 (line 283) | v_uint64x2() {} method v_uint64x2 (line 284) | explicit v_uint64x2(uint64x2_t v) : val(v) {} method v_uint64x2 (line 285) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 290) | uint64 get0() const function v_int64x2 (line 887) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... method v_int64x2 (line 302) | v_int64x2() {} method v_int64x2 (line 303) | explicit v_int64x2(int64x2_t v) : val(v) {} method v_int64x2 (line 304) | v_int64x2(int64 v0, int64 v1) method int64 (line 309) | int64 get0() const function v_int64x2 (line 893) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... method v_int64x2 (line 302) | v_int64x2() {} method v_int64x2 (line 303) | explicit v_int64x2(int64x2_t v) : val(v) {} method v_int64x2 (line 304) | v_int64x2(int64 v0, int64 v1) method int64 (line 309) | int64 get0() const function v_float64x2 (line 898) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_i... method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 900) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_i... method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float32x4 (line 938) | inline v_float32x4 operator ~ (const v_float32x4& a) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 944) | inline v_float32x4 v_sqrt(const v_float32x4& x) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 949) | inline v_float32x4 v_invsqrt(const v_float32x4& x) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 955) | inline v_float32x4 v_sqrt(const v_float32x4& x) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 964) | inline v_float32x4 v_invsqrt(const v_float32x4& x) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 980) | inline v_float32x4 v_abs(v_float32x4 x) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float64x2 (line 999) | inline v_float64x2 operator ~ (const v_float64x2& a) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 1004) | inline v_float64x2 v_sqrt(const v_float64x2& x) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 1009) | inline v_float64x2 v_invsqrt(const v_float64x2& x) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 1015) | inline v_float64x2 v_abs(v_float64x2 x) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function int64x2_t (line 1047) | inline int64x2_t vmvnq_s64(int64x2_t a) function uint64x2_t (line 1052) | inline uint64x2_t vmvnq_u64(uint64x2_t a) function v_float32x4 (line 1085) | inline v_float32x4 v_not_nan(const v_float32x4& a) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float64x2 (line 1088) | inline v_float64x2 v_not_nan(const v_float64x2& a) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_int8x16 (line 1114) | inline v_int8x16 v_absdiffs(const v_int8x16& a, const v_int8x16& b) method v_int8x16 (line 164) | v_int8x16() {} method v_int8x16 (line 165) | explicit v_int8x16(int8x16_t v) : val(v) {} method v_int8x16 (line 166) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 172) | schar get0() const function v_int16x8 (line 1116) | inline v_int16x8 v_absdiffs(const v_int16x8& a, const v_int16x8& b) method v_int16x8 (line 205) | v_int16x8() {} method v_int16x8 (line 206) | explicit v_int16x8(int16x8_t v) : val(v) {} method v_int16x8 (line 207) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 212) | short get0() const function v_float32x4 (line 1129) | inline v_float32x4 v_magnitude(const v_float32x4& a, const v_float32x4... method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 1135) | inline v_float32x4 v_sqr_magnitude(const v_float32x4& a, const v_float... method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 1140) | inline v_float32x4 v_fma(const v_float32x4& a, const v_float32x4& b, c... method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_int32x4 (line 1151) | inline v_int32x4 v_fma(const v_int32x4& a, const v_int32x4& b, const v... method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_float32x4 (line 1156) | inline v_float32x4 v_muladd(const v_float32x4& a, const v_float32x4& b... method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_int32x4 (line 1161) | inline v_int32x4 v_muladd(const v_int32x4& a, const v_int32x4& b, cons... method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_float64x2 (line 1167) | inline v_float64x2 v_magnitude(const v_float64x2& a, const v_float64x2... method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 1173) | inline v_float64x2 v_sqr_magnitude(const v_float64x2& a, const v_float... method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 1178) | inline v_float64x2 v_fma(const v_float64x2& a, const v_float64x2& b, c... method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 1183) | inline v_float64x2 v_muladd(const v_float64x2& a, const v_float64x2& b... method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_reduce_sum (line 1287) | inline unsigned v_reduce_sum(const v_uint8x16& a) function v_reduce_sum (line 1298) | inline int v_reduce_sum(const v_int8x16& a) function v_reduce_sum (line 1309) | inline unsigned v_reduce_sum(const v_uint16x8& a) function v_reduce_sum (line 1320) | inline int v_reduce_sum(const v_int16x8& a) function uint64 (line 1400) | inline uint64 v_reduce_sum(const v_uint64x2& a) function int64 (line 1408) | inline int64 v_reduce_sum(const v_int64x2& a) function v_reduce_sum (line 1417) | inline double v_reduce_sum(const v_float64x2& a) function v_float32x4 (line 1423) | inline v_float32x4 v_reduce_sum4(const v_float32x4& a, const v_float32... method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_reduce_sad (line 1444) | inline unsigned v_reduce_sad(const v_uint8x16& a, const v_uint8x16& b) function v_reduce_sad (line 1456) | inline unsigned v_reduce_sad(const v_int8x16& a, const v_int8x16& b) function v_reduce_sad (line 1468) | inline unsigned v_reduce_sad(const v_uint16x8& a, const v_uint16x8& b) function v_reduce_sad (line 1480) | inline unsigned v_reduce_sad(const v_int16x8& a, const v_int16x8& b) function v_reduce_sad (line 1492) | inline unsigned v_reduce_sad(const v_uint32x4& a, const v_uint32x4& b) function v_reduce_sad (line 1504) | inline unsigned v_reduce_sad(const v_int32x4& a, const v_int32x4& b) function v_reduce_sad (line 1516) | inline float v_reduce_sad(const v_float32x4& a, const v_float32x4& b) function v_uint8x16 (line 1528) | inline v_uint8x16 v_popcount(const v_uint8x16& a) method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const function v_uint8x16 (line 1530) | inline v_uint8x16 v_popcount(const v_int8x16& a) method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const function v_uint16x8 (line 1532) | inline v_uint16x8 v_popcount(const v_uint16x8& a) method v_uint16x8 (line 185) | v_uint16x8() {} method v_uint16x8 (line 186) | explicit v_uint16x8(uint16x8_t v) : val(v) {} method v_uint16x8 (line 187) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 192) | ushort get0() const function v_uint16x8 (line 1534) | inline v_uint16x8 v_popcount(const v_int16x8& a) method v_uint16x8 (line 185) | v_uint16x8() {} method v_uint16x8 (line 186) | explicit v_uint16x8(uint16x8_t v) : val(v) {} method v_uint16x8 (line 187) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 192) | ushort get0() const function v_uint32x4 (line 1536) | inline v_uint32x4 v_popcount(const v_uint32x4& a) method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_uint32x4 (line 1538) | inline v_uint32x4 v_popcount(const v_int32x4& a) method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_uint64x2 (line 1540) | inline v_uint64x2 v_popcount(const v_uint64x2& a) method v_uint64x2 (line 283) | v_uint64x2() {} method v_uint64x2 (line 284) | explicit v_uint64x2(uint64x2_t v) : val(v) {} method v_uint64x2 (line 285) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 290) | uint64 get0() const function v_uint64x2 (line 1542) | inline v_uint64x2 v_popcount(const v_int64x2& a) method v_uint64x2 (line 283) | v_uint64x2() {} method v_uint64x2 (line 284) | explicit v_uint64x2(uint64x2_t v) : val(v) {} method v_uint64x2 (line 285) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 290) | uint64 get0() const function v_signmask (line 1545) | inline int v_signmask(const v_uint8x16& a) function v_signmask (line 1562) | inline int v_signmask(const v_int8x16& a) function v_signmask (line 1565) | inline int v_signmask(const v_uint16x8& a) function v_signmask (line 1579) | inline int v_signmask(const v_int16x8& a) function v_signmask (line 1582) | inline int v_signmask(const v_uint32x4& a) function v_signmask (line 1596) | inline int v_signmask(const v_int32x4& a) function v_signmask (line 1598) | inline int v_signmask(const v_float32x4& a) function v_signmask (line 1600) | inline int v_signmask(const v_uint64x2& a) function v_signmask (line 1613) | inline int v_signmask(const v_int64x2& a) function v_signmask (line 1616) | inline int v_signmask(const v_float64x2& a) function v_scan_forward (line 1620) | inline int v_scan_forward(const v_int8x16& a) { return trailingZeros32... function v_scan_forward (line 1621) | inline int v_scan_forward(const v_uint8x16& a) { return trailingZeros3... function v_scan_forward (line 1622) | inline int v_scan_forward(const v_int16x8& a) { return trailingZeros32... function v_scan_forward (line 1623) | inline int v_scan_forward(const v_uint16x8& a) { return trailingZeros3... function v_scan_forward (line 1624) | inline int v_scan_forward(const v_int32x4& a) { return trailingZeros32... function v_scan_forward (line 1625) | inline int v_scan_forward(const v_uint32x4& a) { return trailingZeros3... function v_scan_forward (line 1626) | inline int v_scan_forward(const v_float32x4& a) { return trailingZeros... function v_scan_forward (line 1627) | inline int v_scan_forward(const v_int64x2& a) { return trailingZeros32... function v_scan_forward (line 1628) | inline int v_scan_forward(const v_uint64x2& a) { return trailingZeros3... function v_scan_forward (line 1630) | inline int v_scan_forward(const v_float64x2& a) { return trailingZeros... function v_check_all (line 1663) | inline bool v_check_all(const v_uint64x2& a) function v_check_any (line 1668) | inline bool v_check_any(const v_uint64x2& a) function v_check_all (line 1674) | inline bool v_check_all(const v_int8x16& a) function v_check_all (line 1676) | inline bool v_check_all(const v_int16x8& a) function v_check_all (line 1678) | inline bool v_check_all(const v_int32x4& a) function v_check_all (line 1680) | inline bool v_check_all(const v_float32x4& a) function v_check_any (line 1683) | inline bool v_check_any(const v_int8x16& a) function v_check_any (line 1685) | inline bool v_check_any(const v_int16x8& a) function v_check_any (line 1687) | inline bool v_check_any(const v_int32x4& a) function v_check_any (line 1689) | inline bool v_check_any(const v_float32x4& a) function v_check_all (line 1692) | inline bool v_check_all(const v_int64x2& a) function v_check_any (line 1694) | inline bool v_check_any(const v_int64x2& a) function v_check_all (line 1697) | inline bool v_check_all(const v_float64x2& a) function v_check_any (line 1699) | inline bool v_check_any(const v_float64x2& a) function v_uint32x4 (line 1767) | inline v_uint32x4 v_load_expand_q(const uchar* ptr) method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_int32x4 (line 1775) | inline v_int32x4 v_load_expand_q(const schar* ptr) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_uint8x16 (line 1837) | inline v_uint8x16 v_reverse(const v_uint8x16 &a) method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const function v_int8x16 (line 1843) | inline v_int8x16 v_reverse(const v_int8x16 &a) method v_int8x16 (line 164) | v_int8x16() {} method v_int8x16 (line 165) | explicit v_int8x16(int8x16_t v) : val(v) {} method v_int8x16 (line 166) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 172) | schar get0() const function v_uint16x8 (line 1846) | inline v_uint16x8 v_reverse(const v_uint16x8 &a) method v_uint16x8 (line 185) | v_uint16x8() {} method v_uint16x8 (line 186) | explicit v_uint16x8(uint16x8_t v) : val(v) {} method v_uint16x8 (line 187) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 192) | ushort get0() const function v_int16x8 (line 1852) | inline v_int16x8 v_reverse(const v_int16x8 &a) method v_int16x8 (line 205) | v_int16x8() {} method v_int16x8 (line 206) | explicit v_int16x8(int16x8_t v) : val(v) {} method v_int16x8 (line 207) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 212) | short get0() const function v_uint32x4 (line 1855) | inline v_uint32x4 v_reverse(const v_uint32x4 &a) method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_int32x4 (line 1861) | inline v_int32x4 v_reverse(const v_int32x4 &a) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_float32x4 (line 1864) | inline v_float32x4 v_reverse(const v_float32x4 &a) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_uint64x2 (line 1867) | inline v_uint64x2 v_reverse(const v_uint64x2 &a) method v_uint64x2 (line 283) | v_uint64x2() {} method v_uint64x2 (line 284) | explicit v_uint64x2(uint64x2_t v) : val(v) {} method v_uint64x2 (line 285) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 290) | uint64 get0() const function v_int64x2 (line 1875) | inline v_int64x2 v_reverse(const v_int64x2 &a) method v_int64x2 (line 302) | v_int64x2() {} method v_int64x2 (line 303) | explicit v_int64x2(int64x2_t v) : val(v) {} method v_int64x2 (line 304) | v_int64x2(int64 v0, int64 v1) method int64 (line 309) | int64 get0() const function v_float64x2 (line 1879) | inline v_float64x2 v_reverse(const v_float64x2 &a) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_int32x4 (line 1936) | inline v_int32x4 v_round(const v_float32x4& a) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 1947) | inline v_int32x4 v_round(const v_float32x4& a) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 1956) | inline v_int32x4 v_floor(const v_float32x4& a) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 1963) | inline v_int32x4 v_ceil(const v_float32x4& a) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 1970) | inline v_int32x4 v_trunc(const v_float32x4& a) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 1974) | inline v_int32x4 v_round(const v_float64x2& a) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 1980) | inline v_int32x4 v_round(const v_float64x2& a, const v_float64x2& b) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 1985) | inline v_int32x4 v_floor(const v_float64x2& a) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 1994) | inline v_int32x4 v_ceil(const v_float64x2& a) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 2003) | inline v_int32x4 v_trunc(const v_float64x2& a) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_float32x4 (line 2211) | inline v_float32x4 v_cvt_f32(const v_int32x4& a) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 2217) | inline v_float32x4 v_cvt_f32(const v_float64x2& a) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 2223) | inline v_float32x4 v_cvt_f32(const v_float64x2& a, const v_float64x2& b) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float64x2 (line 2228) | inline v_float64x2 v_cvt_f64(const v_int32x4& a) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 2233) | inline v_float64x2 v_cvt_f64_high(const v_int32x4& a) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 2238) | inline v_float64x2 v_cvt_f64(const v_float32x4& a) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 2243) | inline v_float64x2 v_cvt_f64_high(const v_float32x4& a) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 2248) | inline v_float64x2 v_cvt_f64(const v_int64x2& a) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_int8x16 (line 2255) | inline v_int8x16 v_lut(const schar* tab, const int* idx) method v_int8x16 (line 164) | v_int8x16() {} method v_int8x16 (line 165) | explicit v_int8x16(int8x16_t v) : val(v) {} method v_int8x16 (line 166) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 172) | schar get0() const function v_int8x16 (line 2278) | inline v_int8x16 v_lut_pairs(const schar* tab, const int* idx) method v_int8x16 (line 164) | v_int8x16() {} method v_int8x16 (line 165) | explicit v_int8x16(int8x16_t v) : val(v) {} method v_int8x16 (line 166) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 172) | schar get0() const function v_int8x16 (line 2301) | inline v_int8x16 v_lut_quads(const schar* tab, const int* idx) method v_int8x16 (line 164) | v_int8x16() {} method v_int8x16 (line 165) | explicit v_int8x16(int8x16_t v) : val(v) {} method v_int8x16 (line 166) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 172) | schar get0() const function v_uint8x16 (line 2324) | inline v_uint8x16 v_lut(const uchar* tab, const int* idx) { return v_r... method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const function v_uint8x16 (line 2325) | inline v_uint8x16 v_lut_pairs(const uchar* tab, const int* idx) { retu... method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const function v_uint8x16 (line 2326) | inline v_uint8x16 v_lut_quads(const uchar* tab, const int* idx) { retu... method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const function v_int16x8 (line 2328) | inline v_int16x8 v_lut(const short* tab, const int* idx) method v_int16x8 (line 205) | v_int16x8() {} method v_int16x8 (line 206) | explicit v_int16x8(int16x8_t v) : val(v) {} method v_int16x8 (line 207) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 212) | short get0() const function v_int16x8 (line 2343) | inline v_int16x8 v_lut_pairs(const short* tab, const int* idx) method v_int16x8 (line 205) | v_int16x8() {} method v_int16x8 (line 206) | explicit v_int16x8(int16x8_t v) : val(v) {} method v_int16x8 (line 207) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 212) | short get0() const function v_int16x8 (line 2358) | inline v_int16x8 v_lut_quads(const short* tab, const int* idx) method v_int16x8 (line 205) | v_int16x8() {} method v_int16x8 (line 206) | explicit v_int16x8(int16x8_t v) : val(v) {} method v_int16x8 (line 207) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 212) | short get0() const function v_uint16x8 (line 2362) | inline v_uint16x8 v_lut(const ushort* tab, const int* idx) { return v_... method v_uint16x8 (line 185) | v_uint16x8() {} method v_uint16x8 (line 186) | explicit v_uint16x8(uint16x8_t v) : val(v) {} method v_uint16x8 (line 187) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 192) | ushort get0() const function v_uint16x8 (line 2363) | inline v_uint16x8 v_lut_pairs(const ushort* tab, const int* idx) { ret... method v_uint16x8 (line 185) | v_uint16x8() {} method v_uint16x8 (line 186) | explicit v_uint16x8(uint16x8_t v) : val(v) {} method v_uint16x8 (line 187) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 192) | ushort get0() const function v_uint16x8 (line 2364) | inline v_uint16x8 v_lut_quads(const ushort* tab, const int* idx) { ret... method v_uint16x8 (line 185) | v_uint16x8() {} method v_uint16x8 (line 186) | explicit v_uint16x8(uint16x8_t v) : val(v) {} method v_uint16x8 (line 187) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 192) | ushort get0() const function v_int32x4 (line 2366) | inline v_int32x4 v_lut(const int* tab, const int* idx) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 2377) | inline v_int32x4 v_lut_pairs(const int* tab, const int* idx) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_int32x4 (line 2381) | inline v_int32x4 v_lut_quads(const int* tab, const int* idx) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_uint32x4 (line 2385) | inline v_uint32x4 v_lut(const unsigned* tab, const int* idx) { return ... method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_uint32x4 (line 2386) | inline v_uint32x4 v_lut_pairs(const unsigned* tab, const int* idx) { r... method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_uint32x4 (line 2387) | inline v_uint32x4 v_lut_quads(const unsigned* tab, const int* idx) { r... method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_int64x2 (line 2389) | inline v_int64x2 v_lut(const int64_t* tab, const int* idx) method v_int64x2 (line 302) | v_int64x2() {} method v_int64x2 (line 303) | explicit v_int64x2(int64x2_t v) : val(v) {} method v_int64x2 (line 304) | v_int64x2(int64 v0, int64 v1) method int64 (line 309) | int64 get0() const function v_int64x2 (line 2393) | inline v_int64x2 v_lut_pairs(const int64_t* tab, const int* idx) method v_int64x2 (line 302) | v_int64x2() {} method v_int64x2 (line 303) | explicit v_int64x2(int64x2_t v) : val(v) {} method v_int64x2 (line 304) | v_int64x2(int64 v0, int64 v1) method int64 (line 309) | int64 get0() const function v_uint64x2 (line 2397) | inline v_uint64x2 v_lut(const uint64_t* tab, const int* idx) { return ... method v_uint64x2 (line 283) | v_uint64x2() {} method v_uint64x2 (line 284) | explicit v_uint64x2(uint64x2_t v) : val(v) {} method v_uint64x2 (line 285) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 290) | uint64 get0() const function v_uint64x2 (line 2398) | inline v_uint64x2 v_lut_pairs(const uint64_t* tab, const int* idx) { r... method v_uint64x2 (line 283) | v_uint64x2() {} method v_uint64x2 (line 284) | explicit v_uint64x2(uint64x2_t v) : val(v) {} method v_uint64x2 (line 285) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 290) | uint64 get0() const function v_float32x4 (line 2400) | inline v_float32x4 v_lut(const float* tab, const int* idx) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 2411) | inline v_float32x4 v_lut_pairs(const float* tab, const int* idx) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float32x4 (line 2422) | inline v_float32x4 v_lut_quads(const float* tab, const int* idx) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_int32x4 (line 2427) | inline v_int32x4 v_lut(const int* tab, const v_int32x4& idxvec) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_uint32x4 (line 2439) | inline v_uint32x4 v_lut(const unsigned* tab, const v_int32x4& idxvec) method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_float32x4 (line 2451) | inline v_float32x4 v_lut(const float* tab, const v_int32x4& idxvec) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_lut_deinterleave (line 2463) | inline void v_lut_deinterleave(const float* tab, const v_int32x4& idxv... function v_int8x16 (line 2481) | inline v_int8x16 v_interleave_pairs(const v_int8x16& vec) method v_int8x16 (line 164) | v_int8x16() {} method v_int8x16 (line 165) | explicit v_int8x16(int8x16_t v) : val(v) {} method v_int8x16 (line 166) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 172) | schar get0() const function v_uint8x16 (line 2485) | inline v_uint8x16 v_interleave_pairs(const v_uint8x16& vec) { return v... method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const function v_int8x16 (line 2486) | inline v_int8x16 v_interleave_quads(const v_int8x16& vec) method v_int8x16 (line 164) | v_int8x16() {} method v_int8x16 (line 165) | explicit v_int8x16(int8x16_t v) : val(v) {} method v_int8x16 (line 166) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 172) | schar get0() const function v_uint8x16 (line 2490) | inline v_uint8x16 v_interleave_quads(const v_uint8x16& vec) { return v... method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const function v_int16x8 (line 2492) | inline v_int16x8 v_interleave_pairs(const v_int16x8& vec) method v_int16x8 (line 205) | v_int16x8() {} method v_int16x8 (line 206) | explicit v_int16x8(int16x8_t v) : val(v) {} method v_int16x8 (line 207) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 212) | short get0() const function v_uint16x8 (line 2496) | inline v_uint16x8 v_interleave_pairs(const v_uint16x8& vec) { return v... method v_uint16x8 (line 185) | v_uint16x8() {} method v_uint16x8 (line 186) | explicit v_uint16x8(uint16x8_t v) : val(v) {} method v_uint16x8 (line 187) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 192) | ushort get0() const function v_int16x8 (line 2497) | inline v_int16x8 v_interleave_quads(const v_int16x8& vec) method v_int16x8 (line 205) | v_int16x8() {} method v_int16x8 (line 206) | explicit v_int16x8(int16x8_t v) : val(v) {} method v_int16x8 (line 207) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 212) | short get0() const function v_uint16x8 (line 2502) | inline v_uint16x8 v_interleave_quads(const v_uint16x8& vec) { return v... method v_uint16x8 (line 185) | v_uint16x8() {} method v_uint16x8 (line 186) | explicit v_uint16x8(uint16x8_t v) : val(v) {} method v_uint16x8 (line 187) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 192) | ushort get0() const function v_int32x4 (line 2504) | inline v_int32x4 v_interleave_pairs(const v_int32x4& vec) method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_uint32x4 (line 2509) | inline v_uint32x4 v_interleave_pairs(const v_uint32x4& vec) { return v... method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_float32x4 (line 2510) | inline v_float32x4 v_interleave_pairs(const v_float32x4& vec) { return... method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_int8x16 (line 2512) | inline v_int8x16 v_pack_triplets(const v_int8x16& vec) method v_int8x16 (line 164) | v_int8x16() {} method v_int8x16 (line 165) | explicit v_int8x16(int8x16_t v) : val(v) {} method v_int8x16 (line 166) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 172) | schar get0() const function v_uint8x16 (line 2516) | inline v_uint8x16 v_pack_triplets(const v_uint8x16& vec) { return v_re... method v_uint8x16 (line 143) | v_uint8x16() {} method v_uint8x16 (line 144) | explicit v_uint8x16(uint8x16_t v) : val(v) {} method v_uint8x16 (line 145) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 151) | uchar get0() const function v_int16x8 (line 2518) | inline v_int16x8 v_pack_triplets(const v_int16x8& vec) method v_int16x8 (line 205) | v_int16x8() {} method v_int16x8 (line 206) | explicit v_int16x8(int16x8_t v) : val(v) {} method v_int16x8 (line 207) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 212) | short get0() const function v_uint16x8 (line 2522) | inline v_uint16x8 v_pack_triplets(const v_uint16x8& vec) { return v_re... method v_uint16x8 (line 185) | v_uint16x8() {} method v_uint16x8 (line 186) | explicit v_uint16x8(uint16x8_t v) : val(v) {} method v_uint16x8 (line 187) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 192) | ushort get0() const function v_int32x4 (line 2524) | inline v_int32x4 v_pack_triplets(const v_int32x4& vec) { return vec; } method v_int32x4 (line 245) | v_int32x4() {} method v_int32x4 (line 246) | explicit v_int32x4(int32x4_t v) : val(v) {} method v_int32x4 (line 247) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 252) | int get0() const function v_uint32x4 (line 2525) | inline v_uint32x4 v_pack_triplets(const v_uint32x4& vec) { return vec; } method v_uint32x4 (line 225) | v_uint32x4() {} method v_uint32x4 (line 226) | explicit v_uint32x4(uint32x4_t v) : val(v) {} method v_uint32x4 (line 227) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 232) | unsigned get0() const function v_float32x4 (line 2526) | inline v_float32x4 v_pack_triplets(const v_float32x4& vec) { return ve... method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_float64x2 (line 2529) | inline v_float64x2 v_lut(const double* tab, const int* idx) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 2539) | inline v_float64x2 v_lut_pairs(const double* tab, const int* idx) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_float64x2 (line 2544) | inline v_float64x2 v_lut(const double* tab, const v_int32x4& idxvec) method v_float64x2 (line 322) | v_float64x2() {} method v_float64x2 (line 323) | explicit v_float64x2(float64x2_t v) : val(v) {} method v_float64x2 (line 324) | v_float64x2(double v0, double v1) method get0 (line 329) | double get0() const function v_lut_deinterleave (line 2554) | inline void v_lut_deinterleave(const double* tab, const v_int32x4& idx... function v_float32x4 (line 2566) | inline v_float32x4 v_load_expand(const float16_t* ptr) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_pack_store (line 2577) | inline void v_pack_store(float16_t* ptr, const v_float32x4& v) function v_float32x4 (line 2588) | inline v_float32x4 v_load_expand(const float16_t* ptr) method v_float32x4 (line 264) | v_float32x4() {} method v_float32x4 (line 265) | explicit v_float32x4(float32x4_t v) : val(v) {} method v_float32x4 (line 266) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 271) | float get0() const function v_pack_store (line 2596) | inline void v_pack_store(float16_t* ptr, const v_float32x4& v) function v_cleanup (line 2605) | inline void v_cleanup() {} FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin_rvv.hpp type cv (line 13) | namespace cv type vuint8mf2_t (line 23) | struct vuint8mf2_t method vuint8mf2_t (line 26) | vuint8mf2_t() {} method vuint8mf2_t (line 27) | vuint8mf2_t(const uchar* ptr) type vint8mf2_t (line 35) | struct vint8mf2_t method vint8mf2_t (line 38) | vint8mf2_t() {} method vint8mf2_t (line 39) | vint8mf2_t(const schar* ptr) type vuint16mf2_t (line 47) | struct vuint16mf2_t method vuint16mf2_t (line 50) | vuint16mf2_t() {} method vuint16mf2_t (line 51) | vuint16mf2_t(const ushort* ptr) type vint16mf2_t (line 59) | struct vint16mf2_t method vint16mf2_t (line 62) | vint16mf2_t() {} method vint16mf2_t (line 63) | vint16mf2_t(const short* ptr) type vuint32mf2_t (line 71) | struct vuint32mf2_t method vuint32mf2_t (line 74) | vuint32mf2_t() {} method vuint32mf2_t (line 75) | vuint32mf2_t(const unsigned* ptr) type vint32mf2_t (line 81) | struct vint32mf2_t method vint32mf2_t (line 84) | vint32mf2_t() {} method vint32mf2_t (line 85) | vint32mf2_t(const int* ptr) type vfloat32mf2_t (line 91) | struct vfloat32mf2_t method vfloat32mf2_t (line 94) | vfloat32mf2_t() {} method vfloat32mf2_t (line 95) | vfloat32mf2_t(const float* ptr) type vuint64mf2_t (line 101) | struct vuint64mf2_t method vuint64mf2_t (line 104) | vuint64mf2_t() {} method vuint64mf2_t (line 105) | vuint64mf2_t(const uint64* ptr) type vint64mf2_t (line 110) | struct vint64mf2_t method vint64mf2_t (line 113) | vint64mf2_t() {} method vint64mf2_t (line 114) | vint64mf2_t(const int64* ptr) type vfloat64mf2_t (line 119) | struct vfloat64mf2_t method vfloat64mf2_t (line 122) | vfloat64mf2_t() {} method vfloat64mf2_t (line 123) | vfloat64mf2_t(const double* ptr) type vuint8mf4_t (line 128) | struct vuint8mf4_t method vuint8mf4_t (line 131) | vuint8mf4_t() {} method vuint8mf4_t (line 132) | vuint8mf4_t(const uchar* ptr) type vint8mf4_t (line 140) | struct vint8mf4_t method vint8mf4_t (line 143) | vint8mf4_t() {} method vint8mf4_t (line 144) | vint8mf4_t(const schar* ptr) function OPENCV_HAL_IMPL_RVV_NATIVE_LOADSTORE_MF2 (line 166) | OPENCV_HAL_IMPL_RVV_NATIVE_LOADSTORE_MF2(vuint8mf2_t, uint8_t, u8, 8, 8) function v_check_any (line 1665) | inline bool v_check_any(const v_int64x2& a) function v_check_all (line 1669) | inline bool v_check_all(const v_float64x2& a) function v_check_any (line 1671) | inline bool v_check_any(const v_float64x2& a) function v_float32x4 (line 1797) | inline v_float32x4 v_cvt_f32(const v_int32x4& a) function v_float32x4 (line 1804) | inline v_float32x4 v_cvt_f32(const v_float64x2& a) function v_float32x4 (line 1813) | inline v_float32x4 v_cvt_f32(const v_float64x2& a, const v_float64x2& b) function v_float64x2 (line 1822) | inline v_float64x2 v_cvt_f64(const v_int32x4& a) function v_float64x2 (line 1835) | inline v_float64x2 v_cvt_f64_high(const v_int32x4& a) function v_float64x2 (line 1848) | inline v_float64x2 v_cvt_f64(const v_float32x4& a) function v_float64x2 (line 1861) | inline v_float64x2 v_cvt_f64_high(const v_float32x4& a) function v_float64x2 (line 1874) | inline v_float64x2 v_cvt_f64(const v_int64x2& a) function v_uint32x4 (line 2012) | inline v_uint32x4 v_load_expand_q(const uchar* ptr) function v_int32x4 (line 2018) | inline v_int32x4 v_load_expand_q(const schar* ptr) function v_signmask (line 2375) | inline int v_signmask(const v_int8x16& a) function v_signmask (line 2377) | inline int v_signmask(const v_int16x8& a) function v_signmask (line 2379) | inline int v_signmask(const v_int32x4& a) function v_signmask (line 2381) | inline int v_signmask(const v_float32x4& a) function v_signmask (line 2383) | inline int v_signmask(const v_int64x2& a) function v_signmask (line 2386) | inline int v_signmask(const v_float64x2& a) function v_float32x4 (line 2446) | inline v_float32x4 v_load_expand(const float16_t* ptr) function v_pack_store (line 2451) | inline void v_pack_store(float16_t* ptr, const v_float32x4& v) function v_float32x4 (line 2456) | inline v_float32x4 v_load_expand(const float16_t* ptr) function v_pack_store (line 2464) | inline void v_pack_store(float16_t* ptr, const v_float32x4& v) function v_int32x4 (line 2475) | inline v_int32x4 v_round(const v_float32x4& a) function v_int32x4 (line 2481) | inline v_int32x4 v_floor(const v_float32x4& a) function v_int32x4 (line 2489) | inline v_int32x4 v_ceil(const v_float32x4& a) function v_int32x4 (line 2497) | inline v_int32x4 v_trunc(const v_float32x4& a) function v_int32x4 (line 2503) | inline v_int32x4 v_round(const v_float64x2& a) function v_int32x4 (line 2511) | inline v_int32x4 v_round(const v_float64x2& a, const v_float64x2& b) function v_int32x4 (line 2519) | inline v_int32x4 v_floor(const v_float64x2& a) function v_int32x4 (line 2527) | inline v_int32x4 v_ceil(const v_float64x2& a) function v_int32x4 (line 2535) | inline v_int32x4 v_trunc(const v_float64x2& a) function v_int32x4 (line 2548) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b) function v_int32x4 (line 2557) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b, con... function v_int64x2 (line 2568) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b) function v_int64x2 (line 2577) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b, con... function v_uint32x4 (line 2588) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... function v_uint32x4 (line 2597) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... function v_int32x4 (line 2608) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16& b) function v_int32x4 (line 2617) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16& b, function v_uint64x2 (line 2629) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... function v_uint64x2 (line 2638) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... function v_int64x2 (line 2648) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8& b) function v_int64x2 (line 2657) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8& b, function v_float64x2 (line 2670) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int32x... function v_float64x2 (line 2672) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int3... function v_int32x4 (line 2680) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b) function v_int32x4 (line 2689) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b... function v_int64x2 (line 2700) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b) function v_int64x2 (line 2709) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b... function v_uint32x4 (line 2721) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... function v_uint32x4 (line 2732) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... function v_int32x4 (line 2743) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... function v_int32x4 (line 2754) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... function v_uint64x2 (line 2767) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... function v_uint64x2 (line 2778) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... function v_int64x2 (line 2789) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... function v_int64x2 (line 2800) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... function v_float64x2 (line 2814) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_i... function v_float64x2 (line 2816) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_i... function v_float32x4 (line 2821) | inline v_float32x4 v_matmul(const v_float32x4& v, const v_float32x4& m0, function v_float32x4 (line 2833) | inline v_float32x4 v_matmuladd(const v_float32x4& v, const v_float32x4... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin_rvv071.hpp type cv (line 14) | namespace cv type v_uint8x16 (line 24) | struct v_uint8x16 method v_uint8x16 (line 29) | v_uint8x16() {} method v_uint8x16 (line 30) | explicit v_uint8x16(vuint8m1_t v) : val(v) {} method v_uint8x16 (line 31) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const type v_int8x16 (line 45) | struct v_int8x16 method v_int8x16 (line 50) | v_int8x16() {} method v_int8x16 (line 51) | explicit v_int8x16(vint8m1_t v) : val(v) {} method v_int8x16 (line 52) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 58) | schar get0() const type v_uint16x8 (line 66) | struct v_uint16x8 method v_uint16x8 (line 71) | v_uint16x8() {} method v_uint16x8 (line 72) | explicit v_uint16x8(vuint16m1_t v) : val(v) {} method v_uint16x8 (line 73) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 78) | ushort get0() const type v_int16x8 (line 86) | struct v_int16x8 method v_int16x8 (line 91) | v_int16x8() {} method v_int16x8 (line 92) | explicit v_int16x8(vint16m1_t v) : val(v) {} method v_int16x8 (line 93) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 98) | short get0() const type v_uint32x4 (line 106) | struct v_uint32x4 method v_uint32x4 (line 111) | v_uint32x4() {} method v_uint32x4 (line 112) | explicit v_uint32x4(vuint32m1_t v) : val(v) {} method v_uint32x4 (line 113) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 118) | unsigned get0() const type v_int32x4 (line 126) | struct v_int32x4 method v_int32x4 (line 131) | v_int32x4() {} method v_int32x4 (line 132) | explicit v_int32x4(vint32m1_t v) : val(v) {} method v_int32x4 (line 133) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 138) | int get0() const type v_float32x4 (line 145) | struct v_float32x4 method v_float32x4 (line 150) | v_float32x4() {} method v_float32x4 (line 151) | explicit v_float32x4(vfloat32m1_t v) : val(v) {} method v_float32x4 (line 152) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 157) | float get0() const type v_uint64x2 (line 164) | struct v_uint64x2 method v_uint64x2 (line 169) | v_uint64x2() {} method v_uint64x2 (line 170) | explicit v_uint64x2(vuint64m1_t v) : val(v) {} method v_uint64x2 (line 171) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 176) | uint64 get0() const type v_int64x2 (line 183) | struct v_int64x2 method v_int64x2 (line 188) | v_int64x2() {} method v_int64x2 (line 189) | explicit v_int64x2(vint64m1_t v) : val(v) {} method v_int64x2 (line 190) | v_int64x2(int64 v0, int64 v1) method int64 (line 195) | int64 get0() const type v_float64x2 (line 202) | struct v_float64x2 method v_float64x2 (line 207) | v_float64x2() {} method v_float64x2 (line 208) | explicit v_float64x2(vfloat64m1_t v) : val(v) {} method v_float64x2 (line 209) | v_float64x2(double v0, double v1) method get0 (line 214) | double get0() const function v_float32x4 (line 486) | inline v_float32x4 operator ~ (const v_float32x4& a) method v_float32x4 (line 150) | v_float32x4() {} method v_float32x4 (line 151) | explicit v_float32x4(vfloat32m1_t v) : val(v) {} method v_float32x4 (line 152) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 157) | float get0() const function v_float64x2 (line 506) | inline v_float64x2 operator ~ (const v_float64x2& a) method v_float64x2 (line 207) | v_float64x2() {} method v_float64x2 (line 208) | explicit v_float64x2(vfloat64m1_t v) : val(v) {} method v_float64x2 (line 209) | v_float64x2(double v0, double v1) method get0 (line 214) | double get0() const function v_int16x8 (line 510) | inline v_int16x8 v_mul_hi(const v_int16x8& a, const v_int16x8& b) method v_int16x8 (line 91) | v_int16x8() {} method v_int16x8 (line 92) | explicit v_int16x8(vint16m1_t v) : val(v) {} method v_int16x8 (line 93) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 98) | short get0() const function v_uint16x8 (line 514) | inline v_uint16x8 v_mul_hi(const v_uint16x8& a, const v_uint16x8& b) method v_uint16x8 (line 71) | v_uint16x8() {} method v_uint16x8 (line 72) | explicit v_uint16x8(vuint16m1_t v) : val(v) {} method v_uint16x8 (line 73) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 78) | ushort get0() const function v_uint32x4 (line 527) | inline v_uint32x4 v_abs(v_int32x4 x) method v_uint32x4 (line 111) | v_uint32x4() {} method v_uint32x4 (line 112) | explicit v_uint32x4(vuint32m1_t v) : val(v) {} method v_uint32x4 (line 113) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 118) | unsigned get0() const function v_uint16x8 (line 533) | inline v_uint16x8 v_abs(v_int16x8 x) method v_uint16x8 (line 71) | v_uint16x8() {} method v_uint16x8 (line 72) | explicit v_uint16x8(vuint16m1_t v) : val(v) {} method v_uint16x8 (line 73) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 78) | ushort get0() const function v_uint8x16 (line 539) | inline v_uint8x16 v_abs(v_int8x16 x) method v_uint8x16 (line 29) | v_uint8x16() {} method v_uint8x16 (line 30) | explicit v_uint8x16(vuint8m1_t v) : val(v) {} method v_uint8x16 (line 31) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 37) | uchar get0() const function v_float32x4 (line 545) | inline v_float32x4 v_abs(v_float32x4 x) method v_float32x4 (line 150) | v_float32x4() {} method v_float32x4 (line 151) | explicit v_float32x4(vfloat32m1_t v) : val(v) {} method v_float32x4 (line 152) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 157) | float get0() const function v_float64x2 (line 550) | inline v_float64x2 v_abs(v_float64x2 x) method v_float64x2 (line 207) | v_float64x2() {} method v_float64x2 (line 208) | explicit v_float64x2(vfloat64m1_t v) : val(v) {} method v_float64x2 (line 209) | v_float64x2(double v0, double v1) method get0 (line 214) | double get0() const function v_float32x4 (line 555) | inline v_float32x4 v_absdiff(const v_float32x4& a, const v_float32x4& b) method v_float32x4 (line 150) | v_float32x4() {} method v_float32x4 (line 151) | explicit v_float32x4(vfloat32m1_t v) : val(v) {} method v_float32x4 (line 152) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 157) | float get0() const function v_float64x2 (line 561) | inline v_float64x2 v_absdiff(const v_float64x2& a, const v_float64x2& b) method v_float64x2 (line 207) | v_float64x2() {} method v_float64x2 (line 208) | explicit v_float64x2(vfloat64m1_t v) : val(v) {} method v_float64x2 (line 209) | v_float64x2(double v0, double v1) method get0 (line 214) | double get0() const function v_int8x16 (line 579) | inline v_int8x16 v_absdiffs(v_int8x16 a, v_int8x16 b){ method v_int8x16 (line 50) | v_int8x16() {} method v_int8x16 (line 51) | explicit v_int8x16(vint8m1_t v) : val(v) {} method v_int8x16 (line 52) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 58) | schar get0() const function v_int16x8 (line 584) | inline v_int16x8 v_absdiffs(v_int16x8 a, v_int16x8 b){ method v_int16x8 (line 91) | v_int16x8() {} method v_int16x8 (line 92) | explicit v_int16x8(vint16m1_t v) : val(v) {} method v_int16x8 (line 93) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 98) | short get0() const function v_mul_expand (line 602) | inline void v_mul_expand(const v_int8x16& a, const v_int8x16& b, function v_mul_expand (line 611) | inline void v_mul_expand(const v_uint8x16& a, const v_uint8x16& b, function v_mul_expand (line 620) | inline void v_mul_expand(const v_int16x8& a, const v_int16x8& b, function v_mul_expand (line 629) | inline void v_mul_expand(const v_uint16x8& a, const v_uint16x8& b, function v_mul_expand (line 638) | inline void v_mul_expand(const v_int32x4& a, const v_int32x4& b, function v_mul_expand (line 647) | inline void v_mul_expand(const v_uint32x4& a, const v_uint32x4& b, function v_int32x4 (line 670) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b) method v_int32x4 (line 131) | v_int32x4() {} method v_int32x4 (line 132) | explicit v_int32x4(vint32m1_t v) : val(v) {} method v_int32x4 (line 133) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 138) | int get0() const function v_int32x4 (line 677) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b, con... method v_int32x4 (line 131) | v_int32x4() {} method v_int32x4 (line 132) | explicit v_int32x4(vint32m1_t v) : val(v) {} method v_int32x4 (line 133) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 138) | int get0() const function v_int64x2 (line 686) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b) method v_int64x2 (line 188) | v_int64x2() {} method v_int64x2 (line 189) | explicit v_int64x2(vint64m1_t v) : val(v) {} method v_int64x2 (line 190) | v_int64x2(int64 v0, int64 v1) method int64 (line 195) | int64 get0() const function v_int64x2 (line 693) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b, con... method v_int64x2 (line 188) | v_int64x2() {} method v_int64x2 (line 189) | explicit v_int64x2(vint64m1_t v) : val(v) {} method v_int64x2 (line 190) | v_int64x2(int64 v0, int64 v1) method int64 (line 195) | int64 get0() const function v_uint32x4 (line 702) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... method v_uint32x4 (line 111) | v_uint32x4() {} method v_uint32x4 (line 112) | explicit v_uint32x4(vuint32m1_t v) : val(v) {} method v_uint32x4 (line 113) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 118) | unsigned get0() const function v_uint32x4 (line 712) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... method v_uint32x4 (line 111) | v_uint32x4() {} method v_uint32x4 (line 112) | explicit v_uint32x4(vuint32m1_t v) : val(v) {} method v_uint32x4 (line 113) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 118) | unsigned get0() const function v_int32x4 (line 723) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16& b) method v_int32x4 (line 131) | v_int32x4() {} method v_int32x4 (line 132) | explicit v_int32x4(vint32m1_t v) : val(v) {} method v_int32x4 (line 133) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 138) | int get0() const function v_int32x4 (line 733) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16& b, method v_int32x4 (line 131) | v_int32x4() {} method v_int32x4 (line 132) | explicit v_int32x4(vint32m1_t v) : val(v) {} method v_int32x4 (line 133) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 138) | int get0() const function v_uint64x2 (line 744) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... method v_uint64x2 (line 169) | v_uint64x2() {} method v_uint64x2 (line 170) | explicit v_uint64x2(vuint64m1_t v) : val(v) {} method v_uint64x2 (line 171) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 176) | uint64 get0() const function v_uint64x2 (line 754) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... method v_uint64x2 (line 169) | v_uint64x2() {} method v_uint64x2 (line 170) | explicit v_uint64x2(vuint64m1_t v) : val(v) {} method v_uint64x2 (line 171) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 176) | uint64 get0() const function v_int64x2 (line 765) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8& b) method v_int64x2 (line 188) | v_int64x2() {} method v_int64x2 (line 189) | explicit v_int64x2(vint64m1_t v) : val(v) {} method v_int64x2 (line 190) | v_int64x2(int64 v0, int64 v1) method int64 (line 195) | int64 get0() const function v_int64x2 (line 775) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8& b, method v_int64x2 (line 188) | v_int64x2() {} method v_int64x2 (line 189) | explicit v_int64x2(vint64m1_t v) : val(v) {} method v_int64x2 (line 190) | v_int64x2(int64 v0, int64 v1) method int64 (line 195) | int64 get0() const function v_int32x4 (line 788) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b) method v_int32x4 (line 131) | v_int32x4() {} method v_int32x4 (line 132) | explicit v_int32x4(vint32m1_t v) : val(v) {} method v_int32x4 (line 133) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 138) | int get0() const function v_int32x4 (line 795) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b... method v_int32x4 (line 131) | v_int32x4() {} method v_int32x4 (line 132) | explicit v_int32x4(vint32m1_t v) : val(v) {} method v_int32x4 (line 133) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 138) | int get0() const function v_int64x2 (line 803) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b) method v_int64x2 (line 188) | v_int64x2() {} method v_int64x2 (line 189) | explicit v_int64x2(vint64m1_t v) : val(v) {} method v_int64x2 (line 190) | v_int64x2(int64 v0, int64 v1) method int64 (line 195) | int64 get0() const function v_int64x2 (line 809) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b... method v_int64x2 (line 188) | v_int64x2() {} method v_int64x2 (line 189) | explicit v_int64x2(vint64m1_t v) : val(v) {} method v_int64x2 (line 190) | v_int64x2(int64 v0, int64 v1) method int64 (line 195) | int64 get0() const function v_uint32x4 (line 817) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... method v_uint32x4 (line 111) | v_uint32x4() {} method v_uint32x4 (line 112) | explicit v_uint32x4(vuint32m1_t v) : val(v) {} method v_uint32x4 (line 113) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 118) | unsigned get0() const function v_uint32x4 (line 826) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... method v_uint32x4 (line 111) | v_uint32x4() {} method v_uint32x4 (line 112) | explicit v_uint32x4(vuint32m1_t v) : val(v) {} method v_uint32x4 (line 113) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 118) | unsigned get0() const function v_int32x4 (line 835) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... method v_int32x4 (line 131) | v_int32x4() {} method v_int32x4 (line 132) | explicit v_int32x4(vint32m1_t v) : val(v) {} method v_int32x4 (line 133) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 138) | int get0() const function v_int32x4 (line 843) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... method v_int32x4 (line 131) | v_int32x4() {} method v_int32x4 (line 132) | explicit v_int32x4(vint32m1_t v) : val(v) {} method v_int32x4 (line 133) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 138) | int get0() const function v_uint64x2 (line 853) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... method v_uint64x2 (line 169) | v_uint64x2() {} method v_uint64x2 (line 170) | explicit v_uint64x2(vuint64m1_t v) : val(v) {} method v_uint64x2 (line 171) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 176) | uint64 get0() const function v_uint64x2 (line 861) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... method v_uint64x2 (line 169) | v_uint64x2() {} method v_uint64x2 (line 170) | explicit v_uint64x2(vuint64m1_t v) : val(v) {} method v_uint64x2 (line 171) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 176) | uint64 get0() const function v_int64x2 (line 870) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... method v_int64x2 (line 188) | v_int64x2() {} method v_int64x2 (line 189) | explicit v_int64x2(vint64m1_t v) : val(v) {} method v_int64x2 (line 190) | v_int64x2(int64 v0, int64 v1) method int64 (line 195) | int64 get0() const function v_int64x2 (line 878) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... method v_int64x2 (line 188) | v_int64x2() {} method v_int64x2 (line 189) | explicit v_int64x2(vint64m1_t v) : val(v) {} method v_int64x2 (line 190) | v_int64x2(int64 v0, int64 v1) method int64 (line 195) | int64 get0() const function v_int8x16 (line 1278) | inline v_int8x16 v_lut_pairs(const schar* tab, const int* idx){ function v_int8x16 (line 1300) | inline v_int8x16 v_lut_quads(const schar* tab, const int* idx) function v_uint8x16 (line 1324) | inline v_uint8x16 v_lut(const uchar* tab, const int* idx) { return v_rei... function v_uint8x16 (line 1325) | inline v_uint8x16 v_lut_pairs(const uchar* tab, const int* idx) { return... function v_uint8x16 (line 1326) | inline v_uint8x16 v_lut_quads(const uchar* tab, const int* idx) { return... function v_int16x8 (line 1328) | inline v_int16x8 v_lut(const short* tab, const int* idx) function v_int16x8 (line 1343) | inline v_int16x8 v_lut_pairs(const short* tab, const int* idx) function v_int16x8 (line 1358) | inline v_int16x8 v_lut_quads(const short* tab, const int* idx) function v_uint16x8 (line 1373) | inline v_uint16x8 v_lut(const ushort* tab, const int* idx) { return v_re... function v_uint16x8 (line 1374) | inline v_uint16x8 v_lut_pairs(const ushort* tab, const int* idx) { retur... function v_uint16x8 (line 1375) | inline v_uint16x8 v_lut_quads(const ushort* tab, const int* idx) { retur... function v_int32x4 (line 1377) | inline v_int32x4 v_lut(const int* tab, const int* idx) function v_int32x4 (line 1388) | inline v_int32x4 v_lut_pairs(const int* tab, const int* idx) function v_int32x4 (line 1399) | inline v_int32x4 v_lut_quads(const int* tab, const int* idx) function v_uint32x4 (line 1403) | inline v_uint32x4 v_lut(const unsigned* tab, const int* idx) { return v_... function v_uint32x4 (line 1404) | inline v_uint32x4 v_lut_pairs(const unsigned* tab, const int* idx) { ret... function v_uint32x4 (line 1405) | inline v_uint32x4 v_lut_quads(const unsigned* tab, const int* idx) { ret... function v_int64x2 (line 1407) | inline v_int64x2 v_lut(const int64_t* tab, const int* idx) function v_int64x2 (line 1412) | inline v_int64x2 v_lut_pairs(const int64_t* tab, const int* idx) function v_uint64x2 (line 1417) | inline v_uint64x2 v_lut(const uint64_t* tab, const int* idx) function v_uint64x2 (line 1422) | inline v_uint64x2 v_lut_pairs(const uint64_t* tab, const int* idx) function v_float32x4 (line 1427) | inline v_float32x4 v_lut(const float* tab, const int* idx) function v_float32x4 (line 1438) | inline v_float32x4 v_lut_pairs(const float* tab, const int* idx) function v_float32x4 (line 1449) | inline v_float32x4 v_lut_quads(const float* tab, const int* idx) function v_float64x2 (line 1453) | inline v_float64x2 v_lut(const double* tab, const int* idx) function v_float64x2 (line 1458) | inline v_float64x2 v_lut_pairs(const double* tab, const int* idx) function v_int32x4 (line 1463) | inline v_int32x4 v_lut(const int* tab, const v_int32x4& idxvec) function v_uint32x4 (line 1475) | inline v_uint32x4 v_lut(const unsigned* tab, const v_int32x4& idxvec) function v_float32x4 (line 1487) | inline v_float32x4 v_lut(const float* tab, const v_int32x4& idxvec) function v_float64x2 (line 1498) | inline v_float64x2 v_lut(const double* tab, const v_int32x4& idxvec) function v_lut_deinterleave (line 1503) | inline void v_lut_deinterleave(const float* tab, const v_int32x4& idxvec... function v_lut_deinterleave (line 1512) | inline void v_lut_deinterleave(const double* tab, const v_int32x4& idxve... function v_uint8x16 (line 1582) | inline v_uint8x16 v_pack_b(const v_uint64x2& a, const v_uint64x2& b, con... function vuint8m1_t (line 1692) | inline vuint8m1_t vcnt_u8(vuint8m1_t val){ function v_uint8x16 (line 1697) | inline v_uint8x16 function v_uint8x16 (line 1703) | inline v_uint8x16 function v_uint16x8 (line 1709) | inline v_uint16x8 function v_uint16x8 (line 1720) | inline v_uint16x8 function v_uint32x4 (line 1731) | inline v_uint32x4 function v_uint32x4 (line 1744) | inline v_uint32x4 function v_uint64x2 (line 1757) | inline v_uint64x2 function v_uint64x2 (line 1774) | inline v_uint64x2 function v_signmask (line 1792) | inline int v_signmask(const v_uint8x16& a) function v_signmask (line 1803) | inline int v_signmask(const v_int8x16& a) function v_signmask (line 1815) | inline int v_signmask(const v_int16x8& a) function v_signmask (line 1824) | inline int v_signmask(const v_uint16x8& a) function v_signmask (line 1833) | inline int v_signmask(const v_int32x4& a) function v_signmask (line 1842) | inline int v_signmask(const v_uint32x4& a) function v_signmask (line 1851) | inline int v_signmask(const v_uint64x2& a) function v_signmask (line 1857) | inline int v_signmask(const v_int64x2& a) function v_signmask (line 1859) | inline int v_signmask(const v_float64x2& a) function v_signmask (line 1861) | inline int v_signmask(const v_float32x4& a) function v_scan_forward (line 1871) | inline int v_scan_forward(const v_int8x16& a) { function v_scan_forward (line 1875) | inline int v_scan_forward(const v_uint8x16& a) { function v_scan_forward (line 1879) | inline int v_scan_forward(const v_int16x8& a) { function v_scan_forward (line 1883) | inline int v_scan_forward(const v_uint16x8& a) { function v_scan_forward (line 1887) | inline int v_scan_forward(const v_int32x4& a) { function v_scan_forward (line 1891) | inline int v_scan_forward(const v_uint32x4& a) { function v_scan_forward (line 1895) | inline int v_scan_forward(const v_float32x4& a) { function v_scan_forward (line 1899) | inline int v_scan_forward(const v_int64x2& a) { function v_scan_forward (line 1903) | inline int v_scan_forward(const v_uint64x2& a) { function v_check_all (line 1927) | inline bool v_check_all(const v_int8x16& a) function v_check_all (line 1929) | inline bool v_check_all(const v_int16x8& a) function v_check_all (line 1931) | inline bool v_check_all(const v_int32x4& a) function v_check_all (line 1933) | inline bool v_check_all(const v_float32x4& a) function v_check_all (line 1935) | inline bool v_check_all(const v_int64x2& a) function v_check_all (line 1937) | inline bool v_check_all(const v_float64x2& a) function v_check_any (line 1940) | inline bool v_check_any(const v_int8x16& a) function v_check_any (line 1942) | inline bool v_check_any(const v_int16x8& a) function v_check_any (line 1944) | inline bool v_check_any(const v_int32x4& a) function v_check_any (line 1946) | inline bool v_check_any(const v_float32x4& a) function v_check_any (line 1948) | inline bool v_check_any(const v_int64x2& a) function v_check_any (line 1950) | inline bool v_check_any(const v_float64x2& a) function v_float32x4 (line 1965) | inline v_float32x4 v_select(const v_float32x4& mask, const v_float32x4& ... function v_float64x2 (line 1969) | inline v_float64x2 v_select(const v_float64x2& mask, const v_float64x2& ... function v_uint32x4 (line 2005) | inline v_uint32x4 v_load_expand_q(const uchar* ptr) function v_int32x4 (line 2015) | inline v_int32x4 v_load_expand_q(const schar* ptr) function v_uint8x16 (line 2074) | inline v_uint8x16 v_reverse(const v_uint8x16 &a) function v_int8x16 (line 2079) | inline v_int8x16 v_reverse(const v_int8x16 &a) function v_uint16x8 (line 2085) | inline v_uint16x8 v_reverse(const v_uint16x8 &a) function v_int16x8 (line 2091) | inline v_int16x8 v_reverse(const v_int16x8 &a) function v_uint32x4 (line 2096) | inline v_uint32x4 v_reverse(const v_uint32x4 &a) function v_int32x4 (line 2101) | inline v_int32x4 v_reverse(const v_int32x4 &a) function v_float32x4 (line 2106) | inline v_float32x4 v_reverse(const v_float32x4 &a) function v_uint64x2 (line 2109) | inline v_uint64x2 v_reverse(const v_uint64x2 &a) function v_int64x2 (line 2114) | inline v_int64x2 v_reverse(const v_int64x2 &a) function v_float64x2 (line 2119) | inline v_float64x2 v_reverse(const v_float64x2 &a) function v_int32x4 (line 2166) | inline v_int32x4 v_round(const v_float32x4& a) function v_int32x4 (line 2175) | inline v_int32x4 v_floor(const v_float32x4& a) function v_int32x4 (line 2185) | inline v_int32x4 v_ceil(const v_float32x4& a) function v_int32x4 (line 2195) | inline v_int32x4 v_trunc(const v_float32x4& a) function v_int32x4 (line 2205) | inline v_int32x4 v_round(const v_float64x2& a) function v_int32x4 (line 2216) | inline v_int32x4 v_round(const v_float64x2& a, const v_float64x2& b) function v_int32x4 (line 2226) | inline v_int32x4 v_floor(const v_float64x2& a) function v_int32x4 (line 2240) | inline v_int32x4 v_ceil(const v_float64x2& a) function v_int32x4 (line 2254) | inline v_int32x4 v_trunc(const v_float64x2& a) function v_float32x4 (line 2392) | v_float32x4 v_cvt_f32(const v_int32x4& a) function v_float32x4 (line 2398) | inline v_float32x4 v_cvt_f32(const v_float64x2& a) function v_float32x4 (line 2406) | inline v_float32x4 v_cvt_f32(const v_float64x2& a, const v_float64x2& b) function v_float64x2 (line 2415) | inline v_float64x2 v_cvt_f64(const v_int32x4& a) function v_float64x2 (line 2422) | inline v_float64x2 v_cvt_f64_high(const v_int32x4& a) function v_float64x2 (line 2429) | inline v_float64x2 v_cvt_f64(const v_float32x4& a) function v_float64x2 (line 2435) | inline v_float64x2 v_cvt_f64_high(const v_float32x4& a) function v_float64x2 (line 2441) | inline v_float64x2 v_cvt_f64(const v_int64x2& a) function v_int8x16 (line 2447) | inline v_int8x16 v_interleave_pairs(const v_int8x16& vec) function v_uint8x16 (line 2452) | inline v_uint8x16 v_interleave_pairs(const v_uint8x16& vec) function v_int8x16 (line 2457) | inline v_int8x16 v_interleave_quads(const v_int8x16& vec) function v_uint8x16 (line 2462) | inline v_uint8x16 v_interleave_quads(const v_uint8x16& vec) function v_int16x8 (line 2467) | inline v_int16x8 v_interleave_pairs(const v_int16x8& vec) function v_uint16x8 (line 2472) | inline v_uint16x8 v_interleave_pairs(const v_uint16x8& vec) { return v_r... function v_int16x8 (line 2473) | inline v_int16x8 v_interleave_quads(const v_int16x8& vec) function v_uint16x8 (line 2478) | inline v_uint16x8 v_interleave_quads(const v_uint16x8& vec) { return v_r... function v_int32x4 (line 2480) | inline v_int32x4 v_interleave_pairs(const v_int32x4& vec) function v_uint32x4 (line 2485) | inline v_uint32x4 v_interleave_pairs(const v_uint32x4& vec) { return v_r... function v_float32x4 (line 2486) | inline v_float32x4 v_interleave_pairs(const v_float32x4& vec) { return v... function v_int8x16 (line 2487) | inline v_int8x16 v_pack_triplets(const v_int8x16& vec) function v_uint8x16 (line 2492) | inline v_uint8x16 v_pack_triplets(const v_uint8x16& vec) { return v_rein... function v_int16x8 (line 2494) | inline v_int16x8 v_pack_triplets(const v_int16x8& vec) function v_uint16x8 (line 2499) | inline v_uint16x8 v_pack_triplets(const v_uint16x8& vec) { return v_rein... function v_int32x4 (line 2501) | inline v_int32x4 v_pack_triplets(const v_int32x4& vec) { return vec; } function v_uint32x4 (line 2502) | inline v_uint32x4 v_pack_triplets(const v_uint32x4& vec) { return vec; } function v_float32x4 (line 2503) | inline v_float32x4 v_pack_triplets(const v_float32x4& vec) { return vec; } function v_float64x2 (line 2506) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int32x4& b) function v_float64x2 (line 2508) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int32x... function v_float64x2 (line 2511) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_int... function v_float64x2 (line 2517) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_int... function v_float32x4 (line 2522) | inline v_float32x4 v_load_expand(const float16_t* ptr) function v_pack_store (line 2529) | inline void v_pack_store(float16_t* ptr, const v_float32x4& v) function v_cleanup (line 2538) | inline void v_cleanup() {} FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin_sse.hpp type cv (line 55) | namespace cv function CV_CPU_OPTIMIZATION_HAL_NAMESPACE_BEGIN (line 68) | CV_CPU_OPTIMIZATION_HAL_NAMESPACE_BEGIN type v_int8x16 (line 98) | struct v_int8x16 method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const type v_uint16x8 (line 124) | struct v_uint16x8 method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const type v_int16x8 (line 147) | struct v_int16x8 method v_int16x8 (line 154) | v_int16x8() {} method v_int16x8 (line 155) | explicit v_int16x8(__m128i v) : val(v) {} method v_int16x8 (line 156) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 162) | short get0() const type v_uint32x4 (line 170) | struct v_uint32x4 method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const type v_int32x4 (line 192) | struct v_int32x4 method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const type v_float32x4 (line 214) | struct v_float32x4 method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const type v_uint64x2 (line 236) | struct v_uint64x2 method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const type v_int64x2 (line 264) | struct v_int64x2 method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const type v_float64x2 (line 292) | struct v_float64x2 method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const type hal_sse_internal (line 314) | namespace hal_sse_internal class v_sse_palignr_u8_class (line 1437) | class v_sse_palignr_u8_class class v_sse_palignr_u8_class (line 1440) | class v_sse_palignr_u8_class class v_sse_palignr_u8_class (line 1443) | class v_sse_palignr_u8_class method __m128i (line 1446) | inline __m128i operator()(const __m128i& a, const __m128i&) const class v_sse_palignr_u8_class (line 1453) | class v_sse_palignr_u8_class method __m128i (line 1456) | inline __m128i operator()(const __m128i& a, const __m128i& b) const class v_sse_palignr_u8_class (line 1463) | class v_sse_palignr_u8_class method __m128i (line 1466) | inline __m128i operator()(const __m128i&, const __m128i& b) const class v_sse_palignr_u8_class (line 1473) | class v_sse_palignr_u8_class method __m128i (line 1477) | inline __m128i operator()(const __m128i& a, const __m128i& b) const method __m128i (line 1483) | inline __m128i operator()(const __m128i& a, const __m128i& b) const function __m128i (line 1492) | inline __m128i v_sse_palignr_u8(const __m128i& a, const __m128i& b) function v_uint64x2 (line 350) | inline v_uint64x2 v_setzero_u64() { return v_uint64x2(_mm_setzero_si12... method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const function v_int64x2 (line 351) | inline v_int64x2 v_setzero_s64() { return v_int64x2(_mm_setzero_si128(... method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_uint64x2 (line 352) | inline v_uint64x2 v_setall_u64(uint64 val) { return v_uint64x2(val, va... method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const function v_int64x2 (line 353) | inline v_int64x2 v_setall_s64(int64 val) { return v_int64x2(val, val); } method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_uint64x2 (line 355) | inline method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const function v_int64x2 (line 357) | inline method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_float32x4 (line 359) | inline v_float32x4 v_reinterpret_as_f32(const v_uint64x2& a) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float32x4 (line 361) | inline v_float32x4 v_reinterpret_as_f32(const v_int64x2& a) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float64x2 (line 363) | inline v_float64x2 v_reinterpret_as_f64(const v_uint64x2& a) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_float64x2 (line 365) | inline v_float64x2 v_reinterpret_as_f64(const v_int64x2& a) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_float32x4 (line 383) | inline v_float32x4 v_reinterpret_as_f32(const v_float32x4& a) {return ... method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float64x2 (line 384) | inline v_float64x2 v_reinterpret_as_f64(const v_float64x2& a) {return ... method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_float32x4 (line 385) | inline v_float32x4 v_reinterpret_as_f32(const v_float64x2& a) {return ... method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float64x2 (line 386) | inline v_float64x2 v_reinterpret_as_f64(const v_float32x4& a) {return ... method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_uint8x16 (line 389) | inline v_uint8x16 v_pack(const v_uint16x8& a, const v_uint16x8& b) function v_pack_store (line 396) | inline void v_pack_store(uchar* ptr, const v_uint16x8& a) function v_uint8x16 (line 403) | inline v_uint8x16 v_pack_u(const v_int16x8& a, const v_int16x8& b) function v_pack_u_store (line 406) | inline void v_pack_u_store(uchar* ptr, const v_int16x8& a) function v_uint8x16 (line 409) | inline function v_rshr_pack_store (line 418) | inline function v_uint8x16 (line 426) | inline function v_rshr_pack_u_store (line 434) | inline function v_int8x16 (line 442) | inline v_int8x16 v_pack(const v_int16x8& a, const v_int16x8& b) method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_pack_store (line 445) | inline void v_pack_store(schar* ptr, const v_int16x8& a) function v_int8x16 (line 448) | inline method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_rshr_pack_store (line 456) | inline function __m128i (line 467) | inline __m128i v_select_si128(__m128i mask, __m128i a, __m128i b) function v_uint16x8 (line 476) | inline v_uint16x8 v_pack(const v_uint32x4& a, const v_uint32x4& b) method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_pack_store (line 479) | inline void v_pack_store(ushort* ptr, const v_uint32x4& a) function v_uint16x8 (line 487) | inline method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_rshr_pack_store (line 496) | inline function v_uint16x8 (line 505) | inline v_uint16x8 v_pack_u(const v_int32x4& a, const v_int32x4& b) method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_pack_u_store (line 521) | inline void v_pack_u_store(ushort* ptr, const v_int32x4& a) function v_uint16x8 (line 533) | inline method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_rshr_pack_u_store (line 550) | inline function v_int16x8 (line 565) | inline v_int16x8 v_pack(const v_int32x4& a, const v_int32x4& b) method v_int16x8 (line 154) | v_int16x8() {} method v_int16x8 (line 155) | explicit v_int16x8(__m128i v) : val(v) {} method v_int16x8 (line 156) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 162) | short get0() const function v_pack_store (line 568) | inline void v_pack_store(short* ptr, const v_int32x4& a) function v_int16x8 (line 573) | inline method v_int16x8 (line 154) | v_int16x8() {} method v_int16x8 (line 155) | explicit v_int16x8(__m128i v) : val(v) {} method v_int16x8 (line 156) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 162) | short get0() const function v_rshr_pack_store (line 581) | inline function v_uint32x4 (line 591) | inline v_uint32x4 v_pack(const v_uint64x2& a, const v_uint64x2& b) method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_pack_store (line 598) | inline void v_pack_store(unsigned* ptr, const v_uint64x2& a) function v_int32x4 (line 605) | inline v_int32x4 v_pack(const v_int64x2& a, const v_int64x2& b) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_pack_store (line 612) | inline void v_pack_store(int* ptr, const v_int64x2& a) function v_uint32x4 (line 618) | inline method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_rshr_pack_store (line 630) | inline function __m128i (line 640) | inline __m128i v_sign_epi64(__m128i a) function __m128i (line 645) | inline __m128i v_srai_epi64(__m128i a, int imm) function v_int32x4 (line 651) | inline method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_rshr_pack_store (line 663) | inline function v_uint8x16 (line 674) | inline v_uint8x16 v_pack_b(const v_uint16x8& a, const v_uint16x8& b) function v_uint8x16 (line 680) | inline v_uint8x16 v_pack_b(const v_uint32x4& a, const v_uint32x4& b, function v_uint8x16 (line 688) | inline v_uint8x16 v_pack_b(const v_uint64x2& a, const v_uint64x2& b, c... function v_float32x4 (line 702) | inline v_float32x4 v_matmul(const v_float32x4& v, const v_float32x4& m0, method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float32x4 (line 714) | inline v_float32x4 v_matmuladd(const v_float32x4& v, const v_float32x4... method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_mul_expand (line 780) | inline void v_mul_expand(const v_uint8x16& a, const v_uint8x16& b, function v_mul_expand (line 790) | inline void v_mul_expand(const v_int8x16& a, const v_int8x16& b, function v_mul_expand (line 800) | inline void v_mul_expand(const v_int16x8& a, const v_int16x8& b, function v_mul_expand (line 809) | inline void v_mul_expand(const v_uint16x8& a, const v_uint16x8& b, function v_mul_expand (line 818) | inline void v_mul_expand(const v_uint32x4& a, const v_uint32x4& b, function v_int16x8 (line 827) | inline v_int16x8 v_mul_hi(const v_int16x8& a, const v_int16x8& b) { re... method v_int16x8 (line 154) | v_int16x8() {} method v_int16x8 (line 155) | explicit v_int16x8(__m128i v) : val(v) {} method v_int16x8 (line 156) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 162) | short get0() const function v_uint16x8 (line 828) | inline v_uint16x8 v_mul_hi(const v_uint16x8& a, const v_uint16x8& b) {... method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_int32x4 (line 833) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 835) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b, con... method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int64x2 (line 839) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b) method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_int64x2 (line 862) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b, con... method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_uint32x4 (line 866) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_uint32x4 (line 876) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_int32x4 (line 879) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16& b) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 889) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16&... method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_uint64x2 (line 893) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const function v_uint64x2 (line 908) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const function v_int64x2 (line 911) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8& b) method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_int64x2 (line 921) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8&... method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_float64x2 (line 925) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int32x... method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_float64x2 (line 939) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int32x... method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_int32x4 (line 945) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 947) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b... method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int64x2 (line 951) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b) method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_int64x2 (line 953) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b... method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_uint32x4 (line 957) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_uint32x4 (line 967) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_int32x4 (line 970) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 984) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_uint64x2 (line 988) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const function v_uint64x2 (line 1000) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const function v_int64x2 (line 1003) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_int64x2 (line 1010) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_float64x2 (line 1015) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_i... method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_float64x2 (line 1017) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v... method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_float32x4 (line 1040) | inline v_float32x4 v_sqrt(const v_float32x4& x) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float32x4 (line 1043) | inline v_float32x4 v_invsqrt(const v_float32x4& x) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float64x2 (line 1053) | inline v_float64x2 v_sqrt(const v_float64x2& x) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_float64x2 (line 1056) | inline v_float64x2 v_invsqrt(const v_float64x2& x) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_uint32x4 (line 1068) | inline v_uint32x4 v_abs(const v_int32x4& x) method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_float32x4 (line 1074) | inline v_float32x4 v_abs(const v_float32x4& x) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float64x2 (line 1076) | inline v_float64x2 v_abs(const v_float64x2& x) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_int8x16 (line 1099) | inline v_int8x16 v_min(const v_int8x16& a, const v_int8x16& b) method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_int8x16 (line 1109) | inline v_int8x16 v_max(const v_int8x16& a, const v_int8x16& b) method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_uint16x8 (line 1119) | inline v_uint16x8 v_min(const v_uint16x8& a, const v_uint16x8& b) method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_uint16x8 (line 1127) | inline v_uint16x8 v_max(const v_uint16x8& a, const v_uint16x8& b) method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_uint32x4 (line 1135) | inline v_uint32x4 v_min(const v_uint32x4& a, const v_uint32x4& b) method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_uint32x4 (line 1145) | inline v_uint32x4 v_max(const v_uint32x4& a, const v_uint32x4& b) method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_int32x4 (line 1155) | inline v_int32x4 v_min(const v_int32x4& a, const v_int32x4& b) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 1163) | inline v_int32x4 v_max(const v_int32x4& a, const v_int32x4& b) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_float32x4 (line 1269) | inline v_float32x4 v_not_nan(const v_float32x4& a) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float64x2 (line 1271) | inline v_float64x2 v_not_nan(const v_float64x2& a) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_uint8x16 (line 1285) | inline v_uint8x16 v_mul_wrap(const v_uint8x16& a, const v_uint8x16& b) function v_int8x16 (line 1294) | inline v_int8x16 v_mul_wrap(const v_int8x16& a, const v_int8x16& b) method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_uint8x16 (line 1301) | inline v_uint8x16 v_absdiff(const v_uint8x16& a, const v_uint8x16& b) function v_uint16x8 (line 1303) | inline v_uint16x8 v_absdiff(const v_uint16x8& a, const v_uint16x8& b) method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_uint32x4 (line 1305) | inline v_uint32x4 v_absdiff(const v_uint32x4& a, const v_uint32x4& b) method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_uint8x16 (line 1308) | inline v_uint8x16 v_absdiff(const v_int8x16& a, const v_int8x16& b) function v_uint16x8 (line 1314) | inline v_uint16x8 v_absdiff(const v_int16x8& a, const v_int16x8& b) method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_uint32x4 (line 1318) | inline v_uint32x4 v_absdiff(const v_int32x4& a, const v_int32x4& b) method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_int8x16 (line 1326) | inline v_int8x16 v_absdiffs(const v_int8x16& a, const v_int8x16& b) method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_int16x8 (line 1332) | inline v_int16x8 v_absdiffs(const v_int16x8& a, const v_int16x8& b) method v_int16x8 (line 154) | v_int16x8() {} method v_int16x8 (line 155) | explicit v_int16x8(__m128i v) : val(v) {} method v_int16x8 (line 156) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 162) | short get0() const function v_int32x4 (line 1336) | inline v_int32x4 v_fma(const v_int32x4& a, const v_int32x4& b, const v... method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 1341) | inline v_int32x4 v_muladd(const v_int32x4& a, const v_int32x4& b, cons... method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_float32x4 (line 1346) | inline v_float32x4 v_fma(const v_float32x4& a, const v_float32x4& b, c... method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float64x2 (line 1355) | inline v_float64x2 v_fma(const v_float64x2& a, const v_float64x2& b, c... method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const type hal_sse_internal (line 1429) | namespace hal_sse_internal class v_sse_palignr_u8_class (line 1437) | class v_sse_palignr_u8_class class v_sse_palignr_u8_class (line 1440) | class v_sse_palignr_u8_class class v_sse_palignr_u8_class (line 1443) | class v_sse_palignr_u8_class method __m128i (line 1446) | inline __m128i operator()(const __m128i& a, const __m128i&) const class v_sse_palignr_u8_class (line 1453) | class v_sse_palignr_u8_class method __m128i (line 1456) | inline __m128i operator()(const __m128i& a, const __m128i& b) const class v_sse_palignr_u8_class (line 1463) | class v_sse_palignr_u8_class method __m128i (line 1466) | inline __m128i operator()(const __m128i&, const __m128i& b) const class v_sse_palignr_u8_class (line 1473) | class v_sse_palignr_u8_class method __m128i (line 1477) | inline __m128i operator()(const __m128i& a, const __m128i& b) const method __m128i (line 1483) | inline __m128i operator()(const __m128i& a, const __m128i& b) const function __m128i (line 1492) | inline __m128i v_sse_palignr_u8(const __m128i& a, const __m128i& b) function _Tpvec (line 1500) | inline _Tpvec v_rotate_right(const _Tpvec &a) function _Tpvec (line 1510) | inline _Tpvec v_rotate_left(const _Tpvec &a) function _Tpvec (line 1520) | inline _Tpvec v_rotate_right(const _Tpvec &a, const _Tpvec &b) function _Tpvec (line 1531) | inline _Tpvec v_rotate_left(const _Tpvec &a, const _Tpvec &b) function v_reduce_sum (line 1621) | inline unsigned v_reduce_sum(const v_uint8x16& a) function v_reduce_sum (line 1626) | inline int v_reduce_sum(const v_int8x16& a) function v_reduce_sum (line 1701) | inline int v_reduce_sum(const v_int16x8& a) function v_reduce_sum (line 1703) | inline unsigned v_reduce_sum(const v_uint16x8& a) function uint64 (line 1706) | inline uint64 v_reduce_sum(const v_uint64x2& a) function int64 (line 1712) | inline int64 v_reduce_sum(const v_int64x2& a) function v_reduce_sum (line 1718) | inline double v_reduce_sum(const v_float64x2& a) function v_float32x4 (line 1725) | inline v_float32x4 v_reduce_sum4(const v_float32x4& a, const v_float32... method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_reduce_sad (line 1746) | inline unsigned v_reduce_sad(const v_uint8x16& a, const v_uint8x16& b) function v_reduce_sad (line 1751) | inline unsigned v_reduce_sad(const v_int8x16& a, const v_int8x16& b) function v_reduce_sad (line 1757) | inline unsigned v_reduce_sad(const v_uint16x8& a, const v_uint16x8& b) function v_reduce_sad (line 1763) | inline unsigned v_reduce_sad(const v_int16x8& a, const v_int16x8& b) function v_reduce_sad (line 1769) | inline unsigned v_reduce_sad(const v_uint32x4& a, const v_uint32x4& b) function v_reduce_sad (line 1773) | inline unsigned v_reduce_sad(const v_int32x4& a, const v_int32x4& b) function v_reduce_sad (line 1777) | inline float v_reduce_sad(const v_float32x4& a, const v_float32x4& b) function v_uint8x16 (line 1782) | inline v_uint8x16 v_popcount(const v_uint8x16& a) function v_uint16x8 (line 1793) | inline v_uint16x8 v_popcount(const v_uint16x8& a) method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_uint32x4 (line 1799) | inline v_uint32x4 v_popcount(const v_uint32x4& a) method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_uint64x2 (line 1806) | inline v_uint64x2 v_popcount(const v_uint64x2& a) method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const function v_uint8x16 (line 1810) | inline v_uint8x16 v_popcount(const v_int8x16& a) function v_uint16x8 (line 1812) | inline v_uint16x8 v_popcount(const v_int16x8& a) method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_uint32x4 (line 1814) | inline v_uint32x4 v_popcount(const v_int32x4& a) method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_uint64x2 (line 1816) | inline v_uint64x2 v_popcount(const v_int64x2& a) method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const function v_scan_forward (line 1839) | inline int v_scan_forward(const v_int8x16& a) { return trailingZeros32... function v_scan_forward (line 1840) | inline int v_scan_forward(const v_uint8x16& a) { return trailingZeros3... function v_scan_forward (line 1841) | inline int v_scan_forward(const v_int16x8& a) { return trailingZeros32... function v_scan_forward (line 1842) | inline int v_scan_forward(const v_uint16x8& a) { return trailingZeros3... function v_scan_forward (line 1843) | inline int v_scan_forward(const v_int32x4& a) { return trailingZeros32... function v_scan_forward (line 1844) | inline int v_scan_forward(const v_uint32x4& a) { return trailingZeros3... function v_scan_forward (line 1845) | inline int v_scan_forward(const v_float32x4& a) { return trailingZeros... function v_scan_forward (line 1846) | inline int v_scan_forward(const v_int64x2& a) { return trailingZeros32... function v_scan_forward (line 1847) | inline int v_scan_forward(const v_uint64x2& a) { return trailingZeros3... function v_scan_forward (line 1848) | inline int v_scan_forward(const v_float64x2& a) { return trailingZeros... function v_uint8x16 (line 1954) | inline v_uint8x16 v_reverse(const v_uint8x16 &a) function v_int8x16 (line 1966) | inline v_int8x16 v_reverse(const v_int8x16 &a) method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_uint16x8 (line 1969) | inline v_uint16x8 v_reverse(const v_uint16x8 &a) method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_int16x8 (line 1982) | inline v_int16x8 v_reverse(const v_int16x8 &a) method v_int16x8 (line 154) | v_int16x8() {} method v_int16x8 (line 155) | explicit v_int16x8(__m128i v) : val(v) {} method v_int16x8 (line 156) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 162) | short get0() const function v_uint32x4 (line 1985) | inline v_uint32x4 v_reverse(const v_uint32x4 &a) method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_int32x4 (line 1990) | inline v_int32x4 v_reverse(const v_int32x4 &a) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_float32x4 (line 1993) | inline v_float32x4 v_reverse(const v_float32x4 &a) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_uint64x2 (line 1996) | inline v_uint64x2 v_reverse(const v_uint64x2 &a) method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const function v_int64x2 (line 2001) | inline v_int64x2 v_reverse(const v_int64x2 &a) method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_float64x2 (line 2004) | inline v_float64x2 v_reverse(const v_float64x2 &a) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function _Tpvec (line 2008) | inline _Tpvec v_extract(const _Tpvec& a, const _Tpvec& b) function v_int32x4 (line 2013) | inline v_int32x4 v_round(const v_float32x4& a) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 2016) | inline v_int32x4 v_floor(const v_float32x4& a) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 2023) | inline v_int32x4 v_ceil(const v_float32x4& a) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 2030) | inline v_int32x4 v_trunc(const v_float32x4& a) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 2033) | inline v_int32x4 v_round(const v_float64x2& a) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 2036) | inline v_int32x4 v_round(const v_float64x2& a, const v_float64x2& b) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 2042) | inline v_int32x4 v_floor(const v_float64x2& a) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 2050) | inline v_int32x4 v_ceil(const v_float64x2& a) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 2058) | inline v_int32x4 v_trunc(const v_float64x2& a) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_load_deinterleave (line 2083) | inline void v_load_deinterleave(const uchar* ptr, v_uint8x16& a, v_uin... function v_load_deinterleave (line 2101) | inline void v_load_deinterleave(const uchar* ptr, v_uint8x16& a, v_uin... function v_load_deinterleave (line 2165) | inline void v_load_deinterleave(const uchar* ptr, v_uint8x16& a, v_uin... function v_load_deinterleave (line 2193) | inline void v_load_deinterleave(const ushort* ptr, v_uint16x8& a, v_ui... function v_load_deinterleave (line 2207) | inline void v_load_deinterleave(const ushort* ptr, v_uint16x8& a, v_ui... function v_load_deinterleave (line 2246) | inline void v_load_deinterleave(const ushort* ptr, v_uint16x8& a, v_ui... function v_load_deinterleave (line 2269) | inline void v_load_deinterleave(const unsigned* ptr, v_uint32x4& a, v_... function v_load_deinterleave (line 2281) | inline void v_load_deinterleave(const unsigned* ptr, v_uint32x4& a, v_... function v_load_deinterleave (line 2296) | inline void v_load_deinterleave(const unsigned* ptr, v_uint32x4& a, v_... function v_load_deinterleave (line 2306) | inline void v_load_deinterleave(const float* ptr, v_float32x4& a, v_fl... function v_load_deinterleave (line 2315) | inline void v_load_deinterleave(const float* ptr, v_float32x4& a, v_fl... function v_load_deinterleave (line 2332) | inline void v_load_deinterleave(const float* ptr, v_float32x4& a, v_fl... function v_load_deinterleave (line 2348) | inline void v_load_deinterleave(const uint64 *ptr, v_uint64x2& a, v_ui... function v_load_deinterleave (line 2357) | inline void v_load_deinterleave(const uint64 *ptr, v_uint64x2& a, v_ui... function v_load_deinterleave (line 2370) | inline void v_load_deinterleave(const uint64 *ptr, v_uint64x2& a, function v_store_interleave (line 2386) | inline void v_store_interleave( uchar* ptr, const v_uint8x16& a, const... function v_store_interleave (line 2409) | inline void v_store_interleave( uchar* ptr, const v_uint8x16& a, const... function v_store_interleave (line 2501) | inline void v_store_interleave( uchar* ptr, const v_uint8x16& a, const... function v_store_interleave (line 2542) | inline void v_store_interleave( ushort* ptr, const v_uint16x8& a, cons... function v_store_interleave (line 2565) | inline void v_store_interleave( ushort* ptr, const v_uint16x8& a, function v_store_interleave (line 2629) | inline void v_store_interleave( ushort* ptr, const v_uint16x8& a, cons... function v_store_interleave (line 2670) | inline void v_store_interleave( unsigned* ptr, const v_uint32x4& a, co... function v_store_interleave (line 2693) | inline void v_store_interleave( unsigned* ptr, const v_uint32x4& a, co... function v_store_interleave (line 2723) | inline void v_store_interleave(unsigned* ptr, const v_uint32x4& a, con... function v_store_interleave (line 2754) | inline void v_store_interleave(float* ptr, const v_float32x4& a, const... function v_store_interleave (line 2777) | inline void v_store_interleave(float* ptr, const v_float32x4& a, const... function v_store_interleave (line 2810) | inline void v_store_interleave(float* ptr, const v_float32x4& a, const... function v_store_interleave (line 2846) | inline void v_store_interleave(uint64 *ptr, const v_uint64x2& a, const... function v_store_interleave (line 2869) | inline void v_store_interleave(uint64 *ptr, const v_uint64x2& a, const... function v_store_interleave (line 2896) | inline void v_store_interleave(uint64 *ptr, const v_uint64x2& a, const... function v_float32x4 (line 2985) | inline v_float32x4 v_cvt_f32(const v_int32x4& a) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float32x4 (line 2990) | inline v_float32x4 v_cvt_f32(const v_float64x2& a) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float32x4 (line 2995) | inline v_float32x4 v_cvt_f32(const v_float64x2& a, const v_float64x2& b) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float64x2 (line 3000) | inline v_float64x2 v_cvt_f64(const v_int32x4& a) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_float64x2 (line 3005) | inline v_float64x2 v_cvt_f64_high(const v_int32x4& a) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_float64x2 (line 3010) | inline v_float64x2 v_cvt_f64(const v_float32x4& a) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_float64x2 (line 3015) | inline v_float64x2 v_cvt_f64_high(const v_float32x4& a) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_float64x2 (line 3021) | inline v_float64x2 v_cvt_f64(const v_int64x2& v) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_int8x16 (line 3048) | inline v_int8x16 v_lut(const schar* tab, const int* idx) method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_int8x16 (line 3060) | inline v_int8x16 v_lut_pairs(const schar* tab, const int* idx) method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_int8x16 (line 3072) | inline v_int8x16 v_lut_quads(const schar* tab, const int* idx) method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_uint8x16 (line 3084) | inline v_uint8x16 v_lut(const uchar* tab, const int* idx) { return v_r... function v_uint8x16 (line 3085) | inline v_uint8x16 v_lut_pairs(const uchar* tab, const int* idx) { retu... function v_uint8x16 (line 3086) | inline v_uint8x16 v_lut_quads(const uchar* tab, const int* idx) { retu... function v_int16x8 (line 3088) | inline v_int16x8 v_lut(const short* tab, const int* idx) method v_int16x8 (line 154) | v_int16x8() {} method v_int16x8 (line 155) | explicit v_int16x8(__m128i v) : val(v) {} method v_int16x8 (line 156) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 162) | short get0() const function v_int16x8 (line 3100) | inline v_int16x8 v_lut_pairs(const short* tab, const int* idx) method v_int16x8 (line 154) | v_int16x8() {} method v_int16x8 (line 155) | explicit v_int16x8(__m128i v) : val(v) {} method v_int16x8 (line 156) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 162) | short get0() const function v_int16x8 (line 3112) | inline v_int16x8 v_lut_quads(const short* tab, const int* idx) method v_int16x8 (line 154) | v_int16x8() {} method v_int16x8 (line 155) | explicit v_int16x8(__m128i v) : val(v) {} method v_int16x8 (line 156) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 162) | short get0() const function v_uint16x8 (line 3116) | inline v_uint16x8 v_lut(const ushort* tab, const int* idx) { return v_... method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_uint16x8 (line 3117) | inline v_uint16x8 v_lut_pairs(const ushort* tab, const int* idx) { ret... method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_uint16x8 (line 3118) | inline v_uint16x8 v_lut_quads(const ushort* tab, const int* idx) { ret... method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_int32x4 (line 3120) | inline v_int32x4 v_lut(const int* tab, const int* idx) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 3132) | inline v_int32x4 v_lut_pairs(const int* tab, const int* idx) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_int32x4 (line 3136) | inline v_int32x4 v_lut_quads(const int* tab, const int* idx) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_uint32x4 (line 3140) | inline v_uint32x4 v_lut(const unsigned* tab, const int* idx) { return ... method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_uint32x4 (line 3141) | inline v_uint32x4 v_lut_pairs(const unsigned* tab, const int* idx) { r... method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_uint32x4 (line 3142) | inline v_uint32x4 v_lut_quads(const unsigned* tab, const int* idx) { r... method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_int64x2 (line 3144) | inline v_int64x2 v_lut(const int64_t* tab, const int* idx) method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_int64x2 (line 3148) | inline v_int64x2 v_lut_pairs(const int64_t* tab, const int* idx) method v_int64x2 (line 271) | v_int64x2() {} method v_int64x2 (line 272) | explicit v_int64x2(__m128i v) : val(v) {} method v_int64x2 (line 273) | v_int64x2(int64 v0, int64 v1) method int64 (line 278) | int64 get0() const function v_uint64x2 (line 3152) | inline v_uint64x2 v_lut(const uint64_t* tab, const int* idx) { return ... method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const function v_uint64x2 (line 3153) | inline v_uint64x2 v_lut_pairs(const uint64_t* tab, const int* idx) { r... method v_uint64x2 (line 243) | v_uint64x2() {} method v_uint64x2 (line 244) | explicit v_uint64x2(__m128i v) : val(v) {} method v_uint64x2 (line 245) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 250) | uint64 get0() const function v_float32x4 (line 3155) | inline v_float32x4 v_lut(const float* tab, const int* idx) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float32x4 (line 3159) | inline v_float32x4 v_lut_pairs(const float* tab, const int* idx) { ret... method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float32x4 (line 3160) | inline v_float32x4 v_lut_quads(const float* tab, const int* idx) { ret... method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float64x2 (line 3162) | inline v_float64x2 v_lut(const double* tab, const int* idx) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_float64x2 (line 3166) | inline v_float64x2 v_lut_pairs(const double* tab, const int* idx) { re... method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_int32x4 (line 3168) | inline v_int32x4 v_lut(const int* tab, const v_int32x4& idxvec) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_uint32x4 (line 3175) | inline v_uint32x4 v_lut(const unsigned* tab, const v_int32x4& idxvec) method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_float32x4 (line 3180) | inline v_float32x4 v_lut(const float* tab, const v_int32x4& idxvec) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float64x2 (line 3187) | inline v_float64x2 v_lut(const double* tab, const v_int32x4& idxvec) method v_float64x2 (line 299) | v_float64x2() {} method v_float64x2 (line 300) | explicit v_float64x2(__m128d v) : val(v) {} method v_float64x2 (line 301) | v_float64x2(double v0, double v1) method get0 (line 306) | double get0() const function v_lut_deinterleave (line 3200) | inline void v_lut_deinterleave(const float* tab, const v_int32x4& idxv... function v_lut_deinterleave (line 3215) | inline void v_lut_deinterleave(const double* tab, const v_int32x4& idx... function v_int8x16 (line 3225) | inline v_int8x16 v_interleave_pairs(const v_int8x16& vec) method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_uint8x16 (line 3236) | inline v_uint8x16 v_interleave_pairs(const v_uint8x16& vec) { return v... function v_int8x16 (line 3237) | inline v_int8x16 v_interleave_quads(const v_int8x16& vec) method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_uint8x16 (line 3246) | inline v_uint8x16 v_interleave_quads(const v_uint8x16& vec) { return v... function v_int16x8 (line 3248) | inline v_int16x8 v_interleave_pairs(const v_int16x8& vec) method v_int16x8 (line 154) | v_int16x8() {} method v_int16x8 (line 155) | explicit v_int16x8(__m128i v) : val(v) {} method v_int16x8 (line 156) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 162) | short get0() const function v_uint16x8 (line 3257) | inline v_uint16x8 v_interleave_pairs(const v_uint16x8& vec) { return v... method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_int16x8 (line 3258) | inline v_int16x8 v_interleave_quads(const v_int16x8& vec) method v_int16x8 (line 154) | v_int16x8() {} method v_int16x8 (line 155) | explicit v_int16x8(__m128i v) : val(v) {} method v_int16x8 (line 156) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 162) | short get0() const function v_uint16x8 (line 3266) | inline v_uint16x8 v_interleave_quads(const v_uint16x8& vec) { return v... method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_int32x4 (line 3268) | inline v_int32x4 v_interleave_pairs(const v_int32x4& vec) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_uint32x4 (line 3272) | inline v_uint32x4 v_interleave_pairs(const v_uint32x4& vec) { return v... method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_float32x4 (line 3273) | inline v_float32x4 v_interleave_pairs(const v_float32x4& vec) { return... method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_int8x16 (line 3275) | inline v_int8x16 v_pack_triplets(const v_int8x16& vec) method v_int8x16 (line 105) | v_int8x16() {} method v_int8x16 (line 106) | explicit v_int8x16(__m128i v) : val(v) {} method v_int8x16 (line 107) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 116) | schar get0() const function v_uint8x16 (line 3285) | inline v_uint8x16 v_pack_triplets(const v_uint8x16& vec) { return v_re... function v_int16x8 (line 3287) | inline v_int16x8 v_pack_triplets(const v_int16x8& vec) method v_int16x8 (line 154) | v_int16x8() {} method v_int16x8 (line 155) | explicit v_int16x8(__m128i v) : val(v) {} method v_int16x8 (line 156) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 162) | short get0() const function v_uint16x8 (line 3295) | inline v_uint16x8 v_pack_triplets(const v_uint16x8& vec) { return v_re... method v_uint16x8 (line 131) | v_uint16x8() {} method v_uint16x8 (line 132) | explicit v_uint16x8(__m128i v) : val(v) {} method v_uint16x8 (line 133) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 139) | ushort get0() const function v_int32x4 (line 3297) | inline v_int32x4 v_pack_triplets(const v_int32x4& vec) { return vec; } method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_uint32x4 (line 3298) | inline v_uint32x4 v_pack_triplets(const v_uint32x4& vec) { return vec; } method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_float32x4 (line 3299) | inline v_float32x4 v_pack_triplets(const v_float32x4& vec) { return ve... method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function uchar (line 3302) | inline uchar v_extract_n(const v_uint8x16& v) function schar (line 3312) | inline schar v_extract_n(const v_int8x16& v) function ushort (line 3318) | inline ushort v_extract_n(const v_uint16x8& v) function v_extract_n (line 3324) | inline short v_extract_n(const v_int16x8& v) function uint (line 3330) | inline uint v_extract_n(const v_uint32x4& v) function v_extract_n (line 3340) | inline int v_extract_n(const v_int32x4& v) function uint64 (line 3346) | inline uint64 v_extract_n(const v_uint64x2& v) function int64 (line 3356) | inline int64 v_extract_n(const v_int64x2& v) function v_extract_n (line 3362) | inline float v_extract_n(const v_float32x4& v) function v_extract_n (line 3370) | inline double v_extract_n(const v_float64x2& v) function v_int32x4 (line 3378) | inline v_int32x4 v_broadcast_element(const v_int32x4& v) method v_int32x4 (line 199) | v_int32x4() {} method v_int32x4 (line 200) | explicit v_int32x4(__m128i v) : val(v) {} method v_int32x4 (line 201) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 206) | int get0() const function v_uint32x4 (line 3384) | inline v_uint32x4 v_broadcast_element(const v_uint32x4& v) method v_uint32x4 (line 177) | v_uint32x4() {} method v_uint32x4 (line 178) | explicit v_uint32x4(__m128i v) : val(v) {} method v_uint32x4 (line 179) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 184) | unsigned get0() const function v_float32x4 (line 3390) | inline v_float32x4 v_broadcast_element(const v_float32x4& v) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_float32x4 (line 3397) | inline v_float32x4 v_load_expand(const float16_t* ptr) method v_float32x4 (line 221) | v_float32x4() {} method v_float32x4 (line 222) | explicit v_float32x4(__m128 v) : val(v) {} method v_float32x4 (line 223) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 228) | float get0() const function v_pack_store (line 3417) | inline void v_pack_store(float16_t* ptr, const v_float32x4& v) function v_cleanup (line 3447) | inline void v_cleanup() {} FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin_sse_em.hpp type cv (line 8) | namespace cv function __m128i (line 31) | inline __m128i _v128_comgt_epu32(const __m128i& a, const __m128i& b) function __m128i (line 46) | inline __m128i _v128_blendv_epi8(const __m128i& a, const __m128i& b, c... function __m128i (line 51) | inline __m128i _v128_cvtepu8_epi16(const __m128i& a) function __m128i (line 56) | inline __m128i _v128_cvtepi8_epi16(const __m128i& a) function __m128i (line 59) | inline __m128i _v128_cvtepu8_epi32(const __m128i& a) function __m128i (line 64) | inline __m128i _v128_cvtepi8_epi32(const __m128i& a) function __m128i (line 71) | inline __m128i _v128_cvtepu16_epi32(const __m128i& a) function __m128i (line 76) | inline __m128i _v128_cvtepi16_epi32(const __m128i& a) function __m128i (line 79) | inline __m128i _v128_cvtepu32_epi64(const __m128i& a) function __m128i (line 84) | inline __m128i _v128_cvtepi32_epi64(const __m128i& a) function __m128i (line 88) | inline __m128i _v128_mullo_epi32(const __m128i& a, const __m128i& b) function __m128i (line 98) | inline __m128i _v128_min_epu32(const __m128i& a, const __m128i& b) function __m128i (line 120) | inline __m128i _v128_cvtepu8_epi16_high(const __m128i& a) function __m128i (line 125) | inline __m128i _v128_cvtepi8_epi16_high(const __m128i& a) function __m128i (line 128) | inline __m128i _v128_cvtepu16_epi32_high(const __m128i& a) function __m128i (line 133) | inline __m128i _v128_cvtepi16_epi32_high(const __m128i& a) function __m128i (line 136) | inline __m128i _v128_cvtepu32_epi64_high(const __m128i& a) function __m128i (line 141) | inline __m128i _v128_cvtepi32_epi64_high(const __m128i& a) function __m128i (line 145) | inline __m128i _v128_packs_epu32(const __m128i& a, const __m128i& b) function int64 (line 162) | inline int64 _v128_extract_epi64(const __m128i& a) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin_vsx.hpp type cv (line 14) | namespace cv function CV_CPU_OPTIMIZATION_HAL_NAMESPACE_BEGIN (line 19) | CV_CPU_OPTIMIZATION_HAL_NAMESPACE_BEGIN type v_int8x16 (line 46) | struct v_int8x16 method v_int8x16 (line 52) | explicit v_int8x16(const vec_char16& v) : val(v) method v_int8x16 (line 54) | v_int8x16() method v_int8x16 (line 56) | v_int8x16(vec_bchar16 v) : val(vec_char16_c(v)) method v_int8x16 (line 58) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method v_int8x16 (line 63) | static inline v_int8x16 zero() { return v_int8x16(vec_char16_z); } method schar (line 65) | schar get0() const type v_uint16x8 (line 69) | struct v_uint16x8 method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const type v_int16x8 (line 91) | struct v_int16x8 method v_int16x8 (line 97) | explicit v_int16x8(const vec_short8& v) : val(v) method v_int16x8 (line 99) | v_int16x8() method v_int16x8 (line 101) | v_int16x8(vec_bshort8 v) : val(vec_short8_c(v)) method v_int16x8 (line 103) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method v_int16x8 (line 107) | static inline v_int16x8 zero() { return v_int16x8(vec_short8_z); } method get0 (line 109) | short get0() const type v_uint32x4 (line 113) | struct v_uint32x4 method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const type v_int32x4 (line 134) | struct v_int32x4 method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const type v_float32x4 (line 155) | struct v_float32x4 method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const type v_uint64x2 (line 176) | struct v_uint64x2 method v_uint64x2 (line 182) | explicit v_uint64x2(const vec_udword2& v) : val(v) method v_uint64x2 (line 184) | v_uint64x2() method v_uint64x2 (line 186) | v_uint64x2(vec_bdword2 v) : val(vec_udword2_c(v)) method v_uint64x2 (line 188) | v_uint64x2(uint64 v0, uint64 v1) : val(vec_udword2_set(v0, v1)) method v_uint64x2 (line 191) | static inline v_uint64x2 zero() { return v_uint64x2(vec_udword2_z); } method uint64 (line 193) | uint64 get0() const type v_int64x2 (line 197) | struct v_int64x2 method v_int64x2 (line 203) | explicit v_int64x2(const vec_dword2& v) : val(v) method v_int64x2 (line 205) | v_int64x2() method v_int64x2 (line 207) | v_int64x2(vec_bdword2 v) : val(vec_dword2_c(v)) method v_int64x2 (line 209) | v_int64x2(int64 v0, int64 v1) : val(vec_dword2_set(v0, v1)) method v_int64x2 (line 212) | static inline v_int64x2 zero() { return v_int64x2(vec_dword2_z); } method int64 (line 214) | int64 get0() const type v_float64x2 (line 218) | struct v_float64x2 method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_uint32x4 (line 387) | inline v_uint32x4 v_load_expand_q(const uchar* ptr) method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_int32x4 (line 399) | inline v_int32x4 v_load_expand_q(const schar* ptr) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_uint8x16 (line 460) | inline v_uint8x16 v_pack_b(const v_uint16x8& a, const v_uint16x8& b) function v_uint8x16 (line 466) | inline v_uint8x16 v_pack_b(const v_uint32x4& a, const v_uint32x4& b, function v_uint8x16 (line 474) | inline v_uint8x16 v_pack_b(const v_uint64x2& a, const v_uint64x2& b, c... function v_zip (line 490) | inline void v_zip(const _Tpvec& a0, const _Tpvec& a1, _Tpvec& b0, _Tpv... function _Tpvec (line 497) | inline _Tpvec v_combine_high(const _Tpvec& a, const _Tpvec& b) function _Tpvec (line 501) | inline _Tpvec v_combine_low(const _Tpvec& a, const _Tpvec& b) function v_recombine (line 505) | inline void v_recombine(const _Tpvec& a, const _Tpvec& b, _Tpvec& c, _... function v_mul_expand (line 565) | inline void v_mul_expand(const Tvec& a, const Tvec& b, Twvec& c, Twvec... function v_int16x8 (line 572) | inline v_int16x8 v_mul_hi(const v_int16x8& a, const v_int16x8& b) method v_int16x8 (line 97) | explicit v_int16x8(const vec_short8& v) : val(v) method v_int16x8 (line 99) | v_int16x8() method v_int16x8 (line 101) | v_int16x8(vec_bshort8 v) : val(vec_short8_c(v)) method v_int16x8 (line 103) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method v_int16x8 (line 107) | static inline v_int16x8 zero() { return v_int16x8(vec_short8_z); } method get0 (line 109) | short get0() const function v_uint16x8 (line 579) | inline v_uint16x8 v_mul_hi(const v_uint16x8& a, const v_uint16x8& b) method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const function v_float32x4 (line 677) | inline v_float32x4 v_not_nan(const v_float32x4& a) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float64x2 (line 679) | inline v_float64x2 v_not_nan(const v_float64x2& a) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function _Tpvec (line 713) | inline _Tpvec v_rotate_right(const _Tpvec& a, const _Tpvec& b) function _Tpvec (line 726) | inline _Tpvec v_rotate_left(const _Tpvec& a, const _Tpvec& b) function v_uint8x16 (line 752) | inline v_uint8x16 v_reverse(const v_uint8x16 &a) function v_int8x16 (line 759) | inline v_int8x16 v_reverse(const v_int8x16 &a) method v_int8x16 (line 52) | explicit v_int8x16(const vec_char16& v) : val(v) method v_int8x16 (line 54) | v_int8x16() method v_int8x16 (line 56) | v_int8x16(vec_bchar16 v) : val(vec_char16_c(v)) method v_int8x16 (line 58) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method v_int8x16 (line 63) | static inline v_int8x16 zero() { return v_int8x16(vec_char16_z); } method schar (line 65) | schar get0() const function v_uint16x8 (line 762) | inline v_uint16x8 v_reverse(const v_uint16x8 &a) method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const function v_int16x8 (line 769) | inline v_int16x8 v_reverse(const v_int16x8 &a) method v_int16x8 (line 97) | explicit v_int16x8(const vec_short8& v) : val(v) method v_int16x8 (line 99) | v_int16x8() method v_int16x8 (line 101) | v_int16x8(vec_bshort8 v) : val(vec_short8_c(v)) method v_int16x8 (line 103) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method v_int16x8 (line 107) | static inline v_int16x8 zero() { return v_int16x8(vec_short8_z); } method get0 (line 109) | short get0() const function v_uint32x4 (line 772) | inline v_uint32x4 v_reverse(const v_uint32x4 &a) method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_int32x4 (line 779) | inline v_int32x4 v_reverse(const v_int32x4 &a) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_float32x4 (line 782) | inline v_float32x4 v_reverse(const v_float32x4 &a) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_uint64x2 (line 785) | inline v_uint64x2 v_reverse(const v_uint64x2 &a) method v_uint64x2 (line 182) | explicit v_uint64x2(const vec_udword2& v) : val(v) method v_uint64x2 (line 184) | v_uint64x2() method v_uint64x2 (line 186) | v_uint64x2(vec_bdword2 v) : val(vec_udword2_c(v)) method v_uint64x2 (line 188) | v_uint64x2(uint64 v0, uint64 v1) : val(vec_udword2_set(v0, v1)) method v_uint64x2 (line 191) | static inline v_uint64x2 zero() { return v_uint64x2(vec_udword2_z); } method uint64 (line 193) | uint64 get0() const function v_int64x2 (line 792) | inline v_int64x2 v_reverse(const v_int64x2 &a) method v_int64x2 (line 203) | explicit v_int64x2(const vec_dword2& v) : val(v) method v_int64x2 (line 205) | v_int64x2() method v_int64x2 (line 207) | v_int64x2(vec_bdword2 v) : val(vec_dword2_c(v)) method v_int64x2 (line 209) | v_int64x2(int64 v0, int64 v1) : val(vec_dword2_set(v0, v1)) method v_int64x2 (line 212) | static inline v_int64x2 zero() { return v_int64x2(vec_dword2_z); } method int64 (line 214) | int64 get0() const function v_float64x2 (line 795) | inline v_float64x2 v_reverse(const v_float64x2 &a) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function _Tpvec (line 800) | inline _Tpvec v_extract(const _Tpvec& a, const _Tpvec& b) function uint (line 806) | inline uint v_reduce_sum(const v_uint8x16& a) function v_reduce_sum (line 812) | inline int v_reduce_sum(const v_int8x16& a) function v_reduce_sum (line 818) | inline int v_reduce_sum(const v_int16x8& a) function uint (line 823) | inline uint v_reduce_sum(const v_uint16x8& a) function uint64 (line 845) | inline uint64 v_reduce_sum(const v_uint64x2& a) function int64 (line 849) | inline int64 v_reduce_sum(const v_int64x2& a) function v_reduce_sum (line 853) | inline double v_reduce_sum(const v_float64x2& a) function v_float32x4 (line 883) | inline v_float32x4 v_reduce_sum4(const v_float32x4& a, const v_float32... method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_reduce_sad (line 894) | inline unsigned v_reduce_sad(const v_uint8x16& a, const v_uint8x16& b) function v_reduce_sad (line 900) | inline unsigned v_reduce_sad(const v_int8x16& a, const v_int8x16& b) function v_reduce_sad (line 907) | inline unsigned v_reduce_sad(const v_uint16x8& a, const v_uint16x8& b) function v_reduce_sad (line 913) | inline unsigned v_reduce_sad(const v_int16x8& a, const v_int16x8& b) function v_reduce_sad (line 920) | inline unsigned v_reduce_sad(const v_uint32x4& a, const v_uint32x4& b) function v_reduce_sad (line 926) | inline unsigned v_reduce_sad(const v_int32x4& a, const v_int32x4& b) function v_reduce_sad (line 931) | inline float v_reduce_sad(const v_float32x4& a, const v_float32x4& b) function v_uint8x16 (line 939) | inline v_uint8x16 v_popcount(const v_uint8x16& a) function v_uint8x16 (line 941) | inline v_uint8x16 v_popcount(const v_int8x16& a) function v_uint16x8 (line 943) | inline v_uint16x8 v_popcount(const v_uint16x8& a) method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const function v_uint16x8 (line 945) | inline v_uint16x8 v_popcount(const v_int16x8& a) method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const function v_uint32x4 (line 947) | inline v_uint32x4 v_popcount(const v_uint32x4& a) method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_uint32x4 (line 949) | inline v_uint32x4 v_popcount(const v_int32x4& a) method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_uint64x2 (line 951) | inline v_uint64x2 v_popcount(const v_uint64x2& a) method v_uint64x2 (line 182) | explicit v_uint64x2(const vec_udword2& v) : val(v) method v_uint64x2 (line 184) | v_uint64x2() method v_uint64x2 (line 186) | v_uint64x2(vec_bdword2 v) : val(vec_udword2_c(v)) method v_uint64x2 (line 188) | v_uint64x2(uint64 v0, uint64 v1) : val(vec_udword2_set(v0, v1)) method v_uint64x2 (line 191) | static inline v_uint64x2 zero() { return v_uint64x2(vec_udword2_z); } method uint64 (line 193) | uint64 get0() const function v_uint64x2 (line 953) | inline v_uint64x2 v_popcount(const v_int64x2& a) method v_uint64x2 (line 182) | explicit v_uint64x2(const vec_udword2& v) : val(v) method v_uint64x2 (line 184) | v_uint64x2() method v_uint64x2 (line 186) | v_uint64x2(vec_bdword2 v) : val(vec_udword2_c(v)) method v_uint64x2 (line 188) | v_uint64x2(uint64 v0, uint64 v1) : val(vec_udword2_set(v0, v1)) method v_uint64x2 (line 191) | static inline v_uint64x2 zero() { return v_uint64x2(vec_udword2_z); } method uint64 (line 193) | uint64 get0() const function v_signmask (line 957) | inline int v_signmask(const v_uint8x16& a) function v_signmask (line 962) | inline int v_signmask(const v_int8x16& a) function v_signmask (line 965) | inline int v_signmask(const v_int16x8& a) function v_signmask (line 970) | inline int v_signmask(const v_uint16x8& a) function v_signmask (line 973) | inline int v_signmask(const v_int32x4& a) function v_signmask (line 978) | inline int v_signmask(const v_uint32x4& a) function v_signmask (line 980) | inline int v_signmask(const v_float32x4& a) function v_signmask (line 983) | inline int v_signmask(const v_int64x2& a) function v_signmask (line 988) | inline int v_signmask(const v_uint64x2& a) function v_signmask (line 990) | inline int v_signmask(const v_float64x2& a) function v_scan_forward (line 993) | inline int v_scan_forward(const v_int8x16& a) { return trailingZeros32... function v_scan_forward (line 994) | inline int v_scan_forward(const v_uint8x16& a) { return trailingZeros3... function v_scan_forward (line 995) | inline int v_scan_forward(const v_int16x8& a) { return trailingZeros32... function v_scan_forward (line 996) | inline int v_scan_forward(const v_uint16x8& a) { return trailingZeros3... function v_scan_forward (line 997) | inline int v_scan_forward(const v_int32x4& a) { return trailingZeros32... function v_scan_forward (line 998) | inline int v_scan_forward(const v_uint32x4& a) { return trailingZeros3... function v_scan_forward (line 999) | inline int v_scan_forward(const v_float32x4& a) { return trailingZeros... function v_scan_forward (line 1000) | inline int v_scan_forward(const v_int64x2& a) { return trailingZeros32... function v_scan_forward (line 1001) | inline int v_scan_forward(const v_uint64x2& a) { return trailingZeros3... function v_scan_forward (line 1002) | inline int v_scan_forward(const v_float64x2& a) { return trailingZeros... function v_check_all (line 1005) | inline bool v_check_all(const _Tpvec& a) function v_check_all (line 1007) | inline bool v_check_all(const v_uint8x16& a) function v_check_all (line 1009) | inline bool v_check_all(const v_uint16x8& a) function v_check_all (line 1011) | inline bool v_check_all(const v_uint32x4& a) function v_check_all (line 1013) | inline bool v_check_all(const v_uint64x2& a) function v_check_all (line 1015) | inline bool v_check_all(const v_float32x4& a) function v_check_all (line 1017) | inline bool v_check_all(const v_float64x2& a) function v_check_any (line 1021) | inline bool v_check_any(const _Tpvec& a) function v_check_any (line 1023) | inline bool v_check_any(const v_uint8x16& a) function v_check_any (line 1025) | inline bool v_check_any(const v_uint16x8& a) function v_check_any (line 1027) | inline bool v_check_any(const v_uint32x4& a) function v_check_any (line 1029) | inline bool v_check_any(const v_uint64x2& a) function v_check_any (line 1031) | inline bool v_check_any(const v_float32x4& a) function v_check_any (line 1033) | inline bool v_check_any(const v_float64x2& a) function v_float32x4 (line 1039) | inline v_float32x4 v_sqrt(const v_float32x4& x) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float64x2 (line 1041) | inline v_float64x2 v_sqrt(const v_float64x2& x) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_float32x4 (line 1044) | inline v_float32x4 v_invsqrt(const v_float32x4& x) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float64x2 (line 1046) | inline v_float64x2 v_invsqrt(const v_float64x2& x) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_int32x4 (line 1062) | inline v_int32x4 v_muladd(const v_int32x4& a, const v_int32x4& b, cons... method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_uint8x16 (line 1068) | inline v_uint8x16 v_abs(const v_int8x16& x) function v_uint16x8 (line 1071) | inline v_uint16x8 v_abs(const v_int16x8& x) method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const function v_uint32x4 (line 1074) | inline v_uint32x4 v_abs(const v_int32x4& x) method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_float32x4 (line 1077) | inline v_float32x4 v_abs(const v_float32x4& x) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float64x2 (line 1080) | inline v_float64x2 v_abs(const v_float64x2& x) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_uint8x16 (line 1087) | inline v_uint8x16 v_absdiff(const v_int8x16& a, const v_int8x16& b) function v_uint16x8 (line 1089) | inline v_uint16x8 v_absdiff(const v_int16x8& a, const v_int16x8& b) method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const function v_uint32x4 (line 1091) | inline v_uint32x4 v_absdiff(const v_int32x4& a, const v_int32x4& b) method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_float32x4 (line 1094) | inline v_float32x4 v_absdiff(const v_float32x4& a, const v_float32x4& b) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float64x2 (line 1096) | inline v_float64x2 v_absdiff(const v_float64x2& a, const v_float64x2& b) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_int8x16 (line 1100) | inline v_int8x16 v_absdiffs(const v_int8x16& a, const v_int8x16& b) method v_int8x16 (line 52) | explicit v_int8x16(const vec_char16& v) : val(v) method v_int8x16 (line 54) | v_int8x16() method v_int8x16 (line 56) | v_int8x16(vec_bchar16 v) : val(vec_char16_c(v)) method v_int8x16 (line 58) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method v_int8x16 (line 63) | static inline v_int8x16 zero() { return v_int8x16(vec_char16_z); } method schar (line 65) | schar get0() const function v_int16x8 (line 1102) | inline v_int16x8 v_absdiffs(const v_int16x8& a, const v_int16x8& b) method v_int16x8 (line 97) | explicit v_int16x8(const vec_short8& v) : val(v) method v_int16x8 (line 99) | v_int16x8() method v_int16x8 (line 101) | v_int16x8(vec_bshort8 v) : val(vec_short8_c(v)) method v_int16x8 (line 103) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method v_int16x8 (line 107) | static inline v_int16x8 zero() { return v_int16x8(vec_short8_z); } method get0 (line 109) | short get0() const function v_int32x4 (line 1108) | inline v_int32x4 v_round(const v_float32x4& a) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1111) | inline v_int32x4 v_round(const v_float64x2& a) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1114) | inline v_int32x4 v_round(const v_float64x2& a, const v_float64x2& b) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1117) | inline v_int32x4 v_floor(const v_float32x4& a) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1120) | inline v_int32x4 v_floor(const v_float64x2& a) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1123) | inline v_int32x4 v_ceil(const v_float32x4& a) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1126) | inline v_int32x4 v_ceil(const v_float64x2& a) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1129) | inline v_int32x4 v_trunc(const v_float32x4& a) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1132) | inline v_int32x4 v_trunc(const v_float64x2& a) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_float32x4 (line 1136) | inline v_float32x4 v_cvt_f32(const v_int32x4& a) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float32x4 (line 1139) | inline v_float32x4 v_cvt_f32(const v_float64x2& a) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float32x4 (line 1142) | inline v_float32x4 v_cvt_f32(const v_float64x2& a, const v_float64x2& b) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float64x2 (line 1145) | inline v_float64x2 v_cvt_f64(const v_int32x4& a) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_float64x2 (line 1148) | inline v_float64x2 v_cvt_f64_high(const v_int32x4& a) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_float64x2 (line 1151) | inline v_float64x2 v_cvt_f64(const v_float32x4& a) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_float64x2 (line 1154) | inline v_float64x2 v_cvt_f64_high(const v_float32x4& a) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_float64x2 (line 1157) | inline v_float64x2 v_cvt_f64(const v_int64x2& a) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_int8x16 (line 1162) | inline v_int8x16 v_lut(const schar* tab, const int* idx) method v_int8x16 (line 52) | explicit v_int8x16(const vec_char16& v) : val(v) method v_int8x16 (line 54) | v_int8x16() method v_int8x16 (line 56) | v_int8x16(vec_bchar16 v) : val(vec_char16_c(v)) method v_int8x16 (line 58) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method v_int8x16 (line 63) | static inline v_int8x16 zero() { return v_int8x16(vec_char16_z); } method schar (line 65) | schar get0() const function v_int8x16 (line 1167) | inline v_int8x16 v_lut_pairs(const schar* tab, const int* idx) method v_int8x16 (line 52) | explicit v_int8x16(const vec_char16& v) : val(v) method v_int8x16 (line 54) | v_int8x16() method v_int8x16 (line 56) | v_int8x16(vec_bchar16 v) : val(vec_char16_c(v)) method v_int8x16 (line 58) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method v_int8x16 (line 63) | static inline v_int8x16 zero() { return v_int8x16(vec_char16_z); } method schar (line 65) | schar get0() const function v_int8x16 (line 1172) | inline v_int8x16 v_lut_quads(const schar* tab, const int* idx) method v_int8x16 (line 52) | explicit v_int8x16(const vec_char16& v) : val(v) method v_int8x16 (line 54) | v_int8x16() method v_int8x16 (line 56) | v_int8x16(vec_bchar16 v) : val(vec_char16_c(v)) method v_int8x16 (line 58) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method v_int8x16 (line 63) | static inline v_int8x16 zero() { return v_int8x16(vec_char16_z); } method schar (line 65) | schar get0() const function v_uint8x16 (line 1176) | inline v_uint8x16 v_lut(const uchar* tab, const int* idx) { return v_r... function v_uint8x16 (line 1177) | inline v_uint8x16 v_lut_pairs(const uchar* tab, const int* idx) { retu... function v_uint8x16 (line 1178) | inline v_uint8x16 v_lut_quads(const uchar* tab, const int* idx) { retu... function v_int16x8 (line 1180) | inline v_int16x8 v_lut(const short* tab, const int* idx) method v_int16x8 (line 97) | explicit v_int16x8(const vec_short8& v) : val(v) method v_int16x8 (line 99) | v_int16x8() method v_int16x8 (line 101) | v_int16x8(vec_bshort8 v) : val(vec_short8_c(v)) method v_int16x8 (line 103) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method v_int16x8 (line 107) | static inline v_int16x8 zero() { return v_int16x8(vec_short8_z); } method get0 (line 109) | short get0() const function v_int16x8 (line 1184) | inline v_int16x8 v_lut_pairs(const short* tab, const int* idx) method v_int16x8 (line 97) | explicit v_int16x8(const vec_short8& v) : val(v) method v_int16x8 (line 99) | v_int16x8() method v_int16x8 (line 101) | v_int16x8(vec_bshort8 v) : val(vec_short8_c(v)) method v_int16x8 (line 103) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method v_int16x8 (line 107) | static inline v_int16x8 zero() { return v_int16x8(vec_short8_z); } method get0 (line 109) | short get0() const function v_int16x8 (line 1188) | inline v_int16x8 v_lut_quads(const short* tab, const int* idx) method v_int16x8 (line 97) | explicit v_int16x8(const vec_short8& v) : val(v) method v_int16x8 (line 99) | v_int16x8() method v_int16x8 (line 101) | v_int16x8(vec_bshort8 v) : val(vec_short8_c(v)) method v_int16x8 (line 103) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method v_int16x8 (line 107) | static inline v_int16x8 zero() { return v_int16x8(vec_short8_z); } method get0 (line 109) | short get0() const function v_uint16x8 (line 1192) | inline v_uint16x8 v_lut(const ushort* tab, const int* idx) { return v_... method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const function v_uint16x8 (line 1193) | inline v_uint16x8 v_lut_pairs(const ushort* tab, const int* idx) { ret... method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const function v_uint16x8 (line 1194) | inline v_uint16x8 v_lut_quads(const ushort* tab, const int* idx) { ret... method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const function v_int32x4 (line 1196) | inline v_int32x4 v_lut(const int* tab, const int* idx) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1200) | inline v_int32x4 v_lut_pairs(const int* tab, const int* idx) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1204) | inline v_int32x4 v_lut_quads(const int* tab, const int* idx) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_uint32x4 (line 1208) | inline v_uint32x4 v_lut(const unsigned* tab, const int* idx) { return ... method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_uint32x4 (line 1209) | inline v_uint32x4 v_lut_pairs(const unsigned* tab, const int* idx) { r... method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_uint32x4 (line 1210) | inline v_uint32x4 v_lut_quads(const unsigned* tab, const int* idx) { r... method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_int64x2 (line 1212) | inline v_int64x2 v_lut(const int64_t* tab, const int* idx) method v_int64x2 (line 203) | explicit v_int64x2(const vec_dword2& v) : val(v) method v_int64x2 (line 205) | v_int64x2() method v_int64x2 (line 207) | v_int64x2(vec_bdword2 v) : val(vec_dword2_c(v)) method v_int64x2 (line 209) | v_int64x2(int64 v0, int64 v1) : val(vec_dword2_set(v0, v1)) method v_int64x2 (line 212) | static inline v_int64x2 zero() { return v_int64x2(vec_dword2_z); } method int64 (line 214) | int64 get0() const function v_int64x2 (line 1216) | inline v_int64x2 v_lut_pairs(const int64_t* tab, const int* idx) method v_int64x2 (line 203) | explicit v_int64x2(const vec_dword2& v) : val(v) method v_int64x2 (line 205) | v_int64x2() method v_int64x2 (line 207) | v_int64x2(vec_bdword2 v) : val(vec_dword2_c(v)) method v_int64x2 (line 209) | v_int64x2(int64 v0, int64 v1) : val(vec_dword2_set(v0, v1)) method v_int64x2 (line 212) | static inline v_int64x2 zero() { return v_int64x2(vec_dword2_z); } method int64 (line 214) | int64 get0() const function v_uint64x2 (line 1220) | inline v_uint64x2 v_lut(const uint64_t* tab, const int* idx) { return ... method v_uint64x2 (line 182) | explicit v_uint64x2(const vec_udword2& v) : val(v) method v_uint64x2 (line 184) | v_uint64x2() method v_uint64x2 (line 186) | v_uint64x2(vec_bdword2 v) : val(vec_udword2_c(v)) method v_uint64x2 (line 188) | v_uint64x2(uint64 v0, uint64 v1) : val(vec_udword2_set(v0, v1)) method v_uint64x2 (line 191) | static inline v_uint64x2 zero() { return v_uint64x2(vec_udword2_z); } method uint64 (line 193) | uint64 get0() const function v_uint64x2 (line 1221) | inline v_uint64x2 v_lut_pairs(const uint64_t* tab, const int* idx) { r... method v_uint64x2 (line 182) | explicit v_uint64x2(const vec_udword2& v) : val(v) method v_uint64x2 (line 184) | v_uint64x2() method v_uint64x2 (line 186) | v_uint64x2(vec_bdword2 v) : val(vec_udword2_c(v)) method v_uint64x2 (line 188) | v_uint64x2(uint64 v0, uint64 v1) : val(vec_udword2_set(v0, v1)) method v_uint64x2 (line 191) | static inline v_uint64x2 zero() { return v_uint64x2(vec_udword2_z); } method uint64 (line 193) | uint64 get0() const function v_float32x4 (line 1223) | inline v_float32x4 v_lut(const float* tab, const int* idx) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float32x4 (line 1227) | inline v_float32x4 v_lut_pairs(const float* tab, const int* idx) { ret... method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float32x4 (line 1228) | inline v_float32x4 v_lut_quads(const float* tab, const int* idx) { ret... method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float64x2 (line 1230) | inline v_float64x2 v_lut(const double* tab, const int* idx) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_float64x2 (line 1234) | inline v_float64x2 v_lut_pairs(const double* tab, const int* idx) { re... method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_int32x4 (line 1236) | inline v_int32x4 v_lut(const int* tab, const v_int32x4& idxvec) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_uint32x4 (line 1247) | inline v_uint32x4 v_lut(const unsigned* tab, const v_int32x4& idxvec) method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_float32x4 (line 1258) | inline v_float32x4 v_lut(const float* tab, const v_int32x4& idxvec) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float64x2 (line 1269) | inline v_float64x2 v_lut(const double* tab, const v_int32x4& idxvec) method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_lut_deinterleave (line 1278) | inline void v_lut_deinterleave(const float* tab, const v_int32x4& idxv... function v_lut_deinterleave (line 1289) | inline void v_lut_deinterleave(const double* tab, const v_int32x4& idx... function v_int8x16 (line 1297) | inline v_int8x16 v_interleave_pairs(const v_int8x16& vec) method v_int8x16 (line 52) | explicit v_int8x16(const vec_char16& v) : val(v) method v_int8x16 (line 54) | v_int8x16() method v_int8x16 (line 56) | v_int8x16(vec_bchar16 v) : val(vec_char16_c(v)) method v_int8x16 (line 58) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method v_int8x16 (line 63) | static inline v_int8x16 zero() { return v_int8x16(vec_char16_z); } method schar (line 65) | schar get0() const function v_uint8x16 (line 1302) | inline v_uint8x16 v_interleave_pairs(const v_uint8x16& vec) function v_int8x16 (line 1305) | inline v_int8x16 v_interleave_quads(const v_int8x16& vec) method v_int8x16 (line 52) | explicit v_int8x16(const vec_char16& v) : val(v) method v_int8x16 (line 54) | v_int8x16() method v_int8x16 (line 56) | v_int8x16(vec_bchar16 v) : val(vec_char16_c(v)) method v_int8x16 (line 58) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method v_int8x16 (line 63) | static inline v_int8x16 zero() { return v_int8x16(vec_char16_z); } method schar (line 65) | schar get0() const function v_uint8x16 (line 1310) | inline v_uint8x16 v_interleave_quads(const v_uint8x16& vec) function v_int16x8 (line 1313) | inline v_int16x8 v_interleave_pairs(const v_int16x8& vec) method v_int16x8 (line 97) | explicit v_int16x8(const vec_short8& v) : val(v) method v_int16x8 (line 99) | v_int16x8() method v_int16x8 (line 101) | v_int16x8(vec_bshort8 v) : val(vec_short8_c(v)) method v_int16x8 (line 103) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method v_int16x8 (line 107) | static inline v_int16x8 zero() { return v_int16x8(vec_short8_z); } method get0 (line 109) | short get0() const function v_uint16x8 (line 1318) | inline v_uint16x8 v_interleave_pairs(const v_uint16x8& vec) method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const function v_int16x8 (line 1321) | inline v_int16x8 v_interleave_quads(const v_int16x8& vec) method v_int16x8 (line 97) | explicit v_int16x8(const vec_short8& v) : val(v) method v_int16x8 (line 99) | v_int16x8() method v_int16x8 (line 101) | v_int16x8(vec_bshort8 v) : val(vec_short8_c(v)) method v_int16x8 (line 103) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method v_int16x8 (line 107) | static inline v_int16x8 zero() { return v_int16x8(vec_short8_z); } method get0 (line 109) | short get0() const function v_uint16x8 (line 1326) | inline v_uint16x8 v_interleave_quads(const v_uint16x8& vec) method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const function v_int32x4 (line 1329) | inline v_int32x4 v_interleave_pairs(const v_int32x4& vec) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_uint32x4 (line 1334) | inline v_uint32x4 v_interleave_pairs(const v_uint32x4& vec) method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_float32x4 (line 1336) | inline v_float32x4 v_interleave_pairs(const v_float32x4& vec) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_int8x16 (line 1339) | inline v_int8x16 v_pack_triplets(const v_int8x16& vec) method v_int8x16 (line 52) | explicit v_int8x16(const vec_char16& v) : val(v) method v_int8x16 (line 54) | v_int8x16() method v_int8x16 (line 56) | v_int8x16(vec_bchar16 v) : val(vec_char16_c(v)) method v_int8x16 (line 58) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method v_int8x16 (line 63) | static inline v_int8x16 zero() { return v_int8x16(vec_char16_z); } method schar (line 65) | schar get0() const function v_uint8x16 (line 1344) | inline v_uint8x16 v_pack_triplets(const v_uint8x16& vec) function v_int16x8 (line 1347) | inline v_int16x8 v_pack_triplets(const v_int16x8& vec) method v_int16x8 (line 97) | explicit v_int16x8(const vec_short8& v) : val(v) method v_int16x8 (line 99) | v_int16x8() method v_int16x8 (line 101) | v_int16x8(vec_bshort8 v) : val(vec_short8_c(v)) method v_int16x8 (line 103) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method v_int16x8 (line 107) | static inline v_int16x8 zero() { return v_int16x8(vec_short8_z); } method get0 (line 109) | short get0() const function v_uint16x8 (line 1352) | inline v_uint16x8 v_pack_triplets(const v_uint16x8& vec) method v_uint16x8 (line 75) | explicit v_uint16x8(const vec_ushort8& v) : val(v) method v_uint16x8 (line 77) | v_uint16x8() method v_uint16x8 (line 79) | v_uint16x8(vec_bshort8 v) : val(vec_ushort8_c(v)) method v_uint16x8 (line 81) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method v_uint16x8 (line 85) | static inline v_uint16x8 zero() { return v_uint16x8(vec_ushort8_z); } method ushort (line 87) | ushort get0() const function v_int32x4 (line 1355) | inline v_int32x4 v_pack_triplets(const v_int32x4& vec) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_uint32x4 (line 1357) | inline v_uint32x4 v_pack_triplets(const v_uint32x4& vec) method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_float32x4 (line 1359) | inline v_float32x4 v_pack_triplets(const v_float32x4& vec) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float32x4 (line 1364) | inline v_float32x4 v_load_expand(const float16_t* ptr) method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_pack_store (line 1391) | inline void v_pack_store(float16_t* ptr, const v_float32x4& v) function v_cleanup (line 1422) | inline void v_cleanup() {} function v_int32x4 (line 1432) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1434) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b, con... method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int64x2 (line 1438) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b) method v_int64x2 (line 203) | explicit v_int64x2(const vec_dword2& v) : val(v) method v_int64x2 (line 205) | v_int64x2() method v_int64x2 (line 207) | v_int64x2(vec_bdword2 v) : val(vec_dword2_c(v)) method v_int64x2 (line 209) | v_int64x2(int64 v0, int64 v1) : val(vec_dword2_set(v0, v1)) method v_int64x2 (line 212) | static inline v_int64x2 zero() { return v_int64x2(vec_dword2_z); } method int64 (line 214) | int64 get0() const function v_int64x2 (line 1444) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b, con... method v_int64x2 (line 203) | explicit v_int64x2(const vec_dword2& v) : val(v) method v_int64x2 (line 205) | v_int64x2() method v_int64x2 (line 207) | v_int64x2(vec_bdword2 v) : val(vec_dword2_c(v)) method v_int64x2 (line 209) | v_int64x2(int64 v0, int64 v1) : val(vec_dword2_set(v0, v1)) method v_int64x2 (line 212) | static inline v_int64x2 zero() { return v_int64x2(vec_dword2_z); } method int64 (line 214) | int64 get0() const function v_uint32x4 (line 1448) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_uint32x4 (line 1450) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_int32x4 (line 1453) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16& b) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1463) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16&... method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_uint64x2 (line 1474) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... method v_uint64x2 (line 182) | explicit v_uint64x2(const vec_udword2& v) : val(v) method v_uint64x2 (line 184) | v_uint64x2() method v_uint64x2 (line 186) | v_uint64x2(vec_bdword2 v) : val(vec_udword2_c(v)) method v_uint64x2 (line 188) | v_uint64x2(uint64 v0, uint64 v1) : val(vec_udword2_set(v0, v1)) method v_uint64x2 (line 191) | static inline v_uint64x2 zero() { return v_uint64x2(vec_udword2_z); } method uint64 (line 193) | uint64 get0() const function v_uint64x2 (line 1487) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... method v_uint64x2 (line 182) | explicit v_uint64x2(const vec_udword2& v) : val(v) method v_uint64x2 (line 184) | v_uint64x2() method v_uint64x2 (line 186) | v_uint64x2(vec_bdword2 v) : val(vec_udword2_c(v)) method v_uint64x2 (line 188) | v_uint64x2(uint64 v0, uint64 v1) : val(vec_udword2_set(v0, v1)) method v_uint64x2 (line 191) | static inline v_uint64x2 zero() { return v_uint64x2(vec_udword2_z); } method uint64 (line 193) | uint64 get0() const function v_int64x2 (line 1490) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8& b) method v_int64x2 (line 203) | explicit v_int64x2(const vec_dword2& v) : val(v) method v_int64x2 (line 205) | v_int64x2() method v_int64x2 (line 207) | v_int64x2(vec_bdword2 v) : val(vec_dword2_c(v)) method v_int64x2 (line 209) | v_int64x2(int64 v0, int64 v1) : val(vec_dword2_set(v0, v1)) method v_int64x2 (line 212) | static inline v_int64x2 zero() { return v_int64x2(vec_dword2_z); } method int64 (line 214) | int64 get0() const function v_int64x2 (line 1497) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8&... method v_int64x2 (line 203) | explicit v_int64x2(const vec_dword2& v) : val(v) method v_int64x2 (line 205) | v_int64x2() method v_int64x2 (line 207) | v_int64x2(vec_bdword2 v) : val(vec_dword2_c(v)) method v_int64x2 (line 209) | v_int64x2(int64 v0, int64 v1) : val(vec_dword2_set(v0, v1)) method v_int64x2 (line 212) | static inline v_int64x2 zero() { return v_int64x2(vec_dword2_z); } method int64 (line 214) | int64 get0() const function v_float64x2 (line 1501) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int32x... method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_float64x2 (line 1503) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int32x... method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_int32x4 (line 1509) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b) method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1511) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b... method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int64x2 (line 1514) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b) method v_int64x2 (line 203) | explicit v_int64x2(const vec_dword2& v) : val(v) method v_int64x2 (line 205) | v_int64x2() method v_int64x2 (line 207) | v_int64x2(vec_bdword2 v) : val(vec_dword2_c(v)) method v_int64x2 (line 209) | v_int64x2(int64 v0, int64 v1) : val(vec_dword2_set(v0, v1)) method v_int64x2 (line 212) | static inline v_int64x2 zero() { return v_int64x2(vec_dword2_z); } method int64 (line 214) | int64 get0() const function v_int64x2 (line 1516) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b... method v_int64x2 (line 203) | explicit v_int64x2(const vec_dword2& v) : val(v) method v_int64x2 (line 205) | v_int64x2() method v_int64x2 (line 207) | v_int64x2(vec_bdword2 v) : val(vec_dword2_c(v)) method v_int64x2 (line 209) | v_int64x2(int64 v0, int64 v1) : val(vec_dword2_set(v0, v1)) method v_int64x2 (line 212) | static inline v_int64x2 zero() { return v_int64x2(vec_dword2_z); } method int64 (line 214) | int64 get0() const function v_uint32x4 (line 1520) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_uint32x4 (line 1522) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... method v_uint32x4 (line 119) | explicit v_uint32x4(const vec_uint4& v) : val(v) method v_uint32x4 (line 121) | v_uint32x4() method v_uint32x4 (line 123) | v_uint32x4(vec_bint4 v) : val(vec_uint4_c(v)) method v_uint32x4 (line 125) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) : val... method v_uint32x4 (line 128) | static inline v_uint32x4 zero() { return v_uint32x4(vec_uint4_z); } method uint (line 130) | uint get0() const function v_int32x4 (line 1525) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_int32x4 (line 1533) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... method v_int32x4 (line 140) | explicit v_int32x4(const vec_int4& v) : val(v) method v_int32x4 (line 142) | v_int32x4() method v_int32x4 (line 144) | v_int32x4(vec_bint4 v) : val(vec_int4_c(v)) method v_int32x4 (line 146) | v_int32x4(int v0, int v1, int v2, int v3) : val(vec_int4_set(v0, v1,... method v_int32x4 (line 149) | static inline v_int32x4 zero() { return v_int32x4(vec_int4_z); } method get0 (line 151) | int get0() const function v_uint64x2 (line 1537) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... method v_uint64x2 (line 182) | explicit v_uint64x2(const vec_udword2& v) : val(v) method v_uint64x2 (line 184) | v_uint64x2() method v_uint64x2 (line 186) | v_uint64x2(vec_bdword2 v) : val(vec_udword2_c(v)) method v_uint64x2 (line 188) | v_uint64x2(uint64 v0, uint64 v1) : val(vec_udword2_set(v0, v1)) method v_uint64x2 (line 191) | static inline v_uint64x2 zero() { return v_uint64x2(vec_udword2_z); } method uint64 (line 193) | uint64 get0() const function v_uint64x2 (line 1539) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... method v_uint64x2 (line 182) | explicit v_uint64x2(const vec_udword2& v) : val(v) method v_uint64x2 (line 184) | v_uint64x2() method v_uint64x2 (line 186) | v_uint64x2(vec_bdword2 v) : val(vec_udword2_c(v)) method v_uint64x2 (line 188) | v_uint64x2(uint64 v0, uint64 v1) : val(vec_udword2_set(v0, v1)) method v_uint64x2 (line 191) | static inline v_uint64x2 zero() { return v_uint64x2(vec_udword2_z); } method uint64 (line 193) | uint64 get0() const function v_int64x2 (line 1542) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... method v_int64x2 (line 203) | explicit v_int64x2(const vec_dword2& v) : val(v) method v_int64x2 (line 205) | v_int64x2() method v_int64x2 (line 207) | v_int64x2(vec_bdword2 v) : val(vec_dword2_c(v)) method v_int64x2 (line 209) | v_int64x2(int64 v0, int64 v1) : val(vec_dword2_set(v0, v1)) method v_int64x2 (line 212) | static inline v_int64x2 zero() { return v_int64x2(vec_dword2_z); } method int64 (line 214) | int64 get0() const function v_int64x2 (line 1549) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... method v_int64x2 (line 203) | explicit v_int64x2(const vec_dword2& v) : val(v) method v_int64x2 (line 205) | v_int64x2() method v_int64x2 (line 207) | v_int64x2(vec_bdword2 v) : val(vec_dword2_c(v)) method v_int64x2 (line 209) | v_int64x2(int64 v0, int64 v1) : val(vec_dword2_set(v0, v1)) method v_int64x2 (line 212) | static inline v_int64x2 zero() { return v_int64x2(vec_dword2_z); } method int64 (line 214) | int64 get0() const function v_float64x2 (line 1553) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_i... method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_float64x2 (line 1555) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_i... method v_float64x2 (line 224) | explicit v_float64x2(const vec_double2& v) : val(v) method v_float64x2 (line 226) | v_float64x2() method v_float64x2 (line 228) | v_float64x2(vec_bdword2 v) : val(vec_double2_c(v)) method v_float64x2 (line 230) | v_float64x2(double v0, double v1) : val(vec_double2_set(v0, v1)) method v_float64x2 (line 233) | static inline v_float64x2 zero() { return v_float64x2(vec_double2_z); } method get0 (line 235) | double get0() const function v_float32x4 (line 1558) | inline v_float32x4 v_matmul(const v_float32x4& v, const v_float32x4& m0, method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function v_float32x4 (line 1569) | inline v_float32x4 v_matmuladd(const v_float32x4& v, const v_float32x4... method v_float32x4 (line 161) | explicit v_float32x4(const vec_float4& v) : val(v) method v_float32x4 (line 163) | v_float32x4() method v_float32x4 (line 165) | v_float32x4(vec_bint4 v) : val(vec_float4_c(v)) method v_float32x4 (line 167) | v_float32x4(float v0, float v1, float v2, float v3) : val(vec_float4... method v_float32x4 (line 170) | static inline v_float32x4 zero() { return v_float32x4(vec_float4_z); } method get0 (line 172) | float get0() const function Tvec (line 1598) | inline Tvec v_broadcast_element(const Tvec& v) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/intrin_wasm.hpp type cv (line 17) | namespace cv type v_uint8x16 (line 38) | struct v_uint8x16 method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const type v_int8x16 (line 61) | struct v_int8x16 method v_int8x16 (line 67) | v_int8x16() {} method v_int8x16 (line 68) | explicit v_int8x16(v128_t v) : val(v) {} method v_int8x16 (line 69) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 76) | schar get0() const type v_uint16x8 (line 84) | struct v_uint16x8 method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const type v_int16x8 (line 106) | struct v_int16x8 method v_int16x8 (line 112) | v_int16x8() {} method v_int16x8 (line 113) | explicit v_int16x8(v128_t v) : val(v) {} method v_int16x8 (line 114) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 120) | short get0() const type v_uint32x4 (line 128) | struct v_uint32x4 method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const type v_int32x4 (line 150) | struct v_int32x4 method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const type v_float32x4 (line 172) | struct v_float32x4 method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const type v_uint64x2 (line 194) | struct v_uint64x2 method v_uint64x2 (line 200) | v_uint64x2() {} method v_uint64x2 (line 201) | explicit v_uint64x2(v128_t v) : val(v) {} method v_uint64x2 (line 202) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 208) | uint64 get0() const type v_int64x2 (line 216) | struct v_int64x2 method v_int64x2 (line 222) | v_int64x2() {} method v_int64x2 (line 223) | explicit v_int64x2(v128_t v) : val(v) {} method v_int64x2 (line 224) | v_int64x2(int64 v0, int64 v1) method int64 (line 230) | int64 get0() const type v_float64x2 (line 238) | struct v_float64x2 method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v128_t (line 296) | static v128_t wasm_unpacklo_i8x16(v128_t a, v128_t b) { function v128_t (line 300) | static v128_t wasm_unpacklo_i16x8(v128_t a, v128_t b) { function v128_t (line 304) | static v128_t wasm_unpacklo_i32x4(v128_t a, v128_t b) { function v128_t (line 308) | static v128_t wasm_unpacklo_i64x2(v128_t a, v128_t b) { function v128_t (line 312) | static v128_t wasm_unpackhi_i8x16(v128_t a, v128_t b) { function v128_t (line 316) | static v128_t wasm_unpackhi_i16x8(v128_t a, v128_t b) { function v128_t (line 320) | static v128_t wasm_unpackhi_i32x4(v128_t a, v128_t b) { function v128_t (line 324) | static v128_t wasm_unpackhi_i64x2(v128_t a, v128_t b) { function v128_t (line 330) | inline v128_t v128_cvtu8x16_i16x8(const v128_t& a) function v128_t (line 335) | inline v128_t v128_cvti8x16_i16x8(const v128_t& a) function v128_t (line 338) | inline v128_t v128_cvtu8x16_i32x4(const v128_t& a) function v128_t (line 343) | inline v128_t v128_cvti8x16_i32x4(const v128_t& a) function v128_t (line 350) | inline v128_t v128_cvtu16x8_i32x4(const v128_t& a) function v128_t (line 355) | inline v128_t v128_cvti16x8_i32x4(const v128_t& a) function v128_t (line 358) | inline v128_t v128_cvtu32x4_i64x2(const v128_t& a) function v128_t (line 363) | inline v128_t v128_cvti32x4_i64x2(const v128_t& a) function v128_t (line 367) | inline v128_t v128_cvtu8x16_i16x8_high(const v128_t& a) function v128_t (line 372) | inline v128_t v128_cvti8x16_i16x8_high(const v128_t& a) function v128_t (line 375) | inline v128_t v128_cvtu16x8_i32x4_high(const v128_t& a) function v128_t (line 380) | inline v128_t v128_cvti16x8_i32x4_high(const v128_t& a) function v128_t (line 383) | inline v128_t v128_cvtu32x4_i64x2_high(const v128_t& a) function v128_t (line 388) | inline v128_t v128_cvti32x4_i64x2_high(const v128_t& a) function v_uint8x16 (line 409) | inline v_uint8x16 v_pack(const v_uint16x8& a, const v_uint16x8& b) method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_int8x16 (line 416) | inline v_int8x16 v_pack(const v_int16x8& a, const v_int16x8& b) method v_int8x16 (line 67) | v_int8x16() {} method v_int8x16 (line 68) | explicit v_int8x16(v128_t v) : val(v) {} method v_int8x16 (line 69) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 76) | schar get0() const function v_uint16x8 (line 426) | inline v_uint16x8 v_pack(const v_uint32x4& a, const v_uint32x4& b) method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_int16x8 (line 433) | inline v_int16x8 v_pack(const v_int32x4& a, const v_int32x4& b) method v_int16x8 (line 112) | v_int16x8() {} method v_int16x8 (line 113) | explicit v_int16x8(v128_t v) : val(v) {} method v_int16x8 (line 114) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 120) | short get0() const function v_uint32x4 (line 443) | inline v_uint32x4 v_pack(const v_uint64x2& a, const v_uint64x2& b) method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_int32x4 (line 447) | inline v_int32x4 v_pack(const v_int64x2& a, const v_int64x2& b) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_uint8x16 (line 451) | inline v_uint8x16 v_pack_u(const v_int16x8& a, const v_int16x8& b) method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_uint16x8 (line 461) | inline v_uint16x8 v_pack_u(const v_int32x4& a, const v_int32x4& b) method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_uint8x16 (line 473) | inline v_uint8x16 v_rshr_pack(const v_uint16x8& a, const v_uint16x8& b) method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_int8x16 (line 484) | inline v_int8x16 v_rshr_pack(const v_int16x8& a, const v_int16x8& b) method v_int8x16 (line 67) | v_int8x16() {} method v_int8x16 (line 68) | explicit v_int8x16(v128_t v) : val(v) {} method v_int8x16 (line 69) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 76) | schar get0() const function v_uint16x8 (line 498) | inline v_uint16x8 v_rshr_pack(const v_uint32x4& a, const v_uint32x4& b) method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_int16x8 (line 509) | inline v_int16x8 v_rshr_pack(const v_int32x4& a, const v_int32x4& b) method v_int16x8 (line 112) | v_int16x8() {} method v_int16x8 (line 113) | explicit v_int16x8(v128_t v) : val(v) {} method v_int16x8 (line 114) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 120) | short get0() const function v_uint32x4 (line 523) | inline v_uint32x4 v_rshr_pack(const v_uint64x2& a, const v_uint64x2& b) method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_int32x4 (line 531) | inline v_int32x4 v_rshr_pack(const v_int64x2& a, const v_int64x2& b) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_uint8x16 (line 539) | inline v_uint8x16 v_rshr_pack_u(const v_int16x8& a, const v_int16x8& b) method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_uint16x8 (line 553) | inline v_uint16x8 v_rshr_pack_u(const v_int32x4& a, const v_int32x4& b) method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_pack_store (line 567) | inline void v_pack_store(uchar* ptr, const v_uint16x8& a) function v_pack_store (line 578) | inline void v_pack_store(schar* ptr, const v_int16x8& a) function v_pack_store (line 591) | inline void v_pack_store(ushort* ptr, const v_uint32x4& a) function v_pack_store (line 602) | inline void v_pack_store(short* ptr, const v_int32x4& a) function v_pack_store (line 615) | inline void v_pack_store(unsigned* ptr, const v_uint64x2& a) function v_pack_store (line 624) | inline void v_pack_store(int* ptr, const v_int64x2& a) function v_pack_u_store (line 633) | inline void v_pack_u_store(uchar* ptr, const v_int16x8& a) function v_pack_u_store (line 646) | inline void v_pack_u_store(ushort* ptr, const v_int32x4& a) function v_rshr_pack_store (line 661) | inline void v_rshr_pack_store(uchar* ptr, const v_uint16x8& a) function v_rshr_pack_store (line 675) | inline void v_rshr_pack_store(schar* ptr, const v_int16x8& a) function v_rshr_pack_store (line 691) | inline void v_rshr_pack_store(ushort* ptr, const v_uint32x4& a) function v_rshr_pack_store (line 705) | inline void v_rshr_pack_store(short* ptr, const v_int32x4& a) function v_rshr_pack_store (line 721) | inline void v_rshr_pack_store(unsigned* ptr, const v_uint64x2& a) function v_rshr_pack_store (line 733) | inline void v_rshr_pack_store(int* ptr, const v_int64x2& a) function v_rshr_pack_u_store (line 745) | inline void v_rshr_pack_u_store(uchar* ptr, const v_int16x8& a) function v_rshr_pack_u_store (line 761) | inline void v_rshr_pack_u_store(ushort* ptr, const v_int32x4& a) function v_uint8x16 (line 777) | inline v_uint8x16 v_pack_b(const v_uint16x8& a, const v_uint16x8& b) method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_uint8x16 (line 785) | inline v_uint8x16 v_pack_b(const v_uint32x4& a, const v_uint32x4& b, method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_uint8x16 (line 798) | inline v_uint8x16 v_pack_b(const v_uint64x2& a, const v_uint64x2& b, c... method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_float32x4 (line 820) | inline v_float32x4 v_matmul(const v_float32x4& v, const v_float32x4& m0, method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float32x4 (line 836) | inline v_float32x4 v_matmuladd(const v_float32x4& v, const v_float32x4... method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_mul_expand (line 905) | inline void v_mul_expand(const v_uint8x16& a, const v_uint8x16& b, function v_mul_expand (line 915) | inline void v_mul_expand(const v_int8x16& a, const v_int8x16& b, function v_mul_expand (line 925) | inline void v_mul_expand(const v_int16x8& a, const v_int16x8& b, function v_mul_expand (line 935) | inline void v_mul_expand(const v_uint16x8& a, const v_uint16x8& b, function v_mul_expand (line 945) | inline void v_mul_expand(const v_uint32x4& a, const v_uint32x4& b, function v_int16x8 (line 955) | inline v_int16x8 v_mul_hi(const v_int16x8& a, const v_int16x8& b) method v_int16x8 (line 112) | v_int16x8() {} method v_int16x8 (line 113) | explicit v_int16x8(v128_t v) : val(v) {} method v_int16x8 (line 114) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 120) | short get0() const function v_uint16x8 (line 964) | inline v_uint16x8 v_mul_hi(const v_uint16x8& a, const v_uint16x8& b) method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_int32x4 (line 976) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int32x4 (line 987) | inline v_int32x4 v_dotprod(const v_int16x8& a, const v_int16x8& b, con... method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int64x2 (line 990) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b) method v_int64x2 (line 222) | v_int64x2() {} method v_int64x2 (line 223) | explicit v_int64x2(v128_t v) : val(v) {} method v_int64x2 (line 224) | v_int64x2(int64 v0, int64 v1) method int64 (line 230) | int64 get0() const function v_int64x2 (line 1000) | inline v_int64x2 v_dotprod(const v_int32x4& a, const v_int32x4& b, con... method v_int64x2 (line 222) | v_int64x2() {} method v_int64x2 (line 223) | explicit v_int64x2(v128_t v) : val(v) {} method v_int64x2 (line 224) | v_int64x2(int64 v0, int64 v1) method int64 (line 230) | int64 get0() const function v_uint32x4 (line 1006) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_uint32x4 (line 1017) | inline v_uint32x4 v_dotprod_expand(const v_uint8x16& a, const v_uint8x... method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_int32x4 (line 1020) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16& b) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int32x4 (line 1031) | inline v_int32x4 v_dotprod_expand(const v_int8x16& a, const v_int8x16&... method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_uint64x2 (line 1035) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... method v_uint64x2 (line 200) | v_uint64x2() {} method v_uint64x2 (line 201) | explicit v_uint64x2(v128_t v) : val(v) {} method v_uint64x2 (line 202) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 208) | uint64 get0() const function v_uint64x2 (line 1046) | inline v_uint64x2 v_dotprod_expand(const v_uint16x8& a, const v_uint16... method v_uint64x2 (line 200) | v_uint64x2() {} method v_uint64x2 (line 201) | explicit v_uint64x2(v128_t v) : val(v) {} method v_uint64x2 (line 202) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 208) | uint64 get0() const function v_int64x2 (line 1049) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8& b) method v_int64x2 (line 222) | v_int64x2() {} method v_int64x2 (line 223) | explicit v_int64x2(v128_t v) : val(v) {} method v_int64x2 (line 224) | v_int64x2(int64 v0, int64 v1) method int64 (line 230) | int64 get0() const function v_int64x2 (line 1061) | inline v_int64x2 v_dotprod_expand(const v_int16x8& a, const v_int16x8&... method v_int64x2 (line 222) | v_int64x2() {} method v_int64x2 (line 223) | explicit v_int64x2(v128_t v) : val(v) {} method v_int64x2 (line 224) | v_int64x2(int64 v0, int64 v1) method int64 (line 230) | int64 get0() const function v_float64x2 (line 1065) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int32x... method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float64x2 (line 1067) | inline v_float64x2 v_dotprod_expand(const v_int32x4& a, const v_int32x... method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_int32x4 (line 1073) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int32x4 (line 1075) | inline v_int32x4 v_dotprod_fast(const v_int16x8& a, const v_int16x8& b... method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int64x2 (line 1079) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b) method v_int64x2 (line 222) | v_int64x2() {} method v_int64x2 (line 223) | explicit v_int64x2(v128_t v) : val(v) {} method v_int64x2 (line 224) | v_int64x2(int64 v0, int64 v1) method int64 (line 230) | int64 get0() const function v_int64x2 (line 1081) | inline v_int64x2 v_dotprod_fast(const v_int32x4& a, const v_int32x4& b... method v_int64x2 (line 222) | v_int64x2() {} method v_int64x2 (line 223) | explicit v_int64x2(v128_t v) : val(v) {} method v_int64x2 (line 224) | v_int64x2(int64 v0, int64 v1) method int64 (line 230) | int64 get0() const function v_uint32x4 (line 1085) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_uint32x4 (line 1087) | inline v_uint32x4 v_dotprod_expand_fast(const v_uint8x16& a, const v_u... method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_int32x4 (line 1089) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int32x4 (line 1091) | inline v_int32x4 v_dotprod_expand_fast(const v_int8x16& a, const v_int... method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_uint64x2 (line 1095) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... method v_uint64x2 (line 200) | v_uint64x2() {} method v_uint64x2 (line 201) | explicit v_uint64x2(v128_t v) : val(v) {} method v_uint64x2 (line 202) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 208) | uint64 get0() const function v_uint64x2 (line 1097) | inline v_uint64x2 v_dotprod_expand_fast(const v_uint16x8& a, const v_u... method v_uint64x2 (line 200) | v_uint64x2() {} method v_uint64x2 (line 201) | explicit v_uint64x2(v128_t v) : val(v) {} method v_uint64x2 (line 202) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 208) | uint64 get0() const function v_int64x2 (line 1099) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... method v_int64x2 (line 222) | v_int64x2() {} method v_int64x2 (line 223) | explicit v_int64x2(v128_t v) : val(v) {} method v_int64x2 (line 224) | v_int64x2(int64 v0, int64 v1) method int64 (line 230) | int64 get0() const function v_int64x2 (line 1101) | inline v_int64x2 v_dotprod_expand_fast(const v_int16x8& a, const v_int... method v_int64x2 (line 222) | v_int64x2() {} method v_int64x2 (line 223) | explicit v_int64x2(v128_t v) : val(v) {} method v_int64x2 (line 224) | v_int64x2(int64 v0, int64 v1) method int64 (line 230) | int64 get0() const function v_float64x2 (line 1105) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_i... method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float64x2 (line 1107) | inline v_float64x2 v_dotprod_expand_fast(const v_int32x4& a, const v_i... method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float32x4 (line 1130) | inline v_float32x4 v_sqrt(const v_float32x4& x) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float32x4 (line 1135) | inline v_float32x4 v_invsqrt(const v_float32x4& x) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float64x2 (line 1141) | inline v_float64x2 v_sqrt(const v_float64x2& x) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float64x2 (line 1146) | inline v_float64x2 v_invsqrt(const v_float64x2& x) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float32x4 (line 1164) | inline v_float32x4 v_abs(const v_float32x4& x) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float64x2 (line 1166) | inline v_float64x2 v_abs(const v_float64x2& x) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float32x4 (line 1248) | inline v_float32x4 v_not_nan(const v_float32x4& a) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float64x2 (line 1254) | inline v_float64x2 v_not_nan(const v_float64x2& a) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_uint8x16 (line 1272) | inline v_uint8x16 v_mul_wrap(const v_uint8x16& a, const v_uint8x16& b) method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_int8x16 (line 1281) | inline v_int8x16 v_mul_wrap(const v_int8x16& a, const v_int8x16& b) method v_int8x16 (line 67) | v_int8x16() {} method v_int8x16 (line 68) | explicit v_int8x16(v128_t v) : val(v) {} method v_int8x16 (line 69) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 76) | schar get0() const function v_uint8x16 (line 1300) | inline v_uint8x16 v_absdiff(const v_uint8x16& a, const v_uint8x16& b) method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_uint16x8 (line 1302) | inline v_uint16x8 v_absdiff(const v_uint16x8& a, const v_uint16x8& b) method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_uint32x4 (line 1304) | inline v_uint32x4 v_absdiff(const v_uint32x4& a, const v_uint32x4& b) method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_uint8x16 (line 1307) | inline v_uint8x16 v_absdiff(const v_int8x16& a, const v_int8x16& b) method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_uint16x8 (line 1313) | inline v_uint16x8 v_absdiff(const v_int16x8& a, const v_int16x8& b) method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_uint32x4 (line 1317) | inline v_uint32x4 v_absdiff(const v_int32x4& a, const v_int32x4& b) method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_int8x16 (line 1325) | inline v_int8x16 v_absdiffs(const v_int8x16& a, const v_int8x16& b) method v_int8x16 (line 67) | v_int8x16() {} method v_int8x16 (line 68) | explicit v_int8x16(v128_t v) : val(v) {} method v_int8x16 (line 69) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 76) | schar get0() const function v_int16x8 (line 1331) | inline v_int16x8 v_absdiffs(const v_int16x8& a, const v_int16x8& b) method v_int16x8 (line 112) | v_int16x8() {} method v_int16x8 (line 113) | explicit v_int16x8(v128_t v) : val(v) {} method v_int16x8 (line 114) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 120) | short get0() const function v_int32x4 (line 1335) | inline v_int32x4 v_fma(const v_int32x4& a, const v_int32x4& b, const v... method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int32x4 (line 1340) | inline v_int32x4 v_muladd(const v_int32x4& a, const v_int32x4& b, cons... method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_float32x4 (line 1345) | inline v_float32x4 v_fma(const v_float32x4& a, const v_float32x4& b, c... method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float64x2 (line 1350) | inline v_float64x2 v_fma(const v_float64x2& a, const v_float64x2& b, c... method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float32x4 (line 1355) | inline v_float32x4 v_absdiff(const v_float32x4& a, const v_float32x4& b) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float64x2 (line 1360) | inline v_float64x2 v_absdiff(const v_float64x2& a, const v_float64x2& b) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const type hal_wasm_internal (line 1430) | namespace hal_wasm_internal class v_wasm_palignr_u8_class (line 1437) | class v_wasm_palignr_u8_class class v_wasm_palignr_u8_class (line 1440) | class v_wasm_palignr_u8_class class v_wasm_palignr_u8_class (line 1443) | class v_wasm_palignr_u8_class method v128_t (line 1446) | inline v128_t operator()(const v128_t& a, const v128_t&) const class v_wasm_palignr_u8_class (line 1453) | class v_wasm_palignr_u8_class method v128_t (line 1456) | inline v128_t operator()(const v128_t&, const v128_t& b) const class v_wasm_palignr_u8_class (line 1463) | class v_wasm_palignr_u8_class method v128_t (line 1466) | inline v128_t operator()(const v128_t& a, const v128_t& b) const function v128_t (line 1478) | inline v128_t v_wasm_palignr_u8(const v128_t& a, const v128_t& b) function _Tpvec (line 1486) | inline _Tpvec v_rotate_right(const _Tpvec &a) function _Tpvec (line 1495) | inline _Tpvec v_rotate_left(const _Tpvec &a) function _Tpvec (line 1504) | inline _Tpvec v_rotate_right(const _Tpvec &a, const _Tpvec &b) function _Tpvec (line 1512) | inline _Tpvec v_rotate_left(const _Tpvec &a, const _Tpvec &b) function v_store_low (line 1551) | inline void v_store_low(_Tp* ptr, const _Tpvec& a) \ function v_store_high (line 1558) | inline void v_store_high(_Tp* ptr, const _Tpvec& a) \ function v_uint8x16 (line 1579) | inline v_uint8x16 v_reverse(const v_uint8x16 &a) method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_int8x16 (line 1582) | inline v_int8x16 v_reverse(const v_int8x16 &a) method v_int8x16 (line 67) | v_int8x16() {} method v_int8x16 (line 68) | explicit v_int8x16(v128_t v) : val(v) {} method v_int8x16 (line 69) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 76) | schar get0() const function v_uint16x8 (line 1585) | inline v_uint16x8 v_reverse(const v_uint16x8 &a) method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_int16x8 (line 1588) | inline v_int16x8 v_reverse(const v_int16x8 &a) method v_int16x8 (line 112) | v_int16x8() {} method v_int16x8 (line 113) | explicit v_int16x8(v128_t v) : val(v) {} method v_int16x8 (line 114) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 120) | short get0() const function v_uint32x4 (line 1591) | inline v_uint32x4 v_reverse(const v_uint32x4 &a) method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_int32x4 (line 1594) | inline v_int32x4 v_reverse(const v_int32x4 &a) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_float32x4 (line 1597) | inline v_float32x4 v_reverse(const v_float32x4 &a) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_uint64x2 (line 1600) | inline v_uint64x2 v_reverse(const v_uint64x2 &a) method v_uint64x2 (line 200) | v_uint64x2() {} method v_uint64x2 (line 201) | explicit v_uint64x2(v128_t v) : val(v) {} method v_uint64x2 (line 202) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 208) | uint64 get0() const function v_int64x2 (line 1603) | inline v_int64x2 v_reverse(const v_int64x2 &a) method v_int64x2 (line 222) | v_int64x2() {} method v_int64x2 (line 223) | explicit v_int64x2(v128_t v) : val(v) {} method v_int64x2 (line 224) | v_int64x2(int64 v0, int64 v1) method int64 (line 230) | int64 get0() const function v_float64x2 (line 1606) | inline v_float64x2 v_reverse(const v_float64x2 &a) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float32x4 (line 1654) | inline v_float32x4 v_reduce_sum4(const v_float32x4& a, const v_float32... method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_reduce_sad (line 1689) | inline unsigned v_reduce_sad(const v_uint8x16& a, const v_uint8x16& b) function v_reduce_sad (line 1698) | inline unsigned v_reduce_sad(const v_int8x16& a, const v_int8x16& b) function v_reduce_sad (line 1707) | inline unsigned v_reduce_sad(const v_uint16x8& a, const v_uint16x8& b) function v_reduce_sad (line 1713) | inline unsigned v_reduce_sad(const v_int16x8& a, const v_int16x8& b) function v_reduce_sad (line 1719) | inline unsigned v_reduce_sad(const v_uint32x4& a, const v_uint32x4& b) function v_reduce_sad (line 1723) | inline unsigned v_reduce_sad(const v_int32x4& a, const v_int32x4& b) function v_reduce_sad (line 1727) | inline float v_reduce_sad(const v_float32x4& a, const v_float32x4& b) function v_uint8x16 (line 1732) | inline v_uint8x16 v_popcount(const v_uint8x16& a) method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_uint16x8 (line 1743) | inline v_uint16x8 v_popcount(const v_uint16x8& a) method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_uint32x4 (line 1749) | inline v_uint32x4 v_popcount(const v_uint32x4& a) method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_uint64x2 (line 1756) | inline v_uint64x2 v_popcount(const v_uint64x2& a) method v_uint64x2 (line 200) | v_uint64x2() {} method v_uint64x2 (line 201) | explicit v_uint64x2(v128_t v) : val(v) {} method v_uint64x2 (line 202) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 208) | uint64 get0() const function v_uint8x16 (line 1764) | inline v_uint8x16 v_popcount(const v_int8x16& a) method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_uint16x8 (line 1766) | inline v_uint16x8 v_popcount(const v_int16x8& a) method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_uint32x4 (line 1768) | inline v_uint32x4 v_popcount(const v_int32x4& a) method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_uint64x2 (line 1770) | inline v_uint64x2 v_popcount(const v_int64x2& a) method v_uint64x2 (line 200) | v_uint64x2() {} method v_uint64x2 (line 201) | explicit v_uint64x2(v128_t v) : val(v) {} method v_uint64x2 (line 202) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 208) | uint64 get0() const function v_scan_forward (line 1817) | inline int v_scan_forward(const v_int8x16& a) { return trailingZeros32... function v_scan_forward (line 1818) | inline int v_scan_forward(const v_uint8x16& a) { return trailingZeros3... function v_scan_forward (line 1819) | inline int v_scan_forward(const v_int16x8& a) { return trailingZeros32... function v_scan_forward (line 1820) | inline int v_scan_forward(const v_uint16x8& a) { return trailingZeros3... function v_scan_forward (line 1821) | inline int v_scan_forward(const v_int32x4& a) { return trailingZeros32... function v_scan_forward (line 1822) | inline int v_scan_forward(const v_uint32x4& a) { return trailingZeros3... function v_scan_forward (line 1823) | inline int v_scan_forward(const v_float32x4& a) { return trailingZeros... function v_scan_forward (line 1824) | inline int v_scan_forward(const v_int64x2& a) { return trailingZeros32... function v_scan_forward (line 1825) | inline int v_scan_forward(const v_uint64x2& a) { return trailingZeros3... function v_scan_forward (line 1826) | inline int v_scan_forward(const v_float64x2& a) { return trailingZeros... function _Tpvec (line 1908) | inline _Tpvec v_extract(const _Tpvec& a, const _Tpvec& b) function v_int32x4 (line 1913) | inline v_int32x4 v_round(const v_float32x4& a) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int32x4 (line 1919) | inline v_int32x4 v_floor(const v_float32x4& a) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int32x4 (line 1926) | inline v_int32x4 v_ceil(const v_float32x4& a) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int32x4 (line 1933) | inline v_int32x4 v_trunc(const v_float32x4& a) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int32x4 (line 1954) | inline v_int32x4 v_round(const v_float64x2& a, const v_float64x2& b) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_load_deinterleave (line 1989) | inline void v_load_deinterleave(const uchar* ptr, v_uint8x16& a, v_uin... function v_load_deinterleave (line 1998) | inline void v_load_deinterleave(const uchar* ptr, v_uint8x16& a, v_uin... function v_load_deinterleave (line 2013) | inline void v_load_deinterleave(const uchar* ptr, v_uint8x16& a, v_uin... function v_load_deinterleave (line 2031) | inline void v_load_deinterleave(const ushort* ptr, v_uint16x8& a, v_ui... function v_load_deinterleave (line 2040) | inline void v_load_deinterleave(const ushort* ptr, v_uint16x8& a, v_ui... function v_load_deinterleave (line 2055) | inline void v_load_deinterleave(const ushort* ptr, v_uint16x8& a, v_ui... function v_load_deinterleave (line 2073) | inline void v_load_deinterleave(const unsigned* ptr, v_uint32x4& a, v_... function v_load_deinterleave (line 2082) | inline void v_load_deinterleave(const unsigned* ptr, v_uint32x4& a, v_... function v_load_deinterleave (line 2097) | inline void v_load_deinterleave(const unsigned* ptr, v_uint32x4& a, v_... function v_load_deinterleave (line 2107) | inline void v_load_deinterleave(const float* ptr, v_float32x4& a, v_fl... function v_load_deinterleave (line 2116) | inline void v_load_deinterleave(const float* ptr, v_float32x4& a, v_fl... function v_load_deinterleave (line 2131) | inline void v_load_deinterleave(const float* ptr, v_float32x4& a, v_fl... function v_load_deinterleave (line 2141) | inline void v_load_deinterleave(const uint64 *ptr, v_uint64x2& a, v_ui... function v_load_deinterleave (line 2150) | inline void v_load_deinterleave(const uint64 *ptr, v_uint64x2& a, v_ui... function v_load_deinterleave (line 2161) | inline void v_load_deinterleave(const uint64 *ptr, v_uint64x2& a, function v_store_interleave (line 2177) | inline void v_store_interleave( uchar* ptr, const v_uint8x16& a, const... function v_store_interleave (line 2187) | inline void v_store_interleave( uchar* ptr, const v_uint8x16& a, const... function v_store_interleave (line 2203) | inline void v_store_interleave( uchar* ptr, const v_uint8x16& a, const... function v_store_interleave (line 2227) | inline void v_store_interleave( ushort* ptr, const v_uint16x8& a, cons... function v_store_interleave (line 2237) | inline void v_store_interleave( ushort* ptr, const v_uint16x8& a, function v_store_interleave (line 2254) | inline void v_store_interleave( ushort* ptr, const v_uint16x8& a, cons... function v_store_interleave (line 2278) | inline void v_store_interleave( unsigned* ptr, const v_uint32x4& a, co... function v_store_interleave (line 2288) | inline void v_store_interleave( unsigned* ptr, const v_uint32x4& a, co... function v_store_interleave (line 2304) | inline void v_store_interleave(unsigned* ptr, const v_uint32x4& a, con... function v_store_interleave (line 2318) | inline void v_store_interleave(float* ptr, const v_float32x4& a, const... function v_store_interleave (line 2328) | inline void v_store_interleave(float* ptr, const v_float32x4& a, const... function v_store_interleave (line 2344) | inline void v_store_interleave(float* ptr, const v_float32x4& a, const... function v_store_interleave (line 2357) | inline void v_store_interleave(uint64 *ptr, const v_uint64x2& a, const... function v_store_interleave (line 2367) | inline void v_store_interleave(uint64 *ptr, const v_uint64x2& a, const... function v_store_interleave (line 2379) | inline void v_store_interleave(uint64 *ptr, const v_uint64x2& a, const... function v_float32x4 (line 2451) | inline v_float32x4 v_cvt_f32(const v_int32x4& a) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float32x4 (line 2456) | inline v_float32x4 v_cvt_f32(const v_float64x2& a) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float32x4 (line 2468) | inline v_float32x4 v_cvt_f32(const v_float64x2& a, const v_float64x2& b) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float64x2 (line 2481) | inline v_float64x2 v_cvt_f64(const v_int32x4& a) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float64x2 (line 2496) | inline v_float64x2 v_cvt_f64_high(const v_int32x4& a) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float64x2 (line 2511) | inline v_float64x2 v_cvt_f64(const v_float32x4& a) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float64x2 (line 2521) | inline v_float64x2 v_cvt_f64_high(const v_float32x4& a) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float64x2 (line 2531) | inline v_float64x2 v_cvt_f64(const v_int64x2& a) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_int8x16 (line 2547) | inline v_int8x16 v_lut(const schar* tab, const int* idx) method v_int8x16 (line 67) | v_int8x16() {} method v_int8x16 (line 68) | explicit v_int8x16(v128_t v) : val(v) {} method v_int8x16 (line 69) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 76) | schar get0() const function v_int8x16 (line 2552) | inline v_int8x16 v_lut_pairs(const schar* tab, const int* idx) method v_int8x16 (line 67) | v_int8x16() {} method v_int8x16 (line 68) | explicit v_int8x16(v128_t v) : val(v) {} method v_int8x16 (line 69) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 76) | schar get0() const function v_int8x16 (line 2557) | inline v_int8x16 v_lut_quads(const schar* tab, const int* idx) method v_int8x16 (line 67) | v_int8x16() {} method v_int8x16 (line 68) | explicit v_int8x16(v128_t v) : val(v) {} method v_int8x16 (line 69) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 76) | schar get0() const function v_uint8x16 (line 2562) | inline v_uint8x16 v_lut(const uchar* tab, const int* idx) { return v_r... method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_uint8x16 (line 2563) | inline v_uint8x16 v_lut_pairs(const uchar* tab, const int* idx) { retu... method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_uint8x16 (line 2564) | inline v_uint8x16 v_lut_quads(const uchar* tab, const int* idx) { retu... method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_int16x8 (line 2566) | inline v_int16x8 v_lut(const short* tab, const int* idx) method v_int16x8 (line 112) | v_int16x8() {} method v_int16x8 (line 113) | explicit v_int16x8(v128_t v) : val(v) {} method v_int16x8 (line 114) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 120) | short get0() const function v_int16x8 (line 2571) | inline v_int16x8 v_lut_pairs(const short* tab, const int* idx) method v_int16x8 (line 112) | v_int16x8() {} method v_int16x8 (line 113) | explicit v_int16x8(v128_t v) : val(v) {} method v_int16x8 (line 114) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 120) | short get0() const function v_int16x8 (line 2576) | inline v_int16x8 v_lut_quads(const short* tab, const int* idx) method v_int16x8 (line 112) | v_int16x8() {} method v_int16x8 (line 113) | explicit v_int16x8(v128_t v) : val(v) {} method v_int16x8 (line 114) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 120) | short get0() const function v_uint16x8 (line 2581) | inline v_uint16x8 v_lut(const ushort* tab, const int* idx) { return v_... method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_uint16x8 (line 2582) | inline v_uint16x8 v_lut_pairs(const ushort* tab, const int* idx) { ret... method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_uint16x8 (line 2583) | inline v_uint16x8 v_lut_quads(const ushort* tab, const int* idx) { ret... method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_int32x4 (line 2585) | inline v_int32x4 v_lut(const int* tab, const int* idx) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int32x4 (line 2590) | inline v_int32x4 v_lut_pairs(const int* tab, const int* idx) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_int32x4 (line 2595) | inline v_int32x4 v_lut_quads(const int* tab, const int* idx) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_uint32x4 (line 2599) | inline v_uint32x4 v_lut(const unsigned* tab, const int* idx) { return ... method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_uint32x4 (line 2600) | inline v_uint32x4 v_lut_pairs(const unsigned* tab, const int* idx) { r... method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_uint32x4 (line 2601) | inline v_uint32x4 v_lut_quads(const unsigned* tab, const int* idx) { r... method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_int64x2 (line 2603) | inline v_int64x2 v_lut(const int64_t* tab, const int* idx) method v_int64x2 (line 222) | v_int64x2() {} method v_int64x2 (line 223) | explicit v_int64x2(v128_t v) : val(v) {} method v_int64x2 (line 224) | v_int64x2(int64 v0, int64 v1) method int64 (line 230) | int64 get0() const function v_int64x2 (line 2607) | inline v_int64x2 v_lut_pairs(const int64_t* tab, const int* idx) method v_int64x2 (line 222) | v_int64x2() {} method v_int64x2 (line 223) | explicit v_int64x2(v128_t v) : val(v) {} method v_int64x2 (line 224) | v_int64x2(int64 v0, int64 v1) method int64 (line 230) | int64 get0() const function v_uint64x2 (line 2611) | inline v_uint64x2 v_lut(const uint64_t* tab, const int* idx) { return ... method v_uint64x2 (line 200) | v_uint64x2() {} method v_uint64x2 (line 201) | explicit v_uint64x2(v128_t v) : val(v) {} method v_uint64x2 (line 202) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 208) | uint64 get0() const function v_uint64x2 (line 2612) | inline v_uint64x2 v_lut_pairs(const uint64_t* tab, const int* idx) { r... method v_uint64x2 (line 200) | v_uint64x2() {} method v_uint64x2 (line 201) | explicit v_uint64x2(v128_t v) : val(v) {} method v_uint64x2 (line 202) | v_uint64x2(uint64 v0, uint64 v1) method uint64 (line 208) | uint64 get0() const function v_float32x4 (line 2614) | inline v_float32x4 v_lut(const float* tab, const int* idx) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float32x4 (line 2618) | inline v_float32x4 v_lut_pairs(const float* tab, const int* idx) { ret... method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float32x4 (line 2619) | inline v_float32x4 v_lut_quads(const float* tab, const int* idx) { ret... method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float64x2 (line 2621) | inline v_float64x2 v_lut(const double* tab, const int* idx) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_float64x2 (line 2625) | inline v_float64x2 v_lut_pairs(const double* tab, const int* idx) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_int32x4 (line 2630) | inline v_int32x4 v_lut(const int* tab, const v_int32x4& idxvec) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_uint32x4 (line 2638) | inline v_uint32x4 v_lut(const unsigned* tab, const v_int32x4& idxvec) method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_float32x4 (line 2643) | inline v_float32x4 v_lut(const float* tab, const v_int32x4& idxvec) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float64x2 (line 2651) | inline v_float64x2 v_lut(const double* tab, const v_int32x4& idxvec) method v_float64x2 (line 244) | v_float64x2() {} method v_float64x2 (line 245) | explicit v_float64x2(v128_t v) : val(v) {} method v_float64x2 (line 246) | v_float64x2(double v0, double v1) method get0 (line 252) | double get0() const function v_lut_deinterleave (line 2663) | inline void v_lut_deinterleave(const float* tab, const v_int32x4& idxv... function v_lut_deinterleave (line 2675) | inline void v_lut_deinterleave(const double* tab, const v_int32x4& idx... function v_int8x16 (line 2683) | inline v_int8x16 v_interleave_pairs(const v_int8x16& vec) method v_int8x16 (line 67) | v_int8x16() {} method v_int8x16 (line 68) | explicit v_int8x16(v128_t v) : val(v) {} method v_int8x16 (line 69) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 76) | schar get0() const function v_uint8x16 (line 2687) | inline v_uint8x16 v_interleave_pairs(const v_uint8x16& vec) { return v... method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_int8x16 (line 2688) | inline v_int8x16 v_interleave_quads(const v_int8x16& vec) method v_int8x16 (line 67) | v_int8x16() {} method v_int8x16 (line 68) | explicit v_int8x16(v128_t v) : val(v) {} method v_int8x16 (line 69) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 76) | schar get0() const function v_uint8x16 (line 2692) | inline v_uint8x16 v_interleave_quads(const v_uint8x16& vec) { return v... method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_int16x8 (line 2694) | inline v_int16x8 v_interleave_pairs(const v_int16x8& vec) method v_int16x8 (line 112) | v_int16x8() {} method v_int16x8 (line 113) | explicit v_int16x8(v128_t v) : val(v) {} method v_int16x8 (line 114) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 120) | short get0() const function v_uint16x8 (line 2698) | inline v_uint16x8 v_interleave_pairs(const v_uint16x8& vec) { return v... method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_int16x8 (line 2699) | inline v_int16x8 v_interleave_quads(const v_int16x8& vec) method v_int16x8 (line 112) | v_int16x8() {} method v_int16x8 (line 113) | explicit v_int16x8(v128_t v) : val(v) {} method v_int16x8 (line 114) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 120) | short get0() const function v_uint16x8 (line 2703) | inline v_uint16x8 v_interleave_quads(const v_uint16x8& vec) { return v... method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_int32x4 (line 2705) | inline v_int32x4 v_interleave_pairs(const v_int32x4& vec) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_uint32x4 (line 2709) | inline v_uint32x4 v_interleave_pairs(const v_uint32x4& vec) { return v... method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_float32x4 (line 2710) | inline v_float32x4 v_interleave_pairs(const v_float32x4& vec) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_int8x16 (line 2715) | inline v_int8x16 v_pack_triplets(const v_int8x16& vec) method v_int8x16 (line 67) | v_int8x16() {} method v_int8x16 (line 68) | explicit v_int8x16(v128_t v) : val(v) {} method v_int8x16 (line 69) | v_int8x16(schar v0, schar v1, schar v2, schar v3, schar v4, schar v5... method schar (line 76) | schar get0() const function v_uint8x16 (line 2719) | inline v_uint8x16 v_pack_triplets(const v_uint8x16& vec) { return v_re... method v_uint8x16 (line 44) | v_uint8x16() {} method v_uint8x16 (line 45) | explicit v_uint8x16(v128_t v) : val(v) {} method v_uint8x16 (line 46) | v_uint8x16(uchar v0, uchar v1, uchar v2, uchar v3, uchar v4, uchar v... method uchar (line 53) | uchar get0() const function v_int16x8 (line 2721) | inline v_int16x8 v_pack_triplets(const v_int16x8& vec) method v_int16x8 (line 112) | v_int16x8() {} method v_int16x8 (line 113) | explicit v_int16x8(v128_t v) : val(v) {} method v_int16x8 (line 114) | v_int16x8(short v0, short v1, short v2, short v3, short v4, short v5... method get0 (line 120) | short get0() const function v_uint16x8 (line 2725) | inline v_uint16x8 v_pack_triplets(const v_uint16x8& vec) { return v_re... method v_uint16x8 (line 90) | v_uint16x8() {} method v_uint16x8 (line 91) | explicit v_uint16x8(v128_t v) : val(v) {} method v_uint16x8 (line 92) | v_uint16x8(ushort v0, ushort v1, ushort v2, ushort v3, ushort v4, us... method ushort (line 98) | ushort get0() const function v_int32x4 (line 2727) | inline v_int32x4 v_pack_triplets(const v_int32x4& vec) { return vec; } method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_uint32x4 (line 2728) | inline v_uint32x4 v_pack_triplets(const v_uint32x4& vec) { return vec; } method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_float32x4 (line 2729) | inline v_float32x4 v_pack_triplets(const v_float32x4& vec) { return ve... method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_extract_n (line 2732) | inline typename _Tp::lane_type v_extract_n(const _Tp& a) function v_uint32x4 (line 2738) | inline v_uint32x4 v_broadcast_element(const v_uint32x4& a) method v_uint32x4 (line 134) | v_uint32x4() {} method v_uint32x4 (line 135) | explicit v_uint32x4(v128_t v) : val(v) {} method v_uint32x4 (line 136) | v_uint32x4(unsigned v0, unsigned v1, unsigned v2, unsigned v3) method get0 (line 142) | unsigned get0() const function v_int32x4 (line 2743) | inline v_int32x4 v_broadcast_element(const v_int32x4& a) method v_int32x4 (line 156) | v_int32x4() {} method v_int32x4 (line 157) | explicit v_int32x4(v128_t v) : val(v) {} method v_int32x4 (line 158) | v_int32x4(int v0, int v1, int v2, int v3) method get0 (line 164) | int get0() const function v_float32x4 (line 2748) | inline v_float32x4 v_broadcast_element(const v_float32x4& a) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_float32x4 (line 2756) | inline v_float32x4 v_load_expand(const float16_t* ptr) method v_float32x4 (line 178) | v_float32x4() {} method v_float32x4 (line 179) | explicit v_float32x4(v128_t v) : val(v) {} method v_float32x4 (line 180) | v_float32x4(float v0, float v1, float v2, float v3) method get0 (line 186) | float get0() const function v_pack_store (line 2764) | inline void v_pack_store(float16_t* ptr, const v_float32x4& v) function v_cleanup (line 2774) | inline void v_cleanup() {} FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/msa_macros.h type v8i8 (line 17) | typedef signed char v8i8 __attribute__ ((vector_size(8), aligned(8))); type v8u8 (line 18) | typedef unsigned char v8u8 __attribute__ ((vector_size(8), aligned(8))); type v4i16 (line 19) | typedef short v4i16 __attribute__ ((vector_size(8), aligned(8))); type v4u16 (line 20) | typedef unsigned short v4u16 __attribute__ ((vector_size(8), aligned(8))); type v2i32 (line 21) | typedef int v2i32 __attribute__ ((vector_size(8), aligned(8))); type v2u32 (line 22) | typedef unsigned int v2u32 __attribute__ ((vector_size(8), aligned(8))); type v1i64 (line 23) | typedef long long v1i64 __attribute__ ((vector_size(8), aligned(8))); type v1u64 (line 24) | typedef unsigned long long v1u64 __attribute__ ((vector_size(8), aligned... type v2f32 (line 25) | typedef float v2f32 __attribute__ ((vector_size(8), aligned(8))); type v1f64 (line 26) | typedef double v1f64 __attribute__ ((vector_size(8), aligned(8))); function v4i32 (line 1087) | __extension__ extern __inline v4i32 function v2i64 (line 1099) | __extension__ extern __inline v2i64 function v4f32 (line 1111) | __extension__ extern __inline v4f32 function v2f64 (line 1123) | __extension__ extern __inline v2f64 function v8i16 (line 1543) | __extension__ extern __inline v8i16 FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/hal/simd_utils.impl.hpp type Type2Vec128_Traits (line 11) | struct Type2Vec128_Traits type Type2Vec256_Traits (line 52) | struct Type2Vec256_Traits type Type2Vec512_Traits (line 93) | struct Type2Vec512_Traits function vx_setall (line 133) | static inline function vx_setall (line 136) | static inline function vx_setall (line 139) | static inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/mat.hpp type AccessFlag (line 64) | enum AccessFlag { ACCESS_READ=1<<24, ACCESS_WRITE=1<<25, class CV_EXPORTS (line 71) | class CV_EXPORTS function _InputArray (line 158) | class CV_EXPORTS _InputArray function _OutputArray (line 294) | class CV_EXPORTS _OutputArray : public _InputArray function _InputOutputArray (line 385) | class CV_EXPORTS _InputOutputArray : public _OutputArray type UMatUsageFlags (line 453) | enum UMatUsageFlags type CV_EXPORTS (line 465) | struct CV_EXPORTS function MatAllocator (line 469) | class CV_EXPORTS MatAllocator class MatCommaInitializer_ (line 514) | class MatCommaInitializer_ function UMatData (line 534) | struct CV_EXPORTS UMatData function MatSize (line 577) | struct CV_EXPORTS MatSize function MatStep (line 591) | struct CV_EXPORTS MatStep function Mat (line 801) | class CV_EXPORTS Mat class Mat_ (line 2198) | class Mat_ : public Mat function UMat (line 2401) | class CV_EXPORTS UMat FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/mat.inl.hpp type cv (line 72) | namespace cv function Size (line 99) | inline Size _InputArray::getSz() const { return sz; } function _InputArray (line 159) | inline function _InputArray (line 168) | inline function Mat (line 180) | inline Mat _InputArray::getMat(int i) const function _OutputArray (line 305) | inline function _OutputArray (line 314) | inline function _InputOutputArray (line 433) | inline function _InputOutputArray (line 442) | inline function _InputArray (line 453) | static inline _InputArray rawIn(_Tp& v) { return _InputArray::rawIn(v); } function _OutputArray (line 454) | static inline _OutputArray rawOut(_Tp& v) { return _OutputArray::rawOut(... function _InputOutputArray (line 455) | static inline _InputOutputArray rawInOut(_Tp& v) { return _InputOutputAr... function Mat (line 594) | inline function Mat (line 600) | inline function Mat (line 606) | inline function Mat (line 612) | inline function Mat (line 618) | inline function Mat (line 624) | inline function Mat (line 630) | inline function Mat (line 636) | inline function Mat (line 642) | inline function Mat (line 648) | inline function uchar (line 698) | inline function uchar (line 705) | inline function _Tp (line 712) | inline function _Tp (line 719) | inline function uchar (line 726) | inline function uchar (line 736) | inline function _Tp (line 746) | inline function _Tp (line 756) | inline function uchar (line 766) | inline function uchar (line 777) | inline function _Tp (line 788) | inline function _Tp (line 799) | inline function uchar (line 810) | inline function uchar (line 824) | inline function _Tp (line 838) | inline function _Tp (line 852) | inline function uchar (line 866) | inline function uchar (line 872) | inline function _Tp (line 878) | inline function _Tp (line 885) | inline function _Tp (line 893) | inline function _Tp (line 904) | inline function _Tp (line 915) | inline function _Tp (line 926) | inline function _Tp (line 937) | inline function _Tp (line 952) | inline function _Tp (line 967) | inline function _Tp (line 974) | inline function _Tp (line 981) | inline function _Tp (line 988) | inline function _Tp (line 995) | inline function _Tp (line 1002) | inline function Size (line 1195) | inline function size_t (line 1262) | inline MatStep::operator size_t() const function MatStep (line 1268) | inline MatStep& MatStep::operator = (size_t s) function _Tp (line 1600) | inline function _Tp (line 1607) | inline function _Tp (line 1614) | inline function _Tp (line 1625) | inline function _Tp (line 1636) | inline function _Tp (line 1647) | inline function _Tp (line 1658) | inline function _Tp (line 1664) | inline function _Tp (line 1670) | inline function _Tp (line 1676) | inline function _Tp (line 1682) | inline function _Tp (line 1688) | inline function _Tp (line 1694) | inline function _Tp (line 1700) | inline function SparseMat (line 1863) | inline function _Tp (line 1930) | inline function _Tp (line 1936) | inline function _Tp (line 1942) | inline function _Tp (line 1948) | inline function _Tp (line 1954) | inline function _Tp (line 1961) | inline function _Tp (line 1968) | inline function _Tp (line 1975) | inline function _Tp (line 1982) | inline function _Tp (line 1988) | inline function _Tp (line 1994) | inline function _Tp (line 2000) | inline function _Tp (line 2006) | inline function _Tp (line 2012) | inline function SparseMatIterator (line 2030) | inline function SparseMatConstIterator (line 2036) | inline function SparseMatIterator (line 2042) | inline function SparseMatConstIterator (line 2050) | inline function _Tp (line 2186) | inline function _Tp (line 2192) | inline function _Tp (line 2198) | inline function _Tp (line 2204) | inline function _Tp (line 2210) | inline function _Tp (line 2216) | inline function _Tp (line 2222) | inline function _Tp (line 2228) | inline function MatConstIterator (line 2319) | inline function uchar (line 2327) | inline function MatConstIterator (line 2333) | inline MatConstIterator& MatConstIterator::operator += (ptrdiff_t ofs) function MatConstIterator (line 2347) | inline function MatConstIterator (line 2353) | inline function MatConstIterator (line 2364) | inline function MatConstIterator (line 2372) | inline function MatConstIterator (line 2383) | inline MatConstIterator MatConstIterator::operator ++(int) function MatConstIterator (line 2438) | static inline function MatConstIterator (line 2445) | static inline function MatConstIterator (line 2452) | static inline function uchar (line 2460) | inline function _Tp (line 2501) | inline function Point (line 2551) | inline function _Tp (line 2607) | inline function _Tp (line 2654) | inline function _Tp (line 2704) | inline function SparseMatConstIterator (line 2758) | inline SparseMatConstIterator& SparseMatConstIterator::operator = (const... function _Tp (line 2769) | inline function SparseMatConstIterator (line 2781) | inline function SparseMatIterator (line 2830) | inline function _Tp (line 2837) | inline function SparseMatIterator (line 2849) | inline function SparseMatIterator (line 2856) | inline function _Tp (line 2897) | inline function _Tp (line 2949) | inline function Mat (line 3007) | inline function MatExpr (line 3027) | inline function MatExpr (line 3033) | inline function MatExpr (line 3039) | inline function MatExpr (line 3045) | inline function MatExpr (line 3051) | inline function MatExpr (line 3057) | inline function Mat (line 3074) | inline function MatExpr (line 3091) | static inline function MatExpr (line 3097) | static inline function MatExpr (line 3103) | static inline function MatExpr (line 3109) | static inline function MatExpr (line 3115) | static inline function MatExpr (line 3121) | static inline function MatExpr (line 3127) | static inline function Mat (line 3134) | static inline function Mat (line 3141) | static inline function Mat (line 3162) | static inline function Mat (line 3169) | static inline function Mat (line 3190) | static inline function Mat (line 3197) | static inline function Mat (line 3218) | static inline function Mat (line 3225) | static inline function UMat (line 3265) | inline function UMat (line 3271) | inline function UMat (line 3277) | inline function UMat (line 3283) | inline function UMat (line 3289) | inline function UMat (line 3295) | inline function UMat (line 3301) | inline function UMat (line 3307) | inline function UMat (line 3313) | inline function UMat (line 3319) | inline function swap (line 3408) | static inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/matx.hpp type cv (line 58) | namespace cv function Matx_AddOp (line 68) | struct CV_EXPORTS Matx_AddOp { Matx_AddOp() {} Matx_AddOp(const Matx_A... function Matx_SubOp (line 69) | struct CV_EXPORTS Matx_SubOp { Matx_SubOp() {} Matx_SubOp(const Matx_S... function Matx_ScaleOp (line 70) | struct CV_EXPORTS Matx_ScaleOp { Matx_ScaleOp() {} Matx_ScaleOp(const ... function Matx_MulOp (line 71) | struct CV_EXPORTS Matx_MulOp { Matx_MulOp() {} Matx_MulOp(const Matx_M... function Matx_DivOp (line 72) | struct CV_EXPORTS Matx_DivOp { Matx_DivOp() {} Matx_DivOp(const Matx_D... function Matx_MatMulOp (line 73) | struct CV_EXPORTS Matx_MatMulOp { Matx_MatMulOp() {} Matx_MatMulOp(con... function Matx_TOp (line 74) | struct CV_EXPORTS Matx_TOp { Matx_TOp() {} Matx_TOp(const Matx_TOp&) {} } class Matx (line 99) | class Matx class DataType< Matx<_Tp, m, n> > (line 262) | class DataType< Matx<_Tp, m, n> > type traits (line 280) | namespace traits { type Depth< Matx<_Tp, m, n> > (line 282) | struct Depth< Matx<_Tp, m, n> > { enum { value = Depth<_Tp>::value }; } type Type< Matx<_Tp, m, n> > (line 284) | struct Type< Matx<_Tp, m, n> > { enum { value = CV_MAKETYPE(Depth<_T... type Depth< Vec<_Tp, cn> > (line 462) | struct Depth< Vec<_Tp, cn> > { enum { value = Depth<_Tp>::value }; } type Type< Vec<_Tp, cn> > (line 464) | struct Type< Vec<_Tp, cn> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... class MatxCommaInitializer (line 290) | class MatxCommaInitializer class Vec (line 341) | class Vec : public Matx<_Tp, cn, 1> class DataType< Vec<_Tp, cn> > (line 441) | class DataType< Vec<_Tp, cn> > type traits (line 460) | namespace traits { type Depth< Matx<_Tp, m, n> > (line 282) | struct Depth< Matx<_Tp, m, n> > { enum { value = Depth<_Tp>::value }; } type Type< Matx<_Tp, m, n> > (line 284) | struct Type< Matx<_Tp, m, n> > { enum { value = CV_MAKETYPE(Depth<_T... type Depth< Vec<_Tp, cn> > (line 462) | struct Depth< Vec<_Tp, cn> > { enum { value = Depth<_Tp>::value }; } type Type< Vec<_Tp, cn> > (line 464) | struct Type< Vec<_Tp, cn> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... class VecCommaInitializer (line 470) | class VecCommaInitializer : public MatxCommaInitializer<_Tp, m, 1> type internal (line 485) | namespace internal type Matx_DetOp (line 488) | struct Matx_DetOp type Matx_DetOp<_Tp, 1> (line 502) | struct Matx_DetOp<_Tp, 1> type Matx_DetOp<_Tp, 2> (line 510) | struct Matx_DetOp<_Tp, 2> type Matx_DetOp<_Tp, 3> (line 518) | struct Matx_DetOp<_Tp, 3> function conjugate (line 528) | Vec<_Tp, 2> inline conjugate(const Vec<_Tp, 2>& v) function conjugate (line 533) | Vec<_Tp, 4> inline conjugate(const Vec<_Tp, 4>& v) function _Tp (line 716) | inline function _Tp (line 794) | inline function _Tp (line 801) | inline function _Tp (line 808) | inline function _Tp (line 816) | inline function determinant (line 905) | static inline function trace (line 911) | static inline function norm (line 920) | static inline function norm (line 926) | static inline function _Tp (line 1119) | inline function _Tp (line 1126) | inline function _Tp (line 1133) | inline function _Tp (line 1140) | inline function normalize (line 1147) | inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/neon_utils.hpp function int32x2_t (line 52) | inline int32x2_t cv_vrnd_s32_f32(float32x2_t v) function int32x4_t (line 61) | inline int32x4_t cv_vrndq_s32_f32(float32x4_t v) function uint32x2_t (line 70) | inline uint32x2_t cv_vrnd_u32_f32(float32x2_t v) function uint32x4_t (line 76) | inline uint32x4_t cv_vrndq_u32_f32(float32x4_t v) function float32x4_t (line 82) | inline float32x4_t cv_vrecpq_f32(float32x4_t val) function float32x2_t (line 90) | inline float32x2_t cv_vrecp_f32(float32x2_t val) function float32x4_t (line 98) | inline float32x4_t cv_vrsqrtq_f32(float32x4_t val) function float32x2_t (line 106) | inline float32x2_t cv_vrsqrt_f32(float32x2_t val) function float32x4_t (line 114) | inline float32x4_t cv_vsqrtq_f32(float32x4_t val) function float32x2_t (line 119) | inline float32x2_t cv_vsqrt_f32(float32x2_t val) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/ocl.hpp type cv (line 49) | namespace cv { namespace ocl { type ocl (line 49) | namespace ocl { class CV_EXPORTS (line 63) | class CV_EXPORTS class CV_EXPORTS_W_SIMPLE (line 64) | class CV_EXPORTS_W_SIMPLE class CV_EXPORTS (line 65) | class CV_EXPORTS class CV_EXPORTS (line 66) | class CV_EXPORTS class CV_EXPORTS (line 67) | class CV_EXPORTS class CV_EXPORTS (line 68) | class CV_EXPORTS class CV_EXPORTS (line 69) | class CV_EXPORTS class CV_EXPORTS (line 70) | class CV_EXPORTS function Device (line 72) | class CV_EXPORTS_W_SIMPLE Device function Context (line 249) | class CV_EXPORTS Context function Platform (line 325) | class CV_EXPORTS Platform function Queue (line 386) | class CV_EXPORTS Queue function KernelArg (line 413) | class CV_EXPORTS KernelArg function Kernel (line 452) | class CV_EXPORTS Kernel function Program (line 531) | class CV_EXPORTS Program function ProgramSource (line 576) | class CV_EXPORTS ProgramSource function PlatformInfo (line 650) | class CV_EXPORTS PlatformInfo type OclVectorStrategy (line 691) | enum OclVectorStrategy function Image2D (line 721) | class CV_EXPORTS Image2D class OpenCLExecutionContextScope (line 859) | class OpenCLExecutionContextScope method OpenCLExecutionContextScope (line 863) | inline OpenCLExecutionContextScope(const OpenCLExecutionContext& ctx) type internal (line 880) | namespace internal { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/ocl_genbase.hpp type cv (line 47) | namespace cv { type ocl (line 48) | namespace ocl { class ProgramSource (line 50) | class ProgramSource type internal (line 52) | namespace internal { function ProgramEntry (line 54) | struct CV_EXPORTS ProgramEntry FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/opencl/ocl_defs.hpp type cv (line 14) | namespace cv { namespace ocl { type ocl (line 14) | namespace ocl { function isOpenCLActivated (line 19) | static inline bool isOpenCLActivated() { return false; } FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/opencl/opencl_info.hpp type cv (line 18) | namespace cv { function bytesToStringRepr (line 21) | static std::string bytesToStringRepr(size_t value) function String (line 51) | static String getDeviceTypeString(const cv::ocl::Device& device) function dumpOpenCLInformation (line 69) | static void dumpOpenCLInformation() FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/opencl/opencl_svm.hpp type cv (line 18) | namespace cv { namespace ocl { namespace svm { type ocl (line 18) | namespace ocl { namespace svm { type svm (line 18) | namespace svm { type SVMCapabilities (line 20) | struct SVMCapabilities type Value (line 22) | enum Value method SVMCapabilities (line 31) | SVMCapabilities(int capabilities = 0) : value_(capabilities) { } method isNoSVMSupport (line 34) | inline bool isNoSVMSupport() const { return value_ == 0; } method isSupportCoarseGrainBuffer (line 35) | inline bool isSupportCoarseGrainBuffer() const { return (value_ ... method isSupportFineGrainBuffer (line 36) | inline bool isSupportFineGrainBuffer() const { return (value_ & ... method isSupportFineGrainSystem (line 37) | inline bool isSupportFineGrainSystem() const { return (value_ & ... method isSupportAtomics (line 38) | inline bool isSupportAtomics() const { return (value_ & SVM_ATOM... type SVMFunctions (line 43) | struct SVMFunctions method SVMFunctions (line 55) | inline SVMFunctions() method isValid (line 64) | inline bool isValid() const FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp function cl_int (line 11) | inline cl_int clBuildProgram(cl_program p0, cl_uint p1, const cl_device_... function cl_int (line 14) | inline cl_int clCompileProgram(cl_program p0, cl_uint p1, const cl_devic... function cl_mem (line 17) | inline cl_mem clCreateBuffer(cl_context p0, cl_mem_flags p1, size_t p2, ... function cl_command_queue (line 20) | inline cl_command_queue clCreateCommandQueue(cl_context p0, cl_device_id... function cl_context (line 23) | inline cl_context clCreateContext(const cl_context_properties* p0, cl_ui... function cl_context (line 26) | inline cl_context clCreateContextFromType(const cl_context_properties* p... function cl_mem (line 29) | inline cl_mem clCreateImage(cl_context p0, cl_mem_flags p1, const cl_ima... function cl_mem (line 32) | inline cl_mem clCreateImage2D(cl_context p0, cl_mem_flags p1, const cl_i... function cl_mem (line 35) | inline cl_mem clCreateImage3D(cl_context p0, cl_mem_flags p1, const cl_i... function cl_kernel (line 38) | inline cl_kernel clCreateKernel(cl_program p0, const char* p1, cl_int* p... function cl_int (line 41) | inline cl_int clCreateKernelsInProgram(cl_program p0, cl_uint p1, cl_ker... function cl_program (line 44) | inline cl_program clCreateProgramWithBinary(cl_context p0, cl_uint p1, c... function cl_program (line 47) | inline cl_program clCreateProgramWithBuiltInKernels(cl_context p0, cl_ui... function cl_program (line 50) | inline cl_program clCreateProgramWithSource(cl_context p0, cl_uint p1, c... function cl_sampler (line 53) | inline cl_sampler clCreateSampler(cl_context p0, cl_bool p1, cl_addressi... function cl_mem (line 56) | inline cl_mem clCreateSubBuffer(cl_mem p0, cl_mem_flags p1, cl_buffer_cr... function cl_int (line 59) | inline cl_int clCreateSubDevices(cl_device_id p0, const cl_device_partit... function cl_event (line 62) | inline cl_event clCreateUserEvent(cl_context p0, cl_int* p1) { return cl... function cl_int (line 65) | inline cl_int clEnqueueBarrier(cl_command_queue p0) { return clEnqueueBa... function cl_int (line 68) | inline cl_int clEnqueueBarrierWithWaitList(cl_command_queue p0, cl_uint ... function cl_int (line 71) | inline cl_int clEnqueueCopyBuffer(cl_command_queue p0, cl_mem p1, cl_mem... function cl_int (line 74) | inline cl_int clEnqueueCopyBufferRect(cl_command_queue p0, cl_mem p1, cl... function cl_int (line 77) | inline cl_int clEnqueueCopyBufferToImage(cl_command_queue p0, cl_mem p1,... function cl_int (line 80) | inline cl_int clEnqueueCopyImage(cl_command_queue p0, cl_mem p1, cl_mem ... function cl_int (line 83) | inline cl_int clEnqueueCopyImageToBuffer(cl_command_queue p0, cl_mem p1,... function cl_int (line 86) | inline cl_int clEnqueueFillBuffer(cl_command_queue p0, cl_mem p1, const ... function cl_int (line 89) | inline cl_int clEnqueueFillImage(cl_command_queue p0, cl_mem p1, const v... function cl_int (line 98) | inline cl_int clEnqueueMarker(cl_command_queue p0, cl_event* p1) { retur... function cl_int (line 101) | inline cl_int clEnqueueMarkerWithWaitList(cl_command_queue p0, cl_uint p... function cl_int (line 104) | inline cl_int clEnqueueMigrateMemObjects(cl_command_queue p0, cl_uint p1... function cl_int (line 107) | inline cl_int clEnqueueNDRangeKernel(cl_command_queue p0, cl_kernel p1, ... function cl_int (line 110) | inline cl_int clEnqueueNativeKernel(cl_command_queue p0, void (CL_CALLBA... function cl_int (line 113) | inline cl_int clEnqueueReadBuffer(cl_command_queue p0, cl_mem p1, cl_boo... function cl_int (line 116) | inline cl_int clEnqueueReadBufferRect(cl_command_queue p0, cl_mem p1, cl... function cl_int (line 119) | inline cl_int clEnqueueReadImage(cl_command_queue p0, cl_mem p1, cl_bool... function cl_int (line 122) | inline cl_int clEnqueueTask(cl_command_queue p0, cl_kernel p1, cl_uint p... function cl_int (line 125) | inline cl_int clEnqueueUnmapMemObject(cl_command_queue p0, cl_mem p1, vo... function cl_int (line 128) | inline cl_int clEnqueueWaitForEvents(cl_command_queue p0, cl_uint p1, co... function cl_int (line 131) | inline cl_int clEnqueueWriteBuffer(cl_command_queue p0, cl_mem p1, cl_bo... function cl_int (line 134) | inline cl_int clEnqueueWriteBufferRect(cl_command_queue p0, cl_mem p1, c... function cl_int (line 137) | inline cl_int clEnqueueWriteImage(cl_command_queue p0, cl_mem p1, cl_boo... function cl_int (line 140) | inline cl_int clFinish(cl_command_queue p0) { return clFinish_pfn(p0); } function cl_int (line 143) | inline cl_int clFlush(cl_command_queue p0) { return clFlush_pfn(p0); } function cl_int (line 146) | inline cl_int clGetCommandQueueInfo(cl_command_queue p0, cl_command_queu... function cl_int (line 149) | inline cl_int clGetContextInfo(cl_context p0, cl_context_info p1, size_t... function cl_int (line 152) | inline cl_int clGetDeviceIDs(cl_platform_id p0, cl_device_type p1, cl_ui... function cl_int (line 155) | inline cl_int clGetDeviceInfo(cl_device_id p0, cl_device_info p1, size_t... function cl_int (line 158) | inline cl_int clGetEventInfo(cl_event p0, cl_event_info p1, size_t p2, v... function cl_int (line 161) | inline cl_int clGetEventProfilingInfo(cl_event p0, cl_profiling_info p1,... function cl_int (line 170) | inline cl_int clGetImageInfo(cl_mem p0, cl_image_info p1, size_t p2, voi... function cl_int (line 173) | inline cl_int clGetKernelArgInfo(cl_kernel p0, cl_uint p1, cl_kernel_arg... function cl_int (line 176) | inline cl_int clGetKernelInfo(cl_kernel p0, cl_kernel_info p1, size_t p2... function cl_int (line 179) | inline cl_int clGetKernelWorkGroupInfo(cl_kernel p0, cl_device_id p1, cl... function cl_int (line 182) | inline cl_int clGetMemObjectInfo(cl_mem p0, cl_mem_info p1, size_t p2, v... function cl_int (line 185) | inline cl_int clGetPlatformIDs(cl_uint p0, cl_platform_id* p1, cl_uint* ... function cl_int (line 188) | inline cl_int clGetPlatformInfo(cl_platform_id p0, cl_platform_info p1, ... function cl_int (line 191) | inline cl_int clGetProgramBuildInfo(cl_program p0, cl_device_id p1, cl_p... function cl_int (line 194) | inline cl_int clGetProgramInfo(cl_program p0, cl_program_info p1, size_t... function cl_int (line 197) | inline cl_int clGetSamplerInfo(cl_sampler p0, cl_sampler_info p1, size_t... function cl_int (line 200) | inline cl_int clGetSupportedImageFormats(cl_context p0, cl_mem_flags p1,... function cl_program (line 203) | inline cl_program clLinkProgram(cl_context p0, cl_uint p1, const cl_devi... function cl_int (line 206) | inline cl_int clReleaseCommandQueue(cl_command_queue p0) { return clRele... function cl_int (line 209) | inline cl_int clReleaseContext(cl_context p0) { return clReleaseContext_... function cl_int (line 212) | inline cl_int clReleaseDevice(cl_device_id p0) { return clReleaseDevice_... function cl_int (line 215) | inline cl_int clReleaseEvent(cl_event p0) { return clReleaseEvent_pfn(p0... function cl_int (line 218) | inline cl_int clReleaseKernel(cl_kernel p0) { return clReleaseKernel_pfn... function cl_int (line 221) | inline cl_int clReleaseMemObject(cl_mem p0) { return clReleaseMemObject_... function cl_int (line 224) | inline cl_int clReleaseProgram(cl_program p0) { return clReleaseProgram_... function cl_int (line 227) | inline cl_int clReleaseSampler(cl_sampler p0) { return clReleaseSampler_... function cl_int (line 230) | inline cl_int clRetainCommandQueue(cl_command_queue p0) { return clRetai... function cl_int (line 233) | inline cl_int clRetainContext(cl_context p0) { return clRetainContext_pf... function cl_int (line 236) | inline cl_int clRetainDevice(cl_device_id p0) { return clRetainDevice_pf... function cl_int (line 239) | inline cl_int clRetainEvent(cl_event p0) { return clRetainEvent_pfn(p0); } function cl_int (line 242) | inline cl_int clRetainKernel(cl_kernel p0) { return clRetainKernel_pfn(p... function cl_int (line 245) | inline cl_int clRetainMemObject(cl_mem p0) { return clRetainMemObject_pf... function cl_int (line 248) | inline cl_int clRetainProgram(cl_program p0) { return clRetainProgram_pf... function cl_int (line 251) | inline cl_int clRetainSampler(cl_sampler p0) { return clRetainSampler_pf... function cl_int (line 254) | inline cl_int clSetEventCallback(cl_event p0, cl_int p1, void (CL_CALLBA... function cl_int (line 257) | inline cl_int clSetKernelArg(cl_kernel p0, cl_uint p1, size_t p2, const ... function cl_int (line 260) | inline cl_int clSetMemObjectDestructorCallback(cl_mem p0, void (CL_CALLB... function cl_int (line 263) | inline cl_int clSetUserEventStatus(cl_event p0, cl_int p1) { return clSe... function cl_int (line 266) | inline cl_int clUnloadCompiler() { return clUnloadCompiler_pfn(); } function cl_int (line 269) | inline cl_int clUnloadPlatformCompiler(cl_platform_id p0) { return clUnl... function cl_int (line 272) | inline cl_int clWaitForEvents(cl_uint p0, const cl_event* p1) { return c... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp function cl_mem (line 13) | inline cl_mem clCreateFromGLBuffer(cl_context p0, cl_mem_flags p1, cl_GL... function cl_mem (line 16) | inline cl_mem clCreateFromGLRenderbuffer(cl_context p0, cl_mem_flags p1,... function cl_mem (line 19) | inline cl_mem clCreateFromGLTexture(cl_context p0, cl_mem_flags p1, cl_G... function cl_mem (line 22) | inline cl_mem clCreateFromGLTexture2D(cl_context p0, cl_mem_flags p1, cl... function cl_mem (line 25) | inline cl_mem clCreateFromGLTexture3D(cl_context p0, cl_mem_flags p1, cl... function cl_int (line 28) | inline cl_int clEnqueueAcquireGLObjects(cl_command_queue p0, cl_uint p1,... function cl_int (line 31) | inline cl_int clEnqueueReleaseGLObjects(cl_command_queue p0, cl_uint p1,... function cl_int (line 34) | inline cl_int clGetGLContextInfoKHR(const cl_context_properties* p0, cl_... function cl_int (line 37) | inline cl_int clGetGLObjectInfo(cl_mem p0, cl_gl_object_type* p1, cl_GLu... function cl_int (line 40) | inline cl_int clGetGLTextureInfo(cl_mem p0, cl_gl_texture_info p1, size_... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/opengl.hpp type cv (line 53) | namespace cv { namespace ogl { type ogl (line 53) | namespace ogl { function Buffer (line 79) | class CV_EXPORTS Buffer function Texture2D (line 283) | class CV_EXPORTS Texture2D function Arrays (line 406) | class CV_EXPORTS Arrays type RenderModes (line 478) | enum RenderModes { type ocl (line 517) | namespace ocl { type cuda (line 564) | namespace cuda { type cv (line 564) | namespace cv { namespace cuda { type ogl (line 53) | namespace ogl { function Buffer (line 79) | class CV_EXPORTS Buffer function Texture2D (line 283) | class CV_EXPORTS Texture2D function Arrays (line 406) | class CV_EXPORTS Arrays type RenderModes (line 478) | enum RenderModes { type ocl (line 517) | namespace ocl { type cuda (line 564) | namespace cuda { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/operations.hpp type cv (line 66) | namespace cv type internal (line 71) | namespace internal type Matx_FastInvOp (line 74) | struct Matx_FastInvOp type Matx_FastInvOp<_Tp, m, m> (line 82) | struct Matx_FastInvOp<_Tp, m, m> type Matx_FastInvOp<_Tp, 2, 2> (line 106) | struct Matx_FastInvOp<_Tp, 2, 2> type Matx_FastInvOp<_Tp, 3, 3> (line 122) | struct Matx_FastInvOp<_Tp, 3, 3> type Matx_FastSolveOp (line 146) | struct Matx_FastSolveOp type Matx_FastSolveOp<_Tp, m, m, n> (line 155) | struct Matx_FastSolveOp<_Tp, m, m, n> type Matx_FastSolveOp<_Tp, 2, 2, 1> (line 176) | struct Matx_FastSolveOp<_Tp, 2, 2, 1> type Matx_FastSolveOp<_Tp, 3, 3, 1> (line 191) | struct Matx_FastSolveOp<_Tp, 3, 3, 1> function uchar (line 381) | inline RNG::operator uchar() { return (uchar)next(); } function schar (line 382) | inline RNG::operator schar() { return (schar)next(); } function ushort (line 383) | inline RNG::operator ushort() { return (ushort)next(); } function short (line 384) | inline RNG::operator short() { return (short)next(); } function int (line 385) | inline RNG::operator int() { return (int)next(); } function unsigned (line 386) | inline RNG::operator unsigned() { return next(); } function float (line 387) | inline RNG::operator float() { return next()*2.3283064365386962890625... function double (line 388) | inline RNG::operator double() { unsigned t = next(); return (((uint64)... function _Tp (line 406) | static inline _Tp randu() function format (line 434) | static inline function print (line 440) | static inline function print (line 451) | static inline function print (line 457) | static inline function print (line 463) | static inline function print (line 469) | static inline function print (line 475) | static inline function partition (line 502) | int FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/optim.hpp type cv (line 47) | namespace cv function MinProblemSolver (line 58) | class CV_EXPORTS MinProblemSolver : public Algorithm function MinProblemSolver (line 155) | class CV_EXPORTS DownhillSolver : public MinProblemSolver function MinProblemSolver (line 236) | class CV_EXPORTS ConjGradSolver : public MinProblemSolver type SolveLPResult (line 257) | enum SolveLPResult FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/ovx.hpp type cv (line 16) | namespace cv FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/parallel/backend/parallel_for.openmp.hpp type cv (line 16) | namespace cv { namespace parallel { namespace openmp { type parallel (line 16) | namespace parallel { namespace openmp { type openmp (line 16) | namespace openmp { class ParallelForBackend (line 23) | class ParallelForBackend : public ParallelForAPI method ParallelForBackend (line 29) | ParallelForBackend() method parallel_for (line 37) | virtual void parallel_for(int tasks, FN_parallel_for_body_cb_t b... method getThreadNum (line 44) | virtual int getThreadNum() const CV_OVERRIDE method getNumThreads (line 49) | virtual int getNumThreads() const CV_OVERRIDE method setNumThreads (line 56) | virtual int setNumThreads(int nThreads) CV_OVERRIDE FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/parallel/backend/parallel_for.tbb.hpp type cv (line 23) | namespace cv { namespace parallel { namespace tbb { type parallel (line 23) | namespace parallel { namespace tbb { type tbb (line 23) | namespace tbb { class ParallelForBackend (line 46) | class ParallelForBackend : public ParallelForAPI method ParallelForBackend (line 52) | ParallelForBackend() class CallbackProxy (line 65) | class CallbackProxy method CallbackProxy (line 71) | inline CallbackProxy(int tasks_, FN_parallel_for_body_cb_t& ca... method parallel_for (line 88) | virtual void parallel_for(int tasks, FN_parallel_for_body_cb_t b... method getThreadNum (line 98) | virtual int getThreadNum() const CV_OVERRIDE method getNumThreads (line 109) | virtual int getNumThreads() const CV_OVERRIDE method setNumThreads (line 124) | virtual int setNumThreads(int nThreads) CV_OVERRIDE FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/parallel/parallel_backend.hpp type cv (line 11) | namespace cv { namespace parallel { type parallel (line 11) | namespace parallel { function ParallelForAPI (line 56) | class CV_EXPORTS ParallelForAPI FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/persistence.hpp type cv (line 103) | namespace cv { class CV_EXPORTS (line 297) | class CV_EXPORTS class CV_EXPORTS (line 298) | class CV_EXPORTS function FileStorage (line 303) | class CV_EXPORTS_W FileStorage function FileNode (line 481) | class CV_EXPORTS_W_SIMPLE FileNode function FileNodeIterator (line 633) | class CV_EXPORTS FileNodeIterator function read (line 736) | static inline void read(const FileNode& node, Point_<_Tp>& value, cons... function read (line 742) | static inline void read(const FileNode& node, Point3_<_Tp>& value, con... function read (line 749) | static inline void read(const FileNode& node, Size_<_Tp>& value, const... function read (line 755) | static inline void read(const FileNode& node, Complex<_Tp>& value, con... function read (line 761) | static inline void read(const FileNode& node, Rect_<_Tp>& value, const... function read (line 768) | static inline void read(const FileNode& node, Vec<_Tp, cn>& value, con... function read (line 774) | static inline void read(const FileNode& node, Matx<_Tp, m, n>& value, ... function read (line 785) | static inline void read(const FileNode& node, Scalar_<_Tp>& value, con... function read (line 792) | static inline void read(const FileNode& node, Range& value, const Rang... type internal (line 808) | namespace internal function WriteStructContext (line 810) | class CV_EXPORTS WriteStructContext class VecWriterProxy (line 819) | class VecWriterProxy method VecWriterProxy (line 822) | VecWriterProxy( FileStorage* _fs ) : fs(_fs) {} class VecWriterProxy<_Tp, 1> (line 833) | class VecWriterProxy<_Tp, 1> method VecWriterProxy (line 836) | VecWriterProxy( FileStorage* _fs ) : fs(_fs) {} class VecReaderProxy (line 847) | class VecReaderProxy method VecReaderProxy (line 850) | VecReaderProxy( FileNodeIterator* _it ) : it(_it) {} class VecReaderProxy<_Tp, 1> (line 862) | class VecReaderProxy<_Tp, 1> method VecReaderProxy (line 865) | VecReaderProxy( FileNodeIterator* _it ) : it(_it) {} function write (line 890) | static inline function write (line 896) | inline function write (line 902) | inline function write (line 908) | inline function write (line 914) | inline function write (line 920) | static inline function write (line 927) | static inline function write (line 935) | static inline function write (line 942) | static inline function write (line 949) | static inline function write (line 958) | static inline function write (line 965) | static inline function write (line 971) | static inline function write (line 980) | static inline function write (line 987) | static inline function write (line 994) | static inline function write (line 1001) | static inline function write (line 1008) | static inline function write (line 1015) | static inline function write (line 1022) | static inline function write (line 1029) | static inline function write (line 1036) | static inline function write (line 1042) | static inline function write (line 1049) | static inline function write (line 1056) | static inline function write (line 1069) | static inline function write (line 1080) | static inline void write( FileStorage& fs, const String& name, const _... function write (line 1085) | static inline function write (line 1092) | static inline function write (line 1106) | static inline void write(FileStorage& fs, const KeyPoint& kpt) { write... function write (line 1107) | static inline void write(FileStorage& fs, const DMatch& m) { write(fs,... function write (line 1108) | static inline void write(FileStorage& fs, const std::vector&... function write (line 1113) | static inline void write(FileStorage& fs, const std::vector& vec) function read (line 1126) | static inline function read (line 1134) | static inline function read (line 1142) | static inline function read (line 1150) | static inline function read (line 1158) | static inline function read (line 1166) | static inline function read (line 1174) | static inline void read(const FileNode& node, _Tp& value, const _Tp& d... function read (line 1181) | static inline function read (line 1193) | static inline function read (line 1202) | static inline function FileStorage (line 1218) | static inline function FileStorage (line 1233) | static inline function FileStorage (line 1241) | static inline function FileNodeIterator (line 1254) | static inline function FileNodeIterator (line 1263) | static inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/quaternion.hpp type cv (line 32) | namespace cv type QuatAssumeType (line 38) | enum QuatAssumeType class QuatEnum (line 55) | class QuatEnum type EulerAnglesType (line 98) | enum EulerAnglesType class Quat (line 132) | class Quat class Quat (line 210) | class Quat FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/quaternion.inl.hpp type cv (line 37) | namespace cv { function T (line 282) | inline const T& Quat::operator[](std::size_t n) const function T (line 299) | inline T& Quat::operator[](std::size_t n) function T (line 323) | inline T Quat::at(size_t index) const function T (line 335) | inline T Quat::norm() const function exp (line 341) | Quat exp(const Quat &q) function log (line 356) | Quat log(const Quat &q, QuatAssumeType assumeUnit) function power (line 381) | inline Quat power(const Quat &q1, const T alpha, QuatAssumeType ... function sqrt (line 407) | inline Quat sqrt(const Quat &q, QuatAssumeType assumeUnit) function power (line 420) | inline Quat power(const Quat &p, const Quat &q, QuatAssumeTyp... function T (line 433) | inline T Quat::dot(Quat q1) const function crossProduct (line 440) | inline Quat crossProduct(const Quat &p, const Quat &q) function inv (line 464) | inline Quat inv(const Quat &q, QuatAssumeType assumeUnit) function sinh (line 486) | inline Quat sinh(const Quat &q) function cosh (line 503) | inline Quat cosh(const Quat &q) function tanh (line 519) | inline Quat tanh(const Quat &q) function sin (line 532) | inline Quat sin(const Quat &q) function cos (line 548) | inline Quat cos(const Quat &q) function tan (line 563) | inline Quat tan(const Quat &q) function asinh (line 575) | inline Quat asinh(const Quat &q) function acosh (line 587) | inline Quat acosh(const Quat &q) function atanh (line 599) | inline Quat atanh(const Quat &q) function asin (line 614) | inline Quat asin(const Quat &q) function acos (line 629) | inline Quat acos(const Quat &q) function atan (line 644) | inline Quat atan(const Quat &q) function T (line 659) | inline T Quat::getAngle(QuatAssumeType assumeUnit) const type detail (line 869) | namespace detail { function createFromAxisRot (line 871) | static function isIntAngleType (line 883) | inline bool isIntAngleType(QuatEnum::EulerAnglesType eulerAnglesType) function isTaitBryan (line 888) | inline bool isTaitBryan(QuatEnum::EulerAnglesType eulerAnglesType) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/saturate.hpp type cv (line 51) | namespace cv function _Tp (line 80) | static inline _Tp saturate_cast(uchar v) { return _Tp(v); } function _Tp (line 82) | static inline _Tp saturate_cast(schar v) { return _Tp(v); } function _Tp (line 84) | static inline _Tp saturate_cast(ushort v) { return _Tp(v); } function _Tp (line 86) | static inline _Tp saturate_cast(short v) { return _Tp(v); } function _Tp (line 88) | static inline _Tp saturate_cast(unsigned v) { return _Tp(v); } function _Tp (line 90) | static inline _Tp saturate_cast(int v) { return _Tp(v); } function _Tp (line 92) | static inline _Tp saturate_cast(float v) { return _Tp(v); } function _Tp (line 94) | static inline _Tp saturate_cast(double v) { return _Tp(v); } function _Tp (line 96) | static inline _Tp saturate_cast(int64 v) { return _Tp(v); } function _Tp (line 98) | static inline _Tp saturate_cast(uint64 v) { return _Tp(v); } function uchar (line 100) | inline uchar saturate_cast(schar v) { return (uchar)std:... function uchar (line 101) | inline uchar saturate_cast(ushort v) { return (uchar)std:... function uchar (line 102) | inline uchar saturate_cast(int v) { return (uchar)((un... function uchar (line 103) | inline uchar saturate_cast(short v) { return saturate_ca... function uchar (line 104) | inline uchar saturate_cast(unsigned v) { return (uchar)std:... function uchar (line 105) | inline uchar saturate_cast(float v) { int iv = cvRound(v... function uchar (line 106) | inline uchar saturate_cast(double v) { int iv = cvRound(v... function uchar (line 107) | inline uchar saturate_cast(int64 v) { return (uchar)((ui... function uchar (line 108) | inline uchar saturate_cast(uint64 v) { return (uchar)std:... function schar (line 110) | inline schar saturate_cast(uchar v) { return (schar)std:... function schar (line 111) | inline schar saturate_cast(ushort v) { return (schar)std:... function schar (line 112) | inline schar saturate_cast(int v) { return (schar)((un... function schar (line 113) | inline schar saturate_cast(short v) { return saturate_ca... function schar (line 114) | inline schar saturate_cast(unsigned v) { return (schar)std:... function schar (line 115) | inline schar saturate_cast(float v) { int iv = cvRound(v... function schar (line 116) | inline schar saturate_cast(double v) { int iv = cvRound(v... function schar (line 117) | inline schar saturate_cast(int64 v) { return (schar)((ui... function schar (line 118) | inline schar saturate_cast(uint64 v) { return (schar)std:... function ushort (line 120) | inline ushort saturate_cast(schar v) { return (ushort)std... function ushort (line 121) | inline ushort saturate_cast(short v) { return (ushort)std... function ushort (line 122) | inline ushort saturate_cast(int v) { return (ushort)((u... function ushort (line 123) | inline ushort saturate_cast(unsigned v) { return (ushort)std... function ushort (line 124) | inline ushort saturate_cast(float v) { int iv = cvRound(v... function ushort (line 125) | inline ushort saturate_cast(double v) { int iv = cvRound(v... function ushort (line 126) | inline ushort saturate_cast(int64 v) { return (ushort)((u... function ushort (line 127) | inline ushort saturate_cast(uint64 v) { return (ushort)std... function uint64 (line 152) | inline uint64 saturate_cast(schar v) { return (uint64)std... function uint64 (line 153) | inline uint64 saturate_cast(short v) { return (uint64)std... function uint64 (line 154) | inline uint64 saturate_cast(int v) { return (uint64)std... function uint64 (line 155) | inline uint64 saturate_cast(int64 v) { return (uint64)std... function int64 (line 157) | inline int64 saturate_cast(uint64 v) { return (int64)std:... function _Tp (line 160) | static inline _Tp saturate_cast(float16_t v) { return saturate_cast<_T... function float16_t (line 164) | inline float16_t saturate_cast(uchar v) { return float16_... function float16_t (line 165) | inline float16_t saturate_cast(schar v) { return float16_... function float16_t (line 166) | inline float16_t saturate_cast(ushort v) { return float16_... function float16_t (line 167) | inline float16_t saturate_cast(short v) { return float16_... function float16_t (line 168) | inline float16_t saturate_cast(unsigned v){ return float16_... function float16_t (line 169) | inline float16_t saturate_cast(int v) { return float16_... function float16_t (line 170) | inline float16_t saturate_cast(uint64 v) { return float16_... function float16_t (line 171) | inline float16_t saturate_cast(int64 v) { return float16_... function float16_t (line 172) | inline float16_t saturate_cast(float v) { return float16_... function float16_t (line 173) | inline float16_t saturate_cast(double v) { return float16_... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/softfloat.hpp type cv (line 48) | namespace cv type softfloat (line 86) | struct softfloat type softdouble (line 87) | struct softdouble function softfloat (line 89) | struct CV_EXPORTS softfloat function softdouble (line 226) | struct CV_EXPORTS softdouble function _Tp (line 406) | static inline _Tp saturate_cast(softfloat a) { return _Tp(a); } function _Tp (line 407) | static inline _Tp saturate_cast(softdouble a) { return _Tp(a); } function uchar (line 409) | inline uchar saturate_cast(softfloat a) { return (uchar)std::m... function uchar (line 410) | inline uchar saturate_cast(softdouble a) { return (uchar)std::m... function schar (line 412) | inline schar saturate_cast(softfloat a) { return (schar)std::m... function schar (line 413) | inline schar saturate_cast(softdouble a) { return (schar)std::m... function ushort (line 415) | inline ushort saturate_cast(softfloat a) { return (ushort)std... function ushort (line 416) | inline ushort saturate_cast(softdouble a) { return (ushort)std... function softfloat (line 437) | inline softfloat min(const softfloat& a, const softfloat& b) { retu... function softdouble (line 438) | inline softdouble min(const softdouble& a, const softdouble& b) { retu... function softfloat (line 440) | inline softfloat max(const softfloat& a, const softfloat& b) { retu... function softdouble (line 441) | inline softdouble max(const softdouble& a, const softdouble& b) { retu... function softfloat (line 444) | inline softfloat abs( softfloat a) { softfloat x; x.v = a.v & ((1U ... function softdouble (line 445) | inline softdouble abs( softdouble a) { softdouble x; x.v = a.v & ((1UL... type cv (line 403) | namespace cv type softfloat (line 86) | struct softfloat type softdouble (line 87) | struct softdouble function softfloat (line 89) | struct CV_EXPORTS softfloat function softdouble (line 226) | struct CV_EXPORTS softdouble function _Tp (line 406) | static inline _Tp saturate_cast(softfloat a) { return _Tp(a); } function _Tp (line 407) | static inline _Tp saturate_cast(softdouble a) { return _Tp(a); } function uchar (line 409) | inline uchar saturate_cast(softfloat a) { return (uchar)std::m... function uchar (line 410) | inline uchar saturate_cast(softdouble a) { return (uchar)std::m... function schar (line 412) | inline schar saturate_cast(softfloat a) { return (schar)std::m... function schar (line 413) | inline schar saturate_cast(softdouble a) { return (schar)std::m... function ushort (line 415) | inline ushort saturate_cast(softfloat a) { return (ushort)std... function ushort (line 416) | inline ushort saturate_cast(softdouble a) { return (ushort)std... function softfloat (line 437) | inline softfloat min(const softfloat& a, const softfloat& b) { retu... function softdouble (line 438) | inline softdouble min(const softdouble& a, const softdouble& b) { retu... function softfloat (line 440) | inline softfloat max(const softfloat& a, const softfloat& b) { retu... function softdouble (line 441) | inline softdouble max(const softdouble& a, const softdouble& b) { retu... function softfloat (line 444) | inline softfloat abs( softfloat a) { softfloat x; x.v = a.v & ((1U ... function softdouble (line 445) | inline softdouble abs( softdouble a) { softdouble x; x.v = a.v & ((1UL... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/sse_utils.hpp function _mm_deinterleave_epi8 (line 56) | inline void _mm_deinterleave_epi8(__m128i & v_r0, __m128i & v_r1, __m128... function _mm_deinterleave_epi8 (line 84) | inline void _mm_deinterleave_epi8(__m128i & v_r0, __m128i & v_r1, __m128... function _mm_deinterleave_epi8 (line 123) | inline void _mm_deinterleave_epi8(__m128i & v_r0, __m128i & v_r1, __m128... function _mm_interleave_epi8 (line 172) | inline void _mm_interleave_epi8(__m128i & v_r0, __m128i & v_r1, __m128i ... function _mm_interleave_epi8 (line 202) | inline void _mm_interleave_epi8(__m128i & v_r0, __m128i & v_r1, __m128i ... function _mm_interleave_epi8 (line 243) | inline void _mm_interleave_epi8(__m128i & v_r0, __m128i & v_r1, __m128i ... function _mm_deinterleave_epi16 (line 294) | inline void _mm_deinterleave_epi16(__m128i & v_r0, __m128i & v_r1, __m12... function _mm_deinterleave_epi16 (line 317) | inline void _mm_deinterleave_epi16(__m128i & v_r0, __m128i & v_r1, __m12... function _mm_deinterleave_epi16 (line 349) | inline void _mm_deinterleave_epi16(__m128i & v_r0, __m128i & v_r1, __m12... function _mm_interleave_epi16 (line 391) | inline void _mm_interleave_epi16(__m128i & v_r0, __m128i & v_r1, __m128i... function _mm_interleave_epi16 (line 416) | inline void _mm_interleave_epi16(__m128i & v_r0, __m128i & v_r1, __m128i... function _mm_interleave_epi16 (line 450) | inline void _mm_interleave_epi16(__m128i & v_r0, __m128i & v_r1, __m128i... function _mm_deinterleave_ps (line 494) | inline void _mm_deinterleave_ps(__m128 & v_r0, __m128 & v_r1, __m128 & v... function _mm_deinterleave_ps (line 512) | inline void _mm_deinterleave_ps(__m128 & v_r0, __m128 & v_r1, __m128 & v... function _mm_deinterleave_ps (line 537) | inline void _mm_deinterleave_ps(__m128 & v_r0, __m128 & v_r1, __m128 & v... function _mm_interleave_ps (line 568) | inline void _mm_interleave_ps(__m128 & v_r0, __m128 & v_r1, __m128 & v_g... function _mm_interleave_ps (line 588) | inline void _mm_interleave_ps(__m128 & v_r0, __m128 & v_r1, __m128 & v_g0, function _mm_interleave_ps (line 615) | inline void _mm_interleave_ps(__m128 & v_r0, __m128 & v_r1, __m128 & v_g... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/traits.hpp type cv (line 49) | namespace cv class DataType (line 112) | class DataType class DataType (line 129) | class DataType class DataType (line 144) | class DataType class DataType (line 159) | class DataType class DataType (line 174) | class DataType class DataType (line 189) | class DataType class DataType (line 204) | class DataType class DataType (line 219) | class DataType class DataType (line 234) | class DataType class DataType (line 249) | class DataType class DataType (line 264) | class DataType class DataDepth (line 284) | class DataDepth class TypeDepth (line 297) | class TypeDepth class TypeDepth (line 305) | class TypeDepth class TypeDepth (line 311) | class TypeDepth class TypeDepth (line 317) | class TypeDepth class TypeDepth (line 323) | class TypeDepth class TypeDepth (line 329) | class TypeDepth class TypeDepth (line 335) | class TypeDepth class TypeDepth (line 341) | class TypeDepth class TypeDepth (line 347) | class TypeDepth type traits (line 357) | namespace traits { type internal (line 359) | namespace internal { type Depth (line 381) | struct Depth type Type (line 385) | struct Type type SafeType (line 390) | struct SafeType {} type SafeType (line 393) | struct SafeType type SafeType (line 397) | struct SafeType type SafeFmt (line 402) | struct SafeFmt {} type SafeFmt (line 405) | struct SafeFmt type SafeFmt (line 409) | struct SafeFmt FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/types.hpp type cv (line 60) | namespace cv class Complex (line 74) | class Complex class DataType< Complex<_Tp> > (line 93) | class DataType< Complex<_Tp> > type traits (line 112) | namespace traits { type Depth< Complex<_Tp> > (line 114) | struct Depth< Complex<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Complex<_Tp> > (line 116) | struct Type< Complex<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Point_<_Tp> > (line 217) | struct Depth< Point_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point_<_Tp> > (line 219) | struct Type< Point_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::... type Depth< Point3_<_Tp> > (line 295) | struct Depth< Point3_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point3_<_Tp> > (line 297) | struct Type< Point3_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Size_<_Tp> > (line 370) | struct Depth< Size_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Size_<_Tp> > (line 372) | struct Type< Size_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< Rect_<_Tp> > (line 485) | struct Depth< Rect_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Rect_<_Tp> > (line 487) | struct Type< Rect_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< RotatedRect > (line 558) | struct Depth< RotatedRect > { enum { value = Depth::value }; } type Type< RotatedRect > (line 560) | struct Type< RotatedRect > { enum { value = CV_MAKETYPE(Depth... type Depth< Range > (line 622) | struct Depth< Range > { enum { value = Depth::value }; } type Type< Range > (line 624) | struct Type< Range > { enum { value = CV_MAKETYPE(Depth::value,... type Depth< Scalar_<_Tp> > (line 692) | struct Depth< Scalar_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Scalar_<_Tp> > (line 694) | struct Type< Scalar_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Moments > (line 976) | struct Depth< Moments > { enum { value = Depth::value }; } type Type< Moments > (line 978) | struct Type< Moments > { enum { value = CV_MAKETYPE(Depth::v... class Point_ (line 157) | class Point_ class DataType< Point_<_Tp> > (line 196) | class DataType< Point_<_Tp> > type traits (line 215) | namespace traits { type Depth< Complex<_Tp> > (line 114) | struct Depth< Complex<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Complex<_Tp> > (line 116) | struct Type< Complex<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Point_<_Tp> > (line 217) | struct Depth< Point_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point_<_Tp> > (line 219) | struct Type< Point_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::... type Depth< Point3_<_Tp> > (line 295) | struct Depth< Point3_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point3_<_Tp> > (line 297) | struct Type< Point3_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Size_<_Tp> > (line 370) | struct Depth< Size_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Size_<_Tp> > (line 372) | struct Type< Size_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< Rect_<_Tp> > (line 485) | struct Depth< Rect_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Rect_<_Tp> > (line 487) | struct Type< Rect_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< RotatedRect > (line 558) | struct Depth< RotatedRect > { enum { value = Depth::value }; } type Type< RotatedRect > (line 560) | struct Type< RotatedRect > { enum { value = CV_MAKETYPE(Depth... type Depth< Range > (line 622) | struct Depth< Range > { enum { value = Depth::value }; } type Type< Range > (line 624) | struct Type< Range > { enum { value = CV_MAKETYPE(Depth::value,... type Depth< Scalar_<_Tp> > (line 692) | struct Depth< Scalar_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Scalar_<_Tp> > (line 694) | struct Type< Scalar_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Moments > (line 976) | struct Depth< Moments > { enum { value = Depth::value }; } type Type< Moments > (line 978) | struct Type< Moments > { enum { value = CV_MAKETYPE(Depth::v... class Point3_ (line 239) | class Point3_ class DataType< Point3_<_Tp> > (line 274) | class DataType< Point3_<_Tp> > type traits (line 293) | namespace traits { type Depth< Complex<_Tp> > (line 114) | struct Depth< Complex<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Complex<_Tp> > (line 116) | struct Type< Complex<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Point_<_Tp> > (line 217) | struct Depth< Point_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point_<_Tp> > (line 219) | struct Type< Point_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::... type Depth< Point3_<_Tp> > (line 295) | struct Depth< Point3_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point3_<_Tp> > (line 297) | struct Type< Point3_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Size_<_Tp> > (line 370) | struct Depth< Size_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Size_<_Tp> > (line 372) | struct Type< Size_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< Rect_<_Tp> > (line 485) | struct Depth< Rect_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Rect_<_Tp> > (line 487) | struct Type< Rect_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< RotatedRect > (line 558) | struct Depth< RotatedRect > { enum { value = Depth::value }; } type Type< RotatedRect > (line 560) | struct Type< RotatedRect > { enum { value = CV_MAKETYPE(Depth... type Depth< Range > (line 622) | struct Depth< Range > { enum { value = Depth::value }; } type Type< Range > (line 624) | struct Type< Range > { enum { value = CV_MAKETYPE(Depth::value,... type Depth< Scalar_<_Tp> > (line 692) | struct Depth< Scalar_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Scalar_<_Tp> > (line 694) | struct Type< Scalar_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Moments > (line 976) | struct Depth< Moments > { enum { value = Depth::value }; } type Type< Moments > (line 978) | struct Type< Moments > { enum { value = CV_MAKETYPE(Depth::v... class Size_ (line 315) | class Size_ class DataType< Size_<_Tp> > (line 349) | class DataType< Size_<_Tp> > type traits (line 368) | namespace traits { type Depth< Complex<_Tp> > (line 114) | struct Depth< Complex<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Complex<_Tp> > (line 116) | struct Type< Complex<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Point_<_Tp> > (line 217) | struct Depth< Point_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point_<_Tp> > (line 219) | struct Type< Point_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::... type Depth< Point3_<_Tp> > (line 295) | struct Depth< Point3_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point3_<_Tp> > (line 297) | struct Type< Point3_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Size_<_Tp> > (line 370) | struct Depth< Size_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Size_<_Tp> > (line 372) | struct Type< Size_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< Rect_<_Tp> > (line 485) | struct Depth< Rect_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Rect_<_Tp> > (line 487) | struct Type< Rect_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< RotatedRect > (line 558) | struct Depth< RotatedRect > { enum { value = Depth::value }; } type Type< RotatedRect > (line 560) | struct Type< RotatedRect > { enum { value = CV_MAKETYPE(Depth... type Depth< Range > (line 622) | struct Depth< Range > { enum { value = Depth::value }; } type Type< Range > (line 624) | struct Type< Range > { enum { value = CV_MAKETYPE(Depth::value,... type Depth< Scalar_<_Tp> > (line 692) | struct Depth< Scalar_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Scalar_<_Tp> > (line 694) | struct Type< Scalar_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Moments > (line 976) | struct Depth< Moments > { enum { value = Depth::value }; } type Type< Moments > (line 978) | struct Type< Moments > { enum { value = CV_MAKETYPE(Depth::v... class Rect_ (line 420) | class Rect_ class DataType< Rect_<_Tp> > (line 464) | class DataType< Rect_<_Tp> > type traits (line 483) | namespace traits { type Depth< Complex<_Tp> > (line 114) | struct Depth< Complex<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Complex<_Tp> > (line 116) | struct Type< Complex<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Point_<_Tp> > (line 217) | struct Depth< Point_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point_<_Tp> > (line 219) | struct Type< Point_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::... type Depth< Point3_<_Tp> > (line 295) | struct Depth< Point3_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point3_<_Tp> > (line 297) | struct Type< Point3_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Size_<_Tp> > (line 370) | struct Depth< Size_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Size_<_Tp> > (line 372) | struct Type< Size_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< Rect_<_Tp> > (line 485) | struct Depth< Rect_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Rect_<_Tp> > (line 487) | struct Type< Rect_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< RotatedRect > (line 558) | struct Depth< RotatedRect > { enum { value = Depth::value }; } type Type< RotatedRect > (line 560) | struct Type< RotatedRect > { enum { value = CV_MAKETYPE(Depth... type Depth< Range > (line 622) | struct Depth< Range > { enum { value = Depth::value }; } type Type< Range > (line 624) | struct Type< Range > { enum { value = CV_MAKETYPE(Depth::value,... type Depth< Scalar_<_Tp> > (line 692) | struct Depth< Scalar_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Scalar_<_Tp> > (line 694) | struct Type< Scalar_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Moments > (line 976) | struct Depth< Moments > { enum { value = Depth::value }; } type Type< Moments > (line 978) | struct Type< Moments > { enum { value = CV_MAKETYPE(Depth::v... function RotatedRect (line 503) | class CV_EXPORTS RotatedRect class DataType< RotatedRect > (line 537) | class DataType< RotatedRect > type traits (line 556) | namespace traits { type Depth< Complex<_Tp> > (line 114) | struct Depth< Complex<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Complex<_Tp> > (line 116) | struct Type< Complex<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Point_<_Tp> > (line 217) | struct Depth< Point_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point_<_Tp> > (line 219) | struct Type< Point_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::... type Depth< Point3_<_Tp> > (line 295) | struct Depth< Point3_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point3_<_Tp> > (line 297) | struct Type< Point3_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Size_<_Tp> > (line 370) | struct Depth< Size_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Size_<_Tp> > (line 372) | struct Type< Size_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< Rect_<_Tp> > (line 485) | struct Depth< Rect_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Rect_<_Tp> > (line 487) | struct Type< Rect_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< RotatedRect > (line 558) | struct Depth< RotatedRect > { enum { value = Depth::value }; } type Type< RotatedRect > (line 560) | struct Type< RotatedRect > { enum { value = CV_MAKETYPE(Depth... type Depth< Range > (line 622) | struct Depth< Range > { enum { value = Depth::value }; } type Type< Range > (line 624) | struct Type< Range > { enum { value = CV_MAKETYPE(Depth::value,... type Depth< Scalar_<_Tp> > (line 692) | struct Depth< Scalar_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Scalar_<_Tp> > (line 694) | struct Type< Scalar_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Moments > (line 976) | struct Depth< Moments > { enum { value = Depth::value }; } type Type< Moments > (line 978) | struct Type< Moments > { enum { value = CV_MAKETYPE(Depth::v... function Range (line 589) | class CV_EXPORTS Range class DataType (line 601) | class DataType type traits (line 620) | namespace traits { type Depth< Complex<_Tp> > (line 114) | struct Depth< Complex<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Complex<_Tp> > (line 116) | struct Type< Complex<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Point_<_Tp> > (line 217) | struct Depth< Point_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point_<_Tp> > (line 219) | struct Type< Point_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::... type Depth< Point3_<_Tp> > (line 295) | struct Depth< Point3_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point3_<_Tp> > (line 297) | struct Type< Point3_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Size_<_Tp> > (line 370) | struct Depth< Size_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Size_<_Tp> > (line 372) | struct Type< Size_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< Rect_<_Tp> > (line 485) | struct Depth< Rect_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Rect_<_Tp> > (line 487) | struct Type< Rect_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< RotatedRect > (line 558) | struct Depth< RotatedRect > { enum { value = Depth::value }; } type Type< RotatedRect > (line 560) | struct Type< RotatedRect > { enum { value = CV_MAKETYPE(Depth... type Depth< Range > (line 622) | struct Depth< Range > { enum { value = Depth::value }; } type Type< Range > (line 624) | struct Type< Range > { enum { value = CV_MAKETYPE(Depth::value,... type Depth< Scalar_<_Tp> > (line 692) | struct Depth< Scalar_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Scalar_<_Tp> > (line 694) | struct Type< Scalar_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Moments > (line 976) | struct Depth< Moments > { enum { value = Depth::value }; } type Type< Moments > (line 978) | struct Type< Moments > { enum { value = CV_MAKETYPE(Depth::v... class Scalar_ (line 636) | class Scalar_ : public Vec<_Tp, 4> class DataType< Scalar_<_Tp> > (line 671) | class DataType< Scalar_<_Tp> > type traits (line 690) | namespace traits { type Depth< Complex<_Tp> > (line 114) | struct Depth< Complex<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Complex<_Tp> > (line 116) | struct Type< Complex<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Point_<_Tp> > (line 217) | struct Depth< Point_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point_<_Tp> > (line 219) | struct Type< Point_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::... type Depth< Point3_<_Tp> > (line 295) | struct Depth< Point3_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point3_<_Tp> > (line 297) | struct Type< Point3_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Size_<_Tp> > (line 370) | struct Depth< Size_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Size_<_Tp> > (line 372) | struct Type< Size_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< Rect_<_Tp> > (line 485) | struct Depth< Rect_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Rect_<_Tp> > (line 487) | struct Type< Rect_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< RotatedRect > (line 558) | struct Depth< RotatedRect > { enum { value = Depth::value }; } type Type< RotatedRect > (line 560) | struct Type< RotatedRect > { enum { value = CV_MAKETYPE(Depth... type Depth< Range > (line 622) | struct Depth< Range > { enum { value = Depth::value }; } type Type< Range > (line 624) | struct Type< Range > { enum { value = CV_MAKETYPE(Depth::value,... type Depth< Scalar_<_Tp> > (line 692) | struct Depth< Scalar_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Scalar_<_Tp> > (line 694) | struct Type< Scalar_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Moments > (line 976) | struct Depth< Moments > { enum { value = Depth::value }; } type Type< Moments > (line 978) | struct Type< Moments > { enum { value = CV_MAKETYPE(Depth::v... function KeyPoint (line 711) | class CV_EXPORTS_W_SIMPLE KeyPoint class DataType (line 782) | class DataType function DMatch (line 808) | class CV_EXPORTS_W_SIMPLE DMatch class DataType (line 826) | class DataType function TermCriteria (line 852) | class CV_EXPORTS TermCriteria function Moments (line 926) | class CV_EXPORTS_W_MAP Moments class DataType (line 955) | class DataType type traits (line 974) | namespace traits { type Depth< Complex<_Tp> > (line 114) | struct Depth< Complex<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Complex<_Tp> > (line 116) | struct Type< Complex<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Point_<_Tp> > (line 217) | struct Depth< Point_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point_<_Tp> > (line 219) | struct Type< Point_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::... type Depth< Point3_<_Tp> > (line 295) | struct Depth< Point3_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Point3_<_Tp> > (line 297) | struct Type< Point3_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Size_<_Tp> > (line 370) | struct Depth< Size_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Size_<_Tp> > (line 372) | struct Type< Size_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< Rect_<_Tp> > (line 485) | struct Depth< Rect_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Rect_<_Tp> > (line 487) | struct Type< Rect_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>::v... type Depth< RotatedRect > (line 558) | struct Depth< RotatedRect > { enum { value = Depth::value }; } type Type< RotatedRect > (line 560) | struct Type< RotatedRect > { enum { value = CV_MAKETYPE(Depth... type Depth< Range > (line 622) | struct Depth< Range > { enum { value = Depth::value }; } type Type< Range > (line 624) | struct Type< Range > { enum { value = CV_MAKETYPE(Depth::value,... type Depth< Scalar_<_Tp> > (line 692) | struct Depth< Scalar_<_Tp> > { enum { value = Depth<_Tp>::value }; } type Type< Scalar_<_Tp> > (line 694) | struct Type< Scalar_<_Tp> > { enum { value = CV_MAKETYPE(Depth<_Tp>:... type Depth< Moments > (line 976) | struct Depth< Moments > { enum { value = Depth::value }; } type Type< Moments > (line 978) | struct Type< Moments > { enum { value = CV_MAKETYPE(Depth::v... function abs (line 1114) | static inline function _Tp (line 1209) | inline function norm (line 1298) | static inline function int64 (line 1415) | inline int64 normL2Sqr(const Point_& pt) { return pt.dot... function _Tp (line 1476) | inline function norm (line 1567) | static inline function _Tp (line 1720) | inline function _Tp (line 1889) | inline function jaccardDistance (line 2042) | static inline function Range (line 2089) | inline function Range (line 2114) | static inline function Range (line 2122) | static inline function Range (line 2129) | static inline function Range (line 2135) | static inline function Range (line 2141) | static inline function Scalar (line 2408) | static inline function Scalar (line 2415) | inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/types_c.h type CvArr (line 139) | typedef void CvArr; type CVStatus (line 141) | typedef int CVStatus; type uint64 (line 228) | typedef uint64 CvRNG; function CV_INLINE (line 240) | CV_INLINE CvRNG cvRNG( int64 seed CV_DEFAULT(-1)) function cvRandInt (line 253) | CV_INLINE unsigned cvRandInt( CvRNG* rng ) function CV_INLINE (line 267) | CV_INLINE double cvRandReal( CvRNG* rng ) type IplImage (line 314) | typedef struct _IplImage IplImage; type IplImage (line 326) | typedef struct function CV_INLINE (line 371) | CV_INLINE IplImage cvIplImage() type IplTileInfo (line 380) | typedef struct _IplTileInfo IplTileInfo; type IplROI (line 382) | typedef struct _IplROI type IplConvKernel (line 392) | typedef struct _IplConvKernel type IplConvKernelFP (line 403) | typedef struct _IplConvKernelFP type CvMat (line 453) | typedef struct CvMat CvMat; type CvSet (line 744) | struct CvSet type CvSet (line 753) | struct CvSet type CvSparseNode (line 782) | struct CvSparseNode type CvPoint3D32f (line 1062) | struct CvPoint3D32f type CvPoint3D64f (line 1143) | struct CvPoint3D64f type CvSize (line 1173) | struct CvSize type CvMemBlock (line 1488) | struct CvMemBlock type CvMemStorage (line 1502) | struct CvMemStorage type CvSeqBlock (line 1525) | struct CvSeqBlock type CvSeqBlock (line 1526) | struct CvSeqBlock type node_type (line 1538) | struct node_type type node_type (line 1539) | struct node_type type node_type (line 1540) | struct node_type type node_type (line 1541) | struct node_type type CvAttrList (line 1996) | struct CvAttrList type CvTypeInfo (line 2011) | struct CvTypeInfo type CvStringHashNode (line 2060) | struct CvStringHashNode type CvTypeInfo (line 2070) | struct CvTypeInfo type CvTypeInfo (line 2110) | struct CvTypeInfo type CvTypeInfo (line 2111) | struct CvTypeInfo FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/utility.hpp type cv (line 65) | namespace cv class AutoBuffer (line 98) | class AutoBuffer method _Tp (line 128) | inline _Tp* data() { return ptr; } method _Tp (line 130) | inline const _Tp* data() const { return ptr; } method _Tp (line 139) | inline _Tp& operator[] (size_t i) { CV_DbgCheckLT(i, sz, "out of ran... method _Tp (line 141) | inline const _Tp& operator[] (size_t i) const { CV_DbgCheckLT(i, sz,... class AutoBuffer (line 100) | class AutoBuffer method _Tp (line 128) | inline _Tp* data() { return ptr; } method _Tp (line 130) | inline const _Tp* data() const { return ptr; } method _Tp (line 139) | inline _Tp& operator[] (size_t i) { CV_DbgCheckLT(i, sz, "out of ran... method _Tp (line 141) | inline const _Tp& operator[] (size_t i) const { CV_DbgCheckLT(i, sz,... function TickMeter (line 294) | class CV_EXPORTS_W TickMeter function CV_WRAP (line 304) | CV_WRAP void start() function CV_WRAP (line 310) | CV_WRAP void stop() function CV_WRAP (line 321) | CV_WRAP int64 getTimeTicks() const function CV_WRAP (line 327) | CV_WRAP double getTimeMicro() const function CV_WRAP (line 333) | CV_WRAP double getTimeMilli() const function CV_WRAP (line 339) | CV_WRAP double getTimeSec() const function CV_WRAP (line 345) | CV_WRAP int64 getCounter() const function CV_WRAP (line 351) | CV_WRAP double getFPS() const function CV_WRAP (line 360) | CV_WRAP double getAvgTimeSec() const function CV_WRAP (line 368) | CV_WRAP double getAvgTimeMilli() const function CV_WRAP (line 374) | CV_WRAP void reset() function _Tp (line 457) | static inline _Tp* alignPtr(_Tp* ptr, int n=(int)sizeof(_Tp)) function alignSize (line 470) | static inline size_t alignSize(size_t sz, int n) function divUp (line 482) | static inline int divUp(int a, unsigned int b) function divUp (line 488) | static inline size_t divUp(size_t a, unsigned int b) function roundUp (line 499) | static inline int roundUp(int a, unsigned int b) function roundUp (line 505) | static inline size_t roundUp(size_t a, unsigned int b) function isAligned (line 516) | static inline function isAligned (line 523) | static inline function isAligned (line 529) | static inline function isAligned (line 535) | static inline function isAligned (line 541) | static inline function getElemSize (line 568) | static inline size_t getElemSize(int type) { return (size_t)CV_ELEM_SI... function ParallelLoopBody (line 576) | class CV_EXPORTS ParallelLoopBody class ParallelLoopBodyLambdaWrapper (line 590) | class ParallelLoopBodyLambdaWrapper : public ParallelLoopBody method ParallelLoopBodyLambdaWrapper (line 595) | inline function parallel_for_ (line 609) | static inline class PixelOperationWrapper (line 631) | class PixelOperationWrapper :public ParallelLoopBody method PixelOperationWrapper (line 634) | PixelOperationWrapper(Mat_<_Tp>* const frame, const Functor& _operat... method rowCall (line 671) | inline void rowCall(int* const idx, const int COLS, const int DIMS) ... method rowCall2 (line 683) | inline void rowCall2(const int row, const int COLS) const { method PixelOperationWrapper (line 704) | PixelOperationWrapper& operator=(const PixelOperationWrapper &) { function CommandLineParser (line 799) | class CV_EXPORTS CommandLineParser function Node (line 1054) | class CV_EXPORTS Node type samples (line 1131) | namespace samples { function findFileOrKeep (line 1167) | inline cv::String findFileOrKeep(const cv::String& relative_path, bo... type utils (line 1196) | namespace utils { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/utils/allocator_stats.hpp type cv (line 10) | namespace cv { namespace utils { type utils (line 10) | namespace utils { class AllocatorStatisticsInterface (line 12) | class AllocatorStatisticsInterface method AllocatorStatisticsInterface (line 15) | AllocatorStatisticsInterface() {} FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/utils/allocator_stats.impl.hpp type cv (line 37) | namespace cv { namespace utils { type utils (line 37) | namespace utils { class AllocatorStatistics (line 43) | class AllocatorStatistics : public AllocatorStatisticsInterface method AllocatorStatistics (line 48) | AllocatorStatistics() {} method getCurrentUsage (line 51) | uint64_t getCurrentUsage() const CV_OVERRIDE { return 0; } method getTotalUsage (line 52) | uint64_t getTotalUsage() const CV_OVERRIDE { return 0; } method getNumberOfAllocations (line 53) | uint64_t getNumberOfAllocations() const CV_OVERRIDE { return 0; } method getPeakUsage (line 54) | uint64_t getPeakUsage() const CV_OVERRIDE { return 0; } method onAllocate (line 59) | void onAllocate(size_t /*sz*/) {} method onFree (line 60) | void onFree(size_t /*sz*/) {} method AllocatorStatistics (line 68) | AllocatorStatistics() {} method getCurrentUsage (line 71) | uint64_t getCurrentUsage() const CV_OVERRIDE { return (uint64_t)cu... method getTotalUsage (line 72) | uint64_t getTotalUsage() const CV_OVERRIDE { return (uint64_t)tota... method getNumberOfAllocations (line 73) | uint64_t getNumberOfAllocations() const CV_OVERRIDE { return (uint... method getPeakUsage (line 74) | uint64_t getPeakUsage() const CV_OVERRIDE { return (uint64_t)peak.... method resetPeakUsage (line 77) | void resetPeakUsage() CV_OVERRIDE { peak.store(curr.load()); } method onAllocate (line 80) | void onAllocate(size_t sz) method onFree (line 100) | void onFree(size_t sz) method AllocatorStatistics (line 114) | AllocatorStatistics() method getCurrentUsage (line 119) | uint64_t getCurrentUsage() const CV_OVERRIDE { return (uint64_t)cu... method getTotalUsage (line 120) | uint64_t getTotalUsage() const CV_OVERRIDE { return (uint64_t)tota... method getNumberOfAllocations (line 121) | uint64_t getNumberOfAllocations() const CV_OVERRIDE { return (uint... method getPeakUsage (line 122) | uint64_t getPeakUsage() const CV_OVERRIDE { return (uint64_t)peak; } method resetPeakUsage (line 124) | void resetPeakUsage() CV_OVERRIDE { peak = curr; } method onAllocate (line 127) | void onAllocate(size_t sz) method onFree (line 142) | void onFree(size_t sz) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/utils/filesystem.hpp type cv (line 8) | namespace cv { namespace utils { namespace fs { type utils (line 8) | namespace utils { namespace fs { type fs (line 8) | namespace fs { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/utils/instrumentation.hpp type cv (line 11) | namespace cv { type instr (line 40) | namespace instr type TYPE (line 45) | enum TYPE type IMPL (line 53) | enum IMPL type NodeDataTls (line 60) | struct NodeDataTls method NodeDataTls (line 62) | NodeDataTls() function NodeData (line 69) | class CV_EXPORTS NodeData type FLAGS (line 108) | enum FLAGS function setFlags (line 116) | static inline void setFlags(int modeFlags) { setFlags((FLAGS)mode... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/utils/logger.defines.hpp type cv (line 20) | namespace cv { type utils (line 21) | namespace utils { type logging (line 22) | namespace logging { type LogLevel (line 25) | enum LogLevel { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/utils/logger.hpp type cv (line 15) | namespace cv { type utils (line 16) | namespace utils { type logging (line 17) | namespace logging { type internal (line 35) | namespace internal { type LogTagAuto (line 48) | struct LogTagAuto method LogTagAuto (line 51) | inline LogTagAuto(const char* _name, LogLevel _level) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/utils/logtag.hpp type cv (line 11) | namespace cv { type utils (line 12) | namespace utils { type logging (line 13) | namespace logging { type LogTag (line 15) | struct LogTag method LogTag (line 20) | inline LogTag(const char* _name, LogLevel _level) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/utils/tls.hpp type cv (line 12) | namespace cv { type details (line 17) | namespace details { class TlsStorage; } class TlsStorage (line 17) | class TlsStorage function TLSDataContainer (line 25) | class CV_EXPORTS TLSDataContainer class TLSData (line 63) | class TLSData : protected TLSDataContainer method TLSData (line 66) | inline TLSData() {} method T (line 69) | inline T* get() const { return (T*)getData(); } method T (line 70) | inline T& getRef() const { T* ptr = (T*)getData(); CV_DbgAssert(ptr)... method cleanup (line 73) | inline void cleanup() method deleteDataInstance (line 82) | virtual void deleteDataInstance(void* pData) const CV_OVERRIDE { de... class TLSDataAccumulator (line 88) | class TLSDataAccumulator : public TLSData method TLSDataAccumulator (line 95) | TLSDataAccumulator() : cleanupMode(false) {} method gather (line 108) | void gather(std::vector &data) const method cleanupDetachedData (line 157) | void cleanupDetachedData() method cleanup (line 166) | void cleanup() method release (line 178) | void release() method _cleanupDetachedData (line 191) | void _cleanupDetachedData() method _cleanupTerminatedData (line 201) | void _cleanupTerminatedData() method deleteDataInstance (line 216) | virtual void deleteDataInstance(void* pData) const CV_OVERRIDE FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/utils/trace.hpp type cv (line 10) | namespace cv { type utils (line 11) | namespace utils { type trace (line 12) | namespace trace { type details (line 42) | namespace details { function Region (line 67) | class CV_EXPORTS Region type RegionLocationFlag (line 102) | enum RegionLocationFlag { function TraceArg (line 119) | struct CV_EXPORTS TraceArg { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/va_intel.hpp type cv (line 27) | namespace cv { namespace va_intel { type va_intel (line 27) | namespace va_intel { type ocl (line 42) | namespace ocl { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/core/vsx_utils.hpp function vec_nor (line 219) | vec_nor(const vec_bdword2& a, const vec_bdword2& b) function vec_rsqrt (line 362) | vec_rsqrt(const vec_float4& a) function vec_rsqrt (line 365) | vec_rsqrt(const vec_double2& a) function vec_promote (line 370) | vec_promote(long long a, int b) function vec_promote (line 377) | vec_promote(unsigned long long a, int b) function vec_ctslo (line 441) | vec_ctslo(const vec_float4& a) function vec_ctulo (line 450) | vec_ctulo(const vec_float4& a) function vec_splats (line 586) | vec_splats(uint64 v) function vec_splats (line 589) | vec_splats(int64 v) function vec_promote (line 592) | vec_promote(uint64 a, int b) function vec_promote (line 595) | vec_promote(int64 a, int b) function vsx_ld2 (line 630) | vsx_ld2(long o, const uint64* p) function vsx_ld2 (line 633) | vsx_ld2(long o, const int64* p) function vsx_st2 (line 636) | vsx_st2(const vec_udword2& vec, long o, uint64* p) function vsx_st2 (line 639) | vsx_st2(const vec_dword2& vec, long o, int64* p) function vsx_ld2 (line 642) | vsx_ld2(long o, const uint64* p) function vsx_ld2 (line 645) | vsx_ld2(long o, const int64* p) function vsx_st2 (line 648) | vsx_st2(const vec_udword2& vec, long o, uint64* p) function vsx_st2 (line 651) | vsx_st2(const vec_dword2& vec, long o, int64* p) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/dnn/all_layers.hpp type cv (line 46) | namespace cv { type dnn (line 47) | namespace dnn { function CV__DNN_INLINE_NS_BEGIN (line 48) | CV__DNN_INLINE_NS_BEGIN function ConstLayer (line 83) | class CV_EXPORTS ConstLayer : public Layer function LSTMLayer (line 90) | class CV_EXPORTS LSTMLayer : public Layer function RNNLayer (line 181) | class CV_EXPORTS RNNLayer : public Layer function BaseConvolutionLayer (line 210) | class CV_EXPORTS BaseConvolutionLayer : public Layer function BaseConvolutionLayer (line 221) | class CV_EXPORTS ConvolutionLayer : public BaseConvolutionLayer function BaseConvolutionLayer (line 227) | class CV_EXPORTS DeconvolutionLayer : public BaseConvolutionLayer function LRNLayer (line 233) | class CV_EXPORTS LRNLayer : public Layer function PoolingLayer (line 245) | class CV_EXPORTS PoolingLayer : public Layer function SoftmaxLayer (line 269) | class CV_EXPORTS SoftmaxLayer : public Layer function InnerProductLayer (line 277) | class CV_EXPORTS InnerProductLayer : public Layer function MVNLayer (line 284) | class CV_EXPORTS MVNLayer : public Layer function ReshapeLayer (line 295) | class CV_EXPORTS ReshapeLayer : public Layer function FlattenLayer (line 304) | class CV_EXPORTS FlattenLayer : public Layer function ConcatLayer (line 310) | class CV_EXPORTS ConcatLayer : public Layer function SplitLayer (line 325) | class CV_EXPORTS SplitLayer : public Layer function SliceLayer (line 357) | class CV_EXPORTS SliceLayer : public Layer function PermuteLayer (line 374) | class CV_EXPORTS PermuteLayer : public Layer function ShuffleChannelLayer (line 389) | class CV_EXPORTS ShuffleChannelLayer : public Layer function PaddingLayer (line 417) | class CV_EXPORTS PaddingLayer : public Layer function ActivationLayer (line 424) | class CV_EXPORTS ActivationLayer : public Layer function ActivationLayer (line 431) | class CV_EXPORTS ReLULayer : public ActivationLayer function ActivationLayer (line 439) | class CV_EXPORTS ReLU6Layer : public ActivationLayer function ChannelsPReLULayer (line 447) | class CV_EXPORTS ChannelsPReLULayer : public ActivationLayer function ActivationLayer (line 453) | class CV_EXPORTS ELULayer : public ActivationLayer function ActivationLayer (line 459) | class CV_EXPORTS TanHLayer : public ActivationLayer function ActivationLayer (line 465) | class CV_EXPORTS SwishLayer : public ActivationLayer function ActivationLayer (line 471) | class CV_EXPORTS MishLayer : public ActivationLayer function ActivationLayer (line 477) | class CV_EXPORTS SigmoidLayer : public ActivationLayer function ActivationLayer (line 483) | class CV_EXPORTS BNLLLayer : public ActivationLayer function ActivationLayer (line 489) | class CV_EXPORTS AbsLayer : public ActivationLayer function ActivationLayer (line 495) | class CV_EXPORTS PowerLayer : public ActivationLayer function ActivationLayer (line 503) | class CV_EXPORTS ExpLayer : public ActivationLayer function CropLayer (line 513) | class CV_EXPORTS CropLayer : public Layer function EltwiseLayer (line 526) | class CV_EXPORTS EltwiseLayer : public Layer function ActivationLayer (line 532) | class CV_EXPORTS BatchNormLayer : public ActivationLayer function MaxUnpoolLayer (line 541) | class CV_EXPORTS MaxUnpoolLayer : public Layer function ScaleLayer (line 551) | class CV_EXPORTS ScaleLayer : public Layer function ShiftLayer (line 560) | class CV_EXPORTS ShiftLayer : public Layer function DataAugmentationLayer (line 566) | class CV_EXPORTS DataAugmentationLayer : public Layer function CorrelationLayer (line 572) | class CV_EXPORTS CorrelationLayer : public Layer function AccumLayer (line 578) | class CV_EXPORTS AccumLayer : public Layer function FlowWarpLayer (line 584) | class CV_EXPORTS FlowWarpLayer : public Layer function PriorBoxLayer (line 590) | class CV_EXPORTS PriorBoxLayer : public Layer function ReorgLayer (line 596) | class CV_EXPORTS ReorgLayer : public Layer function RegionLayer (line 602) | class CV_EXPORTS RegionLayer : public Layer function DetectionOutputLayer (line 618) | class CV_EXPORTS DetectionOutputLayer : public Layer function NormalizeBBoxLayer (line 649) | class CV_EXPORTS NormalizeBBoxLayer : public Layer function ResizeLayer (line 663) | class CV_EXPORTS ResizeLayer : public Layer function InterpLayer (line 674) | class CV_EXPORTS InterpLayer : public Layer function ProposalLayer (line 680) | class CV_EXPORTS ProposalLayer : public Layer function CropAndResizeLayer (line 686) | class CV_EXPORTS CropAndResizeLayer : public Layer FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/dnn/dict.hpp type cv (line 51) | namespace cv { type dnn (line 52) | namespace dnn { function CV__DNN_INLINE_NS_BEGIN (line 53) | CV__DNN_INLINE_NS_BEGIN function Dict (line 114) | class CV_EXPORTS Dict FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/dnn/dnn.hpp type cv (line 53) | namespace cv { type dnn (line 54) | namespace dnn { type Backend (line 65) | enum Backend type Target (line 87) | enum Target function LayerParams (line 120) | class CV_EXPORTS LayerParams : public Dict class BackendNode (line 133) | class BackendNode class BackendWrapper (line 146) | class BackendWrapper class CV_EXPORTS (line 188) | class CV_EXPORTS function Algorithm (line 195) | class CV_EXPORTS_W Layer : public Algorithm function Net (line 406) | class CV_EXPORTS_W_SIMPLE Net function Model (line 1094) | class CV_EXPORTS_W_SIMPLE Model function ClassificationModel (line 1201) | class CV_EXPORTS_W_SIMPLE ClassificationModel : public Model function KeypointsModel (line 1233) | class CV_EXPORTS_W_SIMPLE KeypointsModel: public Model function SegmentationModel (line 1265) | class CV_EXPORTS_W_SIMPLE SegmentationModel: public Model function DetectionModel (line 1296) | class CV_EXPORTS_W_SIMPLE DetectionModel : public Model function TextRecognitionModel (line 1351) | class CV_EXPORTS_W_SIMPLE TextRecognitionModel : public Model function TextDetectionModel (line 1423) | class CV_EXPORTS_W_SIMPLE TextDetectionModel : public Model function TextDetectionModel_EAST (line 1496) | class CV_EXPORTS_W_SIMPLE TextDetectionModel_EAST : public TextDetec... function TextDetectionModel_DB (line 1557) | class CV_EXPORTS_W_SIMPLE TextDetectionModel_DB : public TextDetecti... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/dnn/dnn.inl.hpp type cv (line 47) | namespace cv { type dnn (line 48) | namespace dnn { function DictValue (line 61) | DictValue DictValue::arrayReal(TypeIter begin, int size) function DictValue (line 70) | DictValue DictValue::arrayString(TypeIter begin, int size) function DictValue (line 79) | inline DictValue DictValue::get(int idx) const function int64 (line 86) | inline int64 DictValue::get(int idx) const function String (line 176) | inline String DictValue::get(int idx) const function String (line 184) | inline String DictValue::getStringValue(int idx) const function DictValue (line 220) | inline DictValue & DictValue::operator=(const DictValue &r) function DictValue (line 334) | inline DictValue *Dict::ptr(const String &key) function DictValue (line 340) | inline const DictValue *Dict::ptr(const String &key) const function DictValue (line 346) | inline const DictValue &Dict::get(const String &key) const function T (line 355) | inline T Dict::get(const String &key) const function T (line 361) | inline T Dict::get(const String &key, const T &defaultValue) const function T (line 372) | inline const T &Dict::set(const String &key, const T &value) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/dnn/layer.details.hpp type cv (line 10) | namespace cv { type dnn (line 11) | namespace dnn { type details (line 48) | namespace details { function _layerDynamicRegisterer (line 51) | Ptr _layerDynamicRegisterer(LayerParams ¶ms) class _LayerStaticRegisterer (line 57) | class _LayerStaticRegisterer method _LayerStaticRegisterer (line 62) | _LayerStaticRegisterer(const String &layerType, LayerFactory::Co... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/dnn/layer.hpp type cv (line 46) | namespace cv { type dnn (line 47) | namespace dnn { function CV__DNN_INLINE_NS_BEGIN (line 48) | CV__DNN_INLINE_NS_BEGIN FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/dnn/shape_utils.hpp type cv (line 51) | namespace cv { type dnn (line 52) | namespace dnn { function CV__DNN_INLINE_NS_BEGIN (line 53) | CV__DNN_INLINE_NS_BEGIN function Mat (line 63) | static inline Mat slice(const Mat &m, const _Range &r0) function Mat (line 72) | static inline Mat slice(const Mat &m, const _Range &r0, const _Range... function Mat (line 83) | static inline Mat slice(const Mat &m, const _Range &r0, const _Range... function Mat (line 95) | static inline Mat slice(const Mat &m, const _Range &r0, const _Range... function Mat (line 108) | static inline Mat getPlane(const Mat &m, int n, int cn) function MatShape (line 119) | static inline MatShape shape(const int* dims, const int n) function MatShape (line 126) | static inline MatShape shape(const Mat& mat) function MatShape (line 131) | static inline MatShape shape(const MatSize& sz) function MatShape (line 136) | static inline MatShape shape(const UMat& mat) function MatShape (line 142) | static inline function is_neg (line 151) | inline bool is_neg(int i) { return i < 0; } function MatShape (line 153) | static inline MatShape shape(int a0, int a1=-1, int a2=-1, int a3=-1) function total (line 161) | static inline int total(const MatShape& shape, int start = -1, int e... function MatShape (line 179) | static inline MatShape concat(const MatShape& a, const MatShape& b) function toString (line 187) | static inline std::string toString(const MatShape& shape, const Stri... function print (line 198) | static inline void print(const MatShape& shape, const String& name =... function normalize_axis (line 209) | static inline function normalize_axis (line 218) | static inline function Range (line 224) | static inline function isAllOnes (line 238) | static inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/dnn/utils/inference_engine.hpp type cv (line 13) | namespace cv { namespace dnn { type dnn (line 13) | namespace dnn { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/dnn/version.hpp type cv (line 15) | namespace cv { namespace dnn { namespace CV__DNN_INLINE_NS { } using nam... type dnn (line 15) | namespace dnn { namespace CV__DNN_INLINE_NS { } using namespace CV__DN... type CV__DNN_INLINE_NS (line 15) | namespace CV__DNN_INLINE_NS { } FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/features2d.hpp type cv (line 76) | namespace cv function KeyPointsFilter (line 92) | class CV_EXPORTS KeyPointsFilter class CV_EXPORTS_W (line 131) | class CV_EXPORTS_W function Feature2D (line 133) | class CV_EXPORTS_W Feature2D : public virtual Algorithm function AffineFeature (line 234) | class CV_EXPORTS_W AffineFeature : public Feature2D function Feature2D (line 259) | class CV_EXPORTS_W SIFT : public Feature2D function Feature2D (line 323) | class CV_EXPORTS_W BRISK : public Feature2D function Feature2D (line 387) | class CV_EXPORTS_W ORB : public Feature2D function Feature2D (line 471) | class CV_EXPORTS_W MSER : public Feature2D function FastFeatureDetector (line 522) | class CV_EXPORTS_W FastFeatureDetector : public Feature2D function AgastFeatureDetector (line 582) | class CV_EXPORTS_W AgastFeatureDetector : public Feature2D function GFTTDetector (line 637) | class CV_EXPORTS_W GFTTDetector : public Feature2D function SimpleBlobDetector (line 695) | class CV_EXPORTS_W SimpleBlobDetector : public Feature2D function Feature2D (line 742) | class CV_EXPORTS_W KAZE : public Feature2D function Feature2D (line 804) | class CV_EXPORTS_W AKAZE : public Feature2D function Accumulator (line 863) | struct CV_EXPORTS Accumulator type Accumulator (line 868) | struct Accumulator { typedef float Type; } type Accumulator (line 869) | struct Accumulator { typedef float Type; } type Accumulator (line 870) | struct Accumulator { typedef float Type; } type Accumulator (line 871) | struct Accumulator { typedef float Type; } function SL2 (line 877) | struct CV_EXPORTS SL2 type L2 (line 893) | struct L2 method ResultType (line 899) | ResultType operator()( const T* a, const T* b, int size ) const type L1 (line 909) | struct L1 method ResultType (line 915) | ResultType operator()( const T* a, const T* b, int size ) const function DescriptorMatcher (line 933) | class CV_EXPORTS_W DescriptorMatcher : public Algorithm function Mat (line 1168) | static Mat clone_op( Mat m ) { return m.clone(); } function DescriptorMatcher (line 1182) | class CV_EXPORTS_W BFMatcher : public DescriptorMatcher function FlannBasedMatcher (line 1229) | class CV_EXPORTS_W FlannBasedMatcher : public DescriptorMatcher type DrawMatchesFlags (line 1278) | enum struct DrawMatchesFlags function BOWTrainer (line 1383) | class CV_EXPORTS_W BOWTrainer function BOWKMeansTrainer (line 1429) | class CV_EXPORTS_W BOWKMeansTrainer : public BOWTrainer function BOWImgDescriptorExtractor (line 1462) | class CV_EXPORTS_W BOWImgDescriptorExtractor FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/features2d/hal/interface.h function cvhalKeyPoint (line 19) | struct CV_EXPORTS cvhalKeyPoint FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann.hpp type cvflann (line 59) | namespace cvflann type cv (line 66) | namespace cv type flann (line 68) | namespace flann type CvType (line 75) | struct CvType {} type CvType (line 76) | struct CvType { static int type() { return CV_8U; } } method type (line 76) | static int type() { return CV_8U; } type CvType (line 77) | struct CvType { static int type() { return CV_8S; } } method type (line 77) | static int type() { return CV_8S; } type CvType (line 78) | struct CvType { static int type() { return CV_16U; } } method type (line 78) | static int type() { return CV_16U; } type CvType (line 79) | struct CvType { static int type() { return CV_16S; } } method type (line 79) | static int type() { return CV_16S; } type CvType (line 80) | struct CvType { static int type() { return CV_32S; } } method type (line 80) | static int type() { return CV_32S; } type CvType (line 81) | struct CvType { static int type() { return CV_32F; } } method type (line 81) | static int type() { return CV_32F; } type CvType (line 82) | struct CvType { static int type() { return CV_64F; } } method type (line 82) | static int type() { return CV_64F; } class GenericIndex (line 170) | class GenericIndex method save (line 320) | void save(String filename) { nnIndex->save(filename); } method veclen (line 322) | int veclen() const { return nnIndex->veclen(); } method size (line 324) | int size() const { return (int)nnIndex->size(); } method getParameters (line 326) | ::cvflann::IndexParams getParameters() { return nnIndex->getParame... class Index_ (line 436) | class Index_ method CV_DEPRECATED (line 442) | CV_DEPRECATED Index_(const Mat& dataset, const ::cvflann::IndexPar... method CV_DEPRECATED (line 466) | CV_DEPRECATED ~Index_() method CV_DEPRECATED (line 472) | CV_DEPRECATED void knnSearch(const std::vector& query... method CV_DEPRECATED (line 481) | CV_DEPRECATED void knnSearch(const Mat& queries, Mat& indices, Mat... method CV_DEPRECATED (line 499) | CV_DEPRECATED int radiusSearch(const std::vector& que... method CV_DEPRECATED (line 509) | CV_DEPRECATED int radiusSearch(const Mat& query, Mat& indices, Mat... method CV_DEPRECATED (line 527) | CV_DEPRECATED void save(String filename) method CV_DEPRECATED (line 533) | CV_DEPRECATED int veclen() const method CV_DEPRECATED (line 539) | CV_DEPRECATED int size() const method getParameters (line 545) | CV_DEPRECATED ::cvflann::IndexParams getParameters() function hierarchicalClustering (line 584) | int hierarchicalClustering(const Mat& features, Mat& centers, const ... function CV_DEPRECATED (line 604) | CV_DEPRECATED int hierarchicalClustering(const Mat& features, Mat& c... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/all_indices.h function namespace (line 48) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/allocator.h function namespace (line 40) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/any.h function namespace (line 22) | namespace cvflann type any (line 132) | struct any function any (line 137) | struct choose_policy function any (line 182) | struct any function reset (line 295) | void reset() function compatible (line 302) | bool compatible(const any& x) const FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/autotuned_index.h function namespace (line 48) | namespace cvflann type typename (line 77) | typedef typename Distance::ResultType DistanceType; function virtual (line 104) | virtual void buildIndex() CV_OVERRIDE function virtual (line 128) | virtual void saveIndex(FILE* stream) CV_OVERRIDE function virtual (line 138) | virtual void loadIndex(FILE* stream) CV_OVERRIDE type CostData (line 217) | struct CostData function evaluate_kmeans (line 226) | void evaluate_kmeans(CostData& cost) function evaluate_kdtree (line 253) | void evaluate_kdtree(CostData& cost) function optimizeKMeans (line 326) | void optimizeKMeans(std::vector& costs) function optimizeKDTree (line 374) | void optimizeKDTree(std::vector& costs) function IndexParams (line 416) | IndexParams estimateBuildParams() function estimateSearchParams (line 494) | float estimateSearchParams(SearchParams& searchParams) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/composite_index.h function namespace (line 40) | namespace cvflann type typename (line 76) | typedef typename Distance::ResultType DistanceType; function index_params_ (line 86) | index_params_(params) function buildIndex (line 137) | void buildIndex() CV_OVERRIDE function saveIndex (line 149) | void saveIndex(FILE* stream) CV_OVERRIDE function loadIndex (line 159) | void loadIndex(FILE* stream) CV_OVERRIDE function findNeighbors (line 176) | void findNeighbors(ResultSet& result, const ElementType* v... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/defines.h function namespace (line 67) | namespace cvflann { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/dist.h function namespace (line 56) | namespace cvflann function ResultType (line 521) | ResultType operator()(const unsigned char* a, const ZeroIterator::Type ResultType; type ResultType (line 910) | typedef ResultType CentersType; function ResultType (line 950) | ResultType accum_dist(const U& a, const V& b, int) const type True (line 961) | typedef True is_kdtree_distance; type True (line 962) | typedef True is_vector_space_distance; type T (line 964) | typedef T ElementType; type typename (line 965) | typedef typename Accumulator::Type ResultType; type ResultType (line 966) | typedef ResultType CentersType; function ResultType (line 1000) | ResultType accum_dist(const U& a, const V& b, int) const type True (line 1011) | typedef True is_kdtree_distance; type True (line 1012) | typedef True is_vector_space_distance; type T (line 1014) | typedef T ElementType; type typename (line 1015) | typedef typename Accumulator::Type ResultType; type ResultType (line 1016) | typedef ResultType CentersType; function ResultType (line 1048) | ResultType accum_dist(const U& a, const V& b, int) const type True (line 1066) | typedef True is_kdtree_distance; type True (line 1067) | typedef True is_vector_space_distance; type T (line 1069) | typedef T ElementType; type typename (line 1070) | typedef typename Accumulator::Type ResultType; type ResultType (line 1071) | typedef ResultType CentersType; function ResultType (line 1103) | ResultType accum_dist(const U& a, const V& b, int) const type typename (line 1125) | typedef typename Distance::ResultType ResultType; function ResultType (line 1126) | ResultType operator()( ResultType dist ) { return dist*dist; } type typename (line 1133) | typedef typename L2_Simple::ResultType ResultType; function ResultType (line 1134) | ResultType operator()( ResultType dist ) { return dist; } type typename (line 1140) | typedef typename L2::ResultType ResultType; function ResultType (line 1141) | ResultType operator()( ResultType dist ) { return dist; } type typename (line 1148) | typedef typename MinkowskiDistance::ResultType ResultType; function ResultType (line 1149) | ResultType operator()( ResultType dist ) { return dist; } type typename (line 1155) | typedef typename HellingerDistance::ResultType ResultType; function ResultType (line 1156) | ResultType operator()( ResultType dist ) { return dist; } type typename (line 1162) | typedef typename ChiSquareDistance::ResultType ResultType; function ResultType (line 1163) | ResultType operator()( ResultType dist ) { return dist; } type typename (line 1223) | typedef typename Distance::ElementType ElementType; type typename (line 1237) | typedef typename Distance::ResultType ResultType; function ResultType (line 1238) | ResultType operator()( ResultType dist ) { return dist; } type typename (line 1245) | typedef typename L2_Simple::ResultType ResultType; function ResultType (line 1246) | ResultType operator()( ResultType dist ) { return sqrt(dist); } type typename (line 1252) | typedef typename L2::ResultType ResultType; function ResultType (line 1253) | ResultType operator()( ResultType dist ) { return sqrt(dist); } type typename (line 1260) | typedef typename MinkowskiDistance::ResultType ResultType; function ResultType (line 1261) | ResultType operator()( ResultType dist ) { return sqrt(dist); } type typename (line 1267) | typedef typename HellingerDistance::ResultType ResultType; function ResultType (line 1268) | ResultType operator()( ResultType dist ) { return sqrt(dist); } type typename (line 1274) | typedef typename ChiSquareDistance::ResultType ResultType; function ResultType (line 1275) | ResultType operator()( ResultType dist ) { return sqrt(dist); } FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/dummy.h function namespace (line 7) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/dynamic_bitset.h type boost (line 46) | typedef boost::dynamic_bitset<> DynamicBitset; function namespace (line 53) | namespace cvflann { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/flann_base.hpp type cvflann (line 46) | namespace cvflann function log_verbosity (line 53) | inline void log_verbosity(int level) type SavedIndexParams (line 63) | struct SavedIndexParams : public IndexParams method SavedIndexParams (line 65) | SavedIndexParams(cv::String filename) class Index (line 103) | class Index : public NNIndex method Index (line 109) | Index(const Matrix& features, const IndexParams& params... method buildIndex (line 132) | void buildIndex() CV_OVERRIDE method save (line 139) | void save(cv::String filename) method saveIndex (line 154) | virtual void saveIndex(FILE* stream) CV_OVERRIDE method loadIndex (line 163) | virtual void loadIndex(FILE* stream) CV_OVERRIDE method veclen (line 171) | size_t veclen() const CV_OVERRIDE method size (line 179) | size_t size() const CV_OVERRIDE method flann_algorithm_t (line 187) | flann_algorithm_t getType() const CV_OVERRIDE method usedMemory (line 195) | virtual int usedMemory() const CV_OVERRIDE method IndexParams (line 204) | IndexParams getParameters() const CV_OVERRIDE method knnSearch (line 217) | void knnSearch(const Matrix& queries, Matrix& indi... method radiusSearch (line 231) | int radiusSearch(const Matrix& query, Matrix& indi... method findNeighbors (line 239) | void findNeighbors(ResultSet& result, const ElementTyp... method CV_DEPRECATED (line 247) | CV_DEPRECATED NNIndex* getIndex() method CV_DEPRECATED (line 256) | CV_DEPRECATED const IndexParams* getIndexParameters() function hierarchicalClustering (line 285) | int hierarchicalClustering(const Matrix& result, const ElementType* v... type Node (line 567) | struct Node type Node (line 590) | typedef Node* NodePtr; type BranchStruct (line 597) | typedef BranchStruct BranchSt; function save_tree (line 601) | void save_tree(FILE* stream, NodePtr node, int num) function load_tree (line 616) | void load_tree(FILE* stream, NodePtr& node, int num) function free_indices (line 637) | void free_indices() function computeLabels (line 650) | void computeLabels(int* dsindices, int indices_length, int* centers, in... function computeClustering (line 679) | void computeClustering(NodePtr node, int* dsindices, int indices_length,... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/index_testing.h function namespace (line 46) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/kdtree_index.h function namespace (line 50) | namespace cvflann type typename (line 74) | typedef typename Distance::ResultType DistanceType; function buildIndex (line 123) | void buildIndex() CV_OVERRIDE function saveIndex (line 145) | void saveIndex(FILE* stream) CV_OVERRIDE function loadIndex (line 155) | void loadIndex(FILE* stream) CV_OVERRIDE function findNeighbors (line 204) | void findNeighbors(ResultSet& result, const ElementType* v... type Node (line 227) | struct Node type Node (line 242) | typedef Node* NodePtr; type BranchStruct (line 243) | typedef BranchStruct BranchSt; type BranchSt (line 244) | typedef BranchSt* Branch; function save_tree (line 248) | void save_tree(FILE* stream, NodePtr tree) function load_tree (line 260) | void load_tree(FILE* stream, NodePtr& tree) function NodePtr (line 282) | NodePtr divideTree(int* ind, int count) function meanSplit (line 312) | void meanSplit(int* ind, int count, int& index, int& cutfeat, DistanceTy... function selectDivision (line 361) | int selectDivision(DistanceType* v) function planeSplit (line 399) | void planeSplit(int* ind, int count, int cutfeat, DistanceType cutval, i... function getExactNeighbors (line 425) | void getExactNeighbors(ResultSet& result, const ElementTyp... function searchLevelExact (line 533) | void searchLevelExact(ResultSet& result_set, const Element... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/kdtree_single_index.h function namespace (line 48) | namespace cvflann type typename (line 74) | typedef typename Distance::ResultType DistanceType; function buildIndex (line 117) | void buildIndex() CV_OVERRIDE function saveIndex (line 142) | void saveIndex(FILE* stream) CV_OVERRIDE function loadIndex (line 157) | void loadIndex(FILE* stream) CV_OVERRIDE function knnSearch (line 213) | void knnSearch(const Matrix& queries, Matrix& indices,... function findNeighbors (line 242) | void findNeighbors(ResultSet& result, const ElementType* v... type Node (line 255) | struct Node type Node (line 274) | typedef Node* NodePtr; type Interval (line 277) | struct Interval type std (line 282) | typedef std::vector BoundingBox; type BranchStruct (line 284) | typedef BranchStruct BranchSt; type BranchSt (line 285) | typedef BranchSt* Branch; function save_tree (line 290) | void save_tree(FILE* stream, NodePtr tree) function load_tree (line 302) | void load_tree(FILE* stream, NodePtr& tree) function computeBoundingBox (line 315) | void computeBoundingBox(BoundingBox& bbox) function NodePtr (line 340) | NodePtr divideTree(int left, int right, BoundingBox& bbox) function computeMinMax (line 390) | void computeMinMax(int* ind, int count, int dim, ElementType& min_elem, ... function middleSplit (line 401) | void middleSplit(int* ind, int count, int& index, int& cutfeat, Distance... function middleSplit_ (line 446) | void middleSplit_(int* ind, int count, int& index, int& cutfeat, Distanc... function planeSplit (line 497) | void planeSplit(int* ind, int count, int cutfeat, DistanceType cutval, i... function DistanceType (line 522) | DistanceType computeInitialDistances(const ElementType* vec, std::vector... function searchLevel (line 543) | void searchLevel(ResultSet& result_set, const ElementType*... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/kmeans_index.h function namespace (line 58) | namespace cvflann type typename (line 93) | typedef typename Distance::ResultType DistanceType; type typename (line 94) | typedef typename Distance::CentersType CentersType; type typename (line 96) | typedef typename Distance::is_kdtree_distance is_kdtree_distance; type typename (line 97) | typedef typename Distance::is_vector_space_distance is_vector_space_dist... function chooseCentersRandom (line 120) | void chooseCentersRandom(int k, int* indices, int indices_length, int* c... function chooseCentersGonzales (line 161) | void chooseCentersGonzales(int k, int* indices, int indices_length, int*... function chooseCentersKMeanspp (line 212) | void chooseCentersKMeanspp(int k, int* indices, int indices_length, int*... function virtual (line 396) | virtual ~KMeansIndex() function set_cb_index (line 425) | void set_cb_index( float index) function buildIndex (line 442) | void buildIndex() CV_OVERRIDE function saveIndex (line 466) | void saveIndex(FILE* stream) CV_OVERRIDE function loadIndex (line 480) | void loadIndex(FILE* stream) CV_OVERRIDE function findNeighbors (line 521) | void findNeighbors(ResultSet& result, const ElementType* v... function getClusterCenters (line 558) | int getClusterCenters(Matrix& centers) type KMeansNode (line 593) | struct KMeansNode type KMeansNode (line 628) | typedef KMeansNode* KMeansNodePtr; type BranchStruct (line 633) | typedef BranchStruct BranchSt; function save_tree (line 638) | void save_tree(FILE* stream, KMeansNodePtr node, int num) function load_tree (line 654) | void load_tree(FILE* stream, KMeansNodePtr& node, int num) function free_centers (line 677) | void free_centers(KMeansNodePtr node) function free_centers (line 687) | void free_centers() function free_indices (line 701) | void free_indices() function computeNodeStatistics (line 721) | void computeNodeStatistics(KMeansNodePtr node, int* indices, unsigned in... function computeBitfieldNodeStatistics (line 757) | void computeBitfieldNodeStatistics(KMeansNodePtr node, int* indices, function computeDnaNodeStatistics (line 820) | void computeDnaNodeStatistics(KMeansNodePtr node, int* indices, function computeNodeStatistics (line 896) | void computeNodeStatistics(KMeansNodePtr node, int* indices, function computeNodeStatistics (line 904) | void computeNodeStatistics(KMeansNodePtr node, int* indices, function computeNodeStatistics (line 912) | void computeNodeStatistics(KMeansNodePtr node, int* indices, function computeNodeStatistics (line 920) | void computeNodeStatistics(KMeansNodePtr node, int* indices, function computeNodeStatistics (line 928) | void computeNodeStatistics(KMeansNodePtr node, int* indices, function refineClustering (line 937) | void refineClustering(int* indices, int indices_length, int branching, C... function refineBitfieldClustering (line 1025) | void refineBitfieldClustering(int* indices, int indices_length, int bran... function refineDnaClustering (line 1129) | void refineDnaClustering(int* indices, int indices_length, int branching... function computeSubClustering (line 1235) | void computeSubClustering(KMeansNodePtr node, int* indices, int indices_... function computeAnyBitfieldSubClustering (line 1274) | void computeAnyBitfieldSubClustering(KMeansNodePtr node, int* indices, i... function refineAndSplitClustering (line 1375) | void refineAndSplitClustering( function refineAndSplitClustering (line 1389) | void refineAndSplitClustering( function refineAndSplitClustering (line 1403) | void refineAndSplitClustering( function refineAndSplitClustering (line 1417) | void refineAndSplitClustering( function refineAndSplitClustering (line 1431) | void refineAndSplitClustering( function computeClustering (line 1456) | void computeClustering(KMeansNodePtr node, int* indices, int indices_len... function findNN (line 1531) | void findNN(KMeansNodePtr node, ResultSet& result, const E... function exploreNodeBranches (line 1580) | int exploreNodeBranches(KMeansNodePtr node, const ElementType* q, Distan... function findExactNN (line 1613) | void findExactNN(KMeansNodePtr node, ResultSet& result, co... function getCenterOrdering (line 1661) | void getCenterOrdering(KMeansNodePtr node, const ElementType* q, int* so... function DistanceType (line 1685) | DistanceType getDistanceToBorder(DistanceType* p, DistanceType* c, Dista... function getMinVarianceClusters (line 1709) | int getMinVarianceClusters(KMeansNodePtr root, KMeansNodePtr* clusters, ... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/linear_index.h function namespace (line 38) | namespace cvflann type typename (line 55) | typedef typename Distance::ResultType DistanceType; function buildIndex (line 89) | void buildIndex() CV_OVERRIDE function saveIndex (line 94) | void saveIndex(FILE*) CV_OVERRIDE function loadIndex (line 100) | void loadIndex(FILE*) CV_OVERRIDE function findNeighbors (line 107) | void findNeighbors(ResultSet& resultSet, const ElementType... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/logger.h function namespace (line 42) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/lsh_index.h function namespace (line 59) | namespace cvflann type typename (line 87) | typedef typename Distance::ResultType DistanceType; function buildIndex (line 115) | void buildIndex() CV_OVERRIDE function saveIndex (line 133) | void saveIndex(FILE* stream) CV_OVERRIDE function loadIndex (line 141) | void loadIndex(FILE* stream) CV_OVERRIDE function usedMemory (line 176) | int usedMemory() const CV_OVERRIDE function virtual (line 195) | virtual void knnSearch(const Matrix& queries, Matrix& ... function findNeighbors (line 225) | void findNeighbors(ResultSet& result, const ElementType* v... type SortScoreIndexPairOnSecond (line 234) | struct SortScoreIndexPairOnSecond function fill_xor_mask (line 248) | void fill_xor_mask(lsh::BucketKey key, int lowest_index, unsigned int le... function getNeighbors (line 268) | void getNeighbors(const ElementType* vec, bool /*do_radius*/, float radi... function getNeighbors (line 344) | void getNeighbors(const ElementType* vec, ResultSet& result) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/lsh_table.h function namespace (line 67) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/matrix.h function namespace (line 38) | namespace cvflann function class (line 87) | class UntypedMatrix FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/miniflann.hpp type cv (line 51) | namespace cv type flann (line 54) | namespace flann type FlannIndexType (line 57) | enum FlannIndexType { function IndexParams (line 71) | struct CV_EXPORTS IndexParams function KDTreeIndexParams (line 100) | struct CV_EXPORTS KDTreeIndexParams : public IndexParams function LinearIndexParams (line 105) | struct CV_EXPORTS LinearIndexParams : public IndexParams function CompositeIndexParams (line 110) | struct CV_EXPORTS CompositeIndexParams : public IndexParams function AutotunedIndexParams (line 116) | struct CV_EXPORTS AutotunedIndexParams : public IndexParams function HierarchicalClusteringIndexParams (line 122) | struct CV_EXPORTS HierarchicalClusteringIndexParams : public IndexPa... function KMeansIndexParams (line 128) | struct CV_EXPORTS KMeansIndexParams : public IndexParams function LshIndexParams (line 134) | struct CV_EXPORTS LshIndexParams : public IndexParams function SavedIndexParams (line 139) | struct CV_EXPORTS SavedIndexParams : public IndexParams function SearchParams (line 144) | struct CV_EXPORTS SearchParams : public IndexParams function Index (line 150) | class CV_EXPORTS_W Index FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/nn_index.h function namespace (line 40) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/object_factory.h function namespace (line 38) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/params.h function namespace (line 41) | namespace cvflann function String (line 87) | String name) function print_params (line 98) | inline void print_params(const IndexParams& params, std::ostream& stream) function print_params (line 107) | inline void print_params(const IndexParams& params) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/random.h function namespace (line 40) | namespace cvflann function class (line 99) | class UniqueRandom function init (line 120) | void init(int n) function next (line 142) | int next() FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/result_set.h function namespace (line 43) | namespace cvflann function addPoint (line 188) | void addPoint(DistanceType dist, int index) CV_OVERRIDE function init (line 251) | void init() function addPoint (line 266) | void addPoint(DistanceType dist, int index) type DistIndex (line 293) | struct DistIndex function DistanceType (line 371) | inline DistanceType worstDist() const CV_OVERRIDE function clear (line 428) | void clear() CV_OVERRIDE function addPoint (line 467) | void addPoint(DistanceType dist, int index) CV_OVERRIDE function clear (line 474) | inline void clear() CV_OVERRIDE function DistanceType (line 492) | inline DistanceType worstDist() const CV_OVERRIDE FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/sampling.h function namespace (line 38) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/saving.h function namespace (line 45) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/simplex_downhill.h function namespace (line 36) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/flann/timer.h function namespace (line 40) | namespace cvflann FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/core.hpp type cv (line 31) | namespace cv { namespace gapi { type gapi (line 31) | namespace gapi { type core (line 36) | namespace core { function GMatDesc (line 43) | static GMatDesc outMeta(GMatDesc a, GMatDesc b, int ddepth) { function GMatDesc (line 59) | static GMatDesc outMeta(GMatDesc a, GScalarDesc, int ddepth) { function GMatDesc (line 65) | static GMatDesc outMeta(GMatDesc a, GMatDesc b, int ddepth) { function GMatDesc (line 79) | static GMatDesc outMeta(GMatDesc a, GScalarDesc, int ddepth) { function GMatDesc (line 85) | static GMatDesc outMeta(GScalarDesc, GMatDesc b, int ddepth) { function GMatDesc (line 91) | static GMatDesc outMeta(GMatDesc a, GMatDesc, double, int ddepth) { function GMatDesc (line 97) | static GMatDesc outMeta(GMatDesc a, double, int ddepth) { function GMatDesc (line 103) | static GMatDesc outMeta(GMatDesc a, GScalarDesc, int ddepth) { function GMatDesc (line 109) | static GMatDesc outMeta(GMatDesc a, GScalarDesc) { function GMatDesc (line 115) | static GMatDesc outMeta(GMatDesc a, GMatDesc b, double, int ddepth) { function GMatDesc (line 126) | static GMatDesc outMeta(GMatDesc a, GScalarDesc, double, int ddept... function GMatDesc (line 132) | static GMatDesc outMeta(GScalarDesc, GMatDesc b, double, int ddept... function GScalarDesc (line 138) | static GScalarDesc outMeta(GMatDesc) { function outMeta (line 144) | static std::tuple outMeta(GMatDesc, GMatDesc a... function outMeta (line 150) | static std::tuple outMeta(GMatDesc x, GMatDesc... function GMatDesc (line 156) | static GMatDesc outMeta(const GMatDesc &inx, const GMatDesc &, boo... function GMatDesc (line 162) | static GMatDesc outMeta(GMatDesc in, GMatDesc) { function GMatDesc (line 168) | static GMatDesc outMeta(GMatDesc a, GMatDesc) { function GMatDesc (line 174) | static GMatDesc outMeta(GMatDesc a, GMatDesc) { function GMatDesc (line 180) | static GMatDesc outMeta(GMatDesc a, GMatDesc) { function GMatDesc (line 186) | static GMatDesc outMeta(GMatDesc a, GMatDesc) { function GMatDesc (line 192) | static GMatDesc outMeta(GMatDesc a, GMatDesc) { function GMatDesc (line 198) | static GMatDesc outMeta(GMatDesc a, GMatDesc) { function GMatDesc (line 204) | static GMatDesc outMeta(GMatDesc a, GScalarDesc) { function GMatDesc (line 210) | static GMatDesc outMeta(GMatDesc a, GScalarDesc) { function GMatDesc (line 216) | static GMatDesc outMeta(GMatDesc a, GScalarDesc) { function GMatDesc (line 222) | static GMatDesc outMeta(GMatDesc a, GScalarDesc) { function GMatDesc (line 228) | static GMatDesc outMeta(GMatDesc a, GScalarDesc) { function GMatDesc (line 234) | static GMatDesc outMeta(GMatDesc a, GScalarDesc) { function GMatDesc (line 240) | static GMatDesc outMeta(GMatDesc a, GMatDesc) { function GMatDesc (line 246) | static GMatDesc outMeta(GMatDesc a, GScalarDesc) { function GMatDesc (line 252) | static GMatDesc outMeta(GMatDesc a, GMatDesc) { function GMatDesc (line 258) | static GMatDesc outMeta(GMatDesc a, GScalarDesc) { function GMatDesc (line 264) | static GMatDesc outMeta(GMatDesc a, GMatDesc) { function GMatDesc (line 270) | static GMatDesc outMeta(GMatDesc a, GScalarDesc) { function GMatDesc (line 276) | static GMatDesc outMeta(GMatDesc a) { function GMatDesc (line 282) | static GMatDesc outMeta(GMatDesc a, GMatDesc, GMatDesc) { function GMatDesc (line 288) | static GMatDesc outMeta(GMatDesc a, GMatDesc) { function GMatDesc (line 294) | static GMatDesc outMeta(GMatDesc a, GMatDesc) { function GMatDesc (line 300) | static GMatDesc outMeta(GMatDesc a, GMatDesc) { function GMatDesc (line 306) | static GMatDesc outMeta(const GMatDesc& a, const GScalarDesc&) { function GScalarDesc (line 312) | static GScalarDesc outMeta(GMatDesc) { function GOpaqueDesc (line 318) | static GOpaqueDesc outMeta(GMatDesc in) { function GMatDesc (line 325) | static GMatDesc outMeta(GMatDesc a, double, GMatDesc b, double, do... function GScalarDesc (line 341) | static GScalarDesc outMeta(GMatDesc) { function GScalarDesc (line 347) | static GScalarDesc outMeta(GMatDesc) { function GScalarDesc (line 353) | static GScalarDesc outMeta(GMatDesc) { function outMeta (line 359) | static std::tuple outMeta(GMatDesc in, int sd,... function GMatDesc (line 366) | static GMatDesc outMeta(GMatDesc in, GScalarDesc, GScalarDesc, int) { function outMeta (line 373) | static std::tuple outMeta(GMatDesc in, GScal... function GMatDesc (line 379) | static GMatDesc outMeta(GMatDesc in, GScalarDesc, GScalarDesc) { function outMeta (line 385) | static std::tuple outMeta(GMatDesc i... function outMeta (line 393) | static std::tuple outMeta(... function GMatDesc (line 401) | static GMatDesc outMeta(GMatDesc in, Size sz, double fx, double fy... function GMatDesc (line 417) | static GMatDesc outMeta(GMatDesc in, Size sz, int interp) { function GMatDesc (line 427) | static GMatDesc outMeta(GMatDesc in, GMatDesc, GMatDesc) { function GMatDesc (line 434) | static GMatDesc outMeta(GMatDesc in, GMatDesc, GMatDesc, GMatDesc) { function GMatDesc (line 441) | static GMatDesc outMeta(GMatDesc in, Mat m1, Mat, int, int, Scalar) { function GMatDesc (line 447) | static GMatDesc outMeta(GMatDesc in, int) { function GMatDesc (line 454) | static GMatDesc outMeta(GMatDesc in, Rect rc) { function GMatDesc (line 460) | static GMatDesc outMeta(GMatDesc l, GMatDesc r) { function GMatDesc (line 466) | static GMatDesc outMeta(GMatDesc t, GMatDesc b) { function GMatDesc (line 472) | static GMatDesc outMeta(GMatDesc in, Mat) { function GMatDesc (line 478) | static GMatDesc outMeta(GMatDesc in, int rdepth, double, double) { function GMatDesc (line 484) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 490) | static GMatDesc outMeta(GMatDesc in, double, double, int, int ddep... function GMatDesc (line 497) | static GMatDesc outMeta(GMatDesc in, const Mat&, Size dsize, int, ... function GMatDesc (line 505) | static GMatDesc outMeta(GMatDesc in, const Mat&, Size dsize, int, ... function outMeta (line 517) | static std::tuple function outMeta (line 548) | static std::tuple function outMeta (line 568) | static std::tuple function outMeta (line 577) | static std::tuple function GMatDesc (line 584) | static GMatDesc outMeta(GMatDesc in) { type streaming (line 590) | namespace streaming { function GOpaqueDesc (line 594) | static GOpaqueDesc outMeta(const GMatDesc&) { function GOpaqueDesc (line 600) | static GOpaqueDesc outMeta(const GOpaqueDesc&) { function GOpaqueDesc (line 606) | static GOpaqueDesc outMeta(const GFrameDesc&) { type streaming (line 1955) | namespace streaming { function GOpaqueDesc (line 594) | static GOpaqueDesc outMeta(const GMatDesc&) { function GOpaqueDesc (line 600) | static GOpaqueDesc outMeta(const GOpaqueDesc&) { function GOpaqueDesc (line 606) | static GOpaqueDesc outMeta(const GFrameDesc&) { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/cpu/core.hpp type cv (line 14) | namespace cv { type gapi (line 15) | namespace gapi { type core (line 16) | namespace core { type cpu (line 17) | namespace cpu { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/cpu/gcpukernel.hpp type cv (line 25) | namespace cv { type gimpl (line 27) | namespace gimpl class GCPUExecutable (line 30) | class GCPUExecutable type render (line 32) | namespace render type ocv (line 34) | namespace ocv class GRenderExecutable (line 36) | class GRenderExecutable type gapi (line 41) | namespace gapi type cpu (line 47) | namespace cpu class GOCVFunctor (line 80) | class GOCVFunctor function GCPUContext (line 95) | class GAPI_EXPORTS GCPUContext function GCPUKernel (line 139) | class GAPI_EXPORTS GCPUKernel type detail (line 159) | namespace detail type get_in (line 161) | struct get_in method T (line 214) | static T get(GCPUContext &ctx, int idx) { return ctx.inArg(idx); } type get_in (line 162) | struct get_in method get (line 164) | static cv::Mat get(GCPUContext &ctx, int idx) { return ctx.inMa... type get_in (line 166) | struct get_in method get (line 168) | static cv::Mat get(GCPUContext &ctx, int idx) { return get_in (line 170) | struct get_in method get (line 172) | static cv::MediaFrame get(GCPUContext &ctx, int idx) { return ctx.... type get_in (line 174) | struct get_in method get (line 176) | static cv::Scalar get(GCPUContext &ctx, int idx) { return ctx.inVa... type get_in > (line 178) | struct get_in > type get_in > (line 182) | struct get_in > method U (line 184) | static const U& get(GCPUContext &ctx, int idx) { return ctx.inArg<... type get_in > (line 188) | struct get_in >: public get_in > (line 193) | struct get_in >: public get_in> > (line 198) | struct get_in> >: public get_in > (line 203) | struct get_in >: public get_in > (line 208) | struct get_in >: public get_in(idx); } type tracked_cv_mat (line 217) | struct tracked_cv_mat{ method tracked_cv_mat (line 218) | tracked_cv_mat(cv::Mat& m) : r{m}, original_data{m.data} {} method validate (line 223) | void validate() const{ function postprocess (line 235) | void postprocess(Outputs&... outs) type get_out (line 248) | struct get_out type get_out (line 249) | struct get_out method tracked_cv_mat (line 251) | static tracked_cv_mat get(GCPUContext &ctx, int idx) type get_out (line 257) | struct get_out method tracked_cv_mat (line 259) | static tracked_cv_mat get(GCPUContext &ctx, int idx) type get_out (line 264) | struct get_out type get_out (line 271) | struct get_out type get_out> (line 278) | struct get_out> type get_out > (line 287) | struct get_out >: public get_out> > (line 292) | struct get_out> >: public get_out> (line 296) | struct get_out> method U (line 298) | static U& get(GCPUContext &ctx, int idx) type OCVSetupHelper (line 305) | struct OCVSetupHelper function setup (line 356) | static void setup(const GMetaArgs &metaArgs, const GArgs &args, type OCVSetupHelper> (line 308) | struct OCVSetupHelper> type OCVCallHelper (line 366) | struct OCVCallHelper type OCVCallHelper, std::tuple> (line 370) | struct OCVCallHelper, std::tuple> type call_and_postprocess (line 373) | struct call_and_postprocess method call (line 376) | static void call(Inputs&&... ins, Outputs&&... outs) method call (line 385) | static void call(Impl& impl, Inputs&&... ins, Outputs&&... outs) method call_impl (line 392) | static void call_impl(GCPUContext &ctx, detail::Seq, detail::S... method call_impl (line 403) | static void call_impl(cv::GCPUContext &ctx, Impl& impl, method call (line 410) | static void call(GCPUContext &ctx) method callFunctor (line 420) | static void callFunctor(cv::GCPUContext &ctx, Impl& impl) type OCVStCallHelper (line 430) | struct OCVStCallHelper type OCVStCallHelper, std::tuple> (line 433) | struct OCVStCallHelper, std::tuple> : type call_and_postprocess (line 437) | struct call_and_postprocess method call (line 440) | static void call(typename Impl::State& st, Inputs&&... ins, Outputs&... method call_impl (line 448) | static void call_impl(GCPUContext &ctx, detail::Seq, detail::S... method call (line 455) | static void call(GCPUContext &ctx) class GCPUKernelImpl (line 466) | class GCPUKernelImpl: public cv::detail::KernelTag method backend (line 473) | static cv::gapi::GBackend backend() { return cv::gapi::cpu::backend(); } method kernel (line 474) | static cv::GCPUKernel kernel() { return GCPUKernel(&CallHelper::c... class GCPUStKernelImpl (line 478) | class GCPUStKernelImpl: public cv::detail::KernelTag method backend (line 487) | static cv::gapi::GBackend backend() { return cv::gapi::cpu::backend(); } method kernel (line 488) | static cv::GCPUKernel kernel() { return GCPUKernel(&StCallHelper:... class gapi::cpu::GOCVFunctor (line 500) | class gapi::cpu::GOCVFunctor : public gapi::GFunctor method GOCVFunctor (line 506) | GOCVFunctor(const char* id, const Meta &meta, const Impl& impl) method GKernelImpl (line 511) | GKernelImpl impl() const override { return impl_; } method backend (line 512) | gapi::GBackend backend() const override { return gapi::cpu::backend(); } FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/cpu/imgproc.hpp type cv (line 14) | namespace cv { type gapi (line 15) | namespace gapi { type imgproc (line 16) | namespace imgproc { type cpu (line 17) | namespace cpu { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/cpu/stereo.hpp type cv (line 12) | namespace cv { type gapi (line 13) | namespace gapi { type calib3d (line 14) | namespace calib3d { type cpu (line 15) | namespace cpu { function StereoInitParam (line 20) | struct GAPI_EXPORTS StereoInitParam { type detail (line 36) | namespace detail { type CompileArgTag (line 38) | struct CompileArgTag { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/cpu/video.hpp type cv (line 12) | namespace cv { type gapi (line 13) | namespace gapi { type video (line 14) | namespace video { type cpu (line 15) | namespace cpu { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/fluid/core.hpp type cv (line 14) | namespace cv { namespace gapi { namespace core { namespace fluid { type gapi (line 14) | namespace gapi { namespace core { namespace fluid { type core (line 14) | namespace core { namespace fluid { type fluid (line 14) | namespace fluid { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/fluid/gfluidbuffer.hpp type cv (line 21) | namespace cv { type gapi (line 22) | namespace gapi { type fluid (line 23) | namespace fluid { type Border (line 25) | struct Border method Border (line 28) | Border(int _type, cv::Scalar _val) : type(_type), value(_val) {} class GAPI_EXPORTS (line 38) | class GAPI_EXPORTS function View (line 40) | class GAPI_EXPORTS View function Buffer (line 92) | class GAPI_EXPORTS Buffer FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/fluid/gfluidkernel.hpp type cv (line 24) | namespace cv { type gapi (line 26) | namespace gapi type fluid (line 31) | namespace fluid function GFluidKernel (line 48) | class GAPI_EXPORTS GFluidKernel type GFluidOutputRois (line 112) | struct GFluidOutputRois type GFluidParallelOutputRois (line 123) | struct GFluidParallelOutputRois type GFluidParallelFor (line 142) | struct GFluidParallelFor type detail (line 151) | namespace detail type CompileArgTag (line 153) | struct CompileArgTag type CompileArgTag (line 158) | struct CompileArgTag type CompileArgTag (line 163) | struct CompileArgTag type fluid_get_in (line 172) | struct fluid_get_in method T (line 208) | static const T& get(const cv::GArgs &in_args, int idx) type fluid_get_in (line 173) | struct fluid_get_in type fluid_get_in (line 181) | struct fluid_get_in method get (line 184) | static const cv::Scalar get(const cv::GArgs &in_args, int idx) type fluid_get_in> (line 190) | struct fluid_get_in> type fluid_get_in> (line 198) | struct fluid_get_in> method U (line 200) | static const U& get(const cv::GArgs &in_args, int idx) type fluid_get_in (line 206) | struct fluid_get_in method T (line 208) | static const T& get(const cv::GArgs &in_args, int idx) type scratch_helper (line 215) | struct scratch_helper type is_gmat_type (line 259) | struct is_gmat_type type get_border_helper (line 265) | struct get_border_helper type get_window_helper (line 296) | struct get_window_helper type has_Window (line 326) | struct has_Window type callCustomGetBorder (line 342) | struct callCustomGetBorder type callCustomGetBorder (line 345) | struct callCustomGetBorder type callCustomGetBorder (line 351) | struct callCustomGetBorder type FluidCallHelper (line 357) | struct FluidCallHelper type detail (line 170) | namespace detail type CompileArgTag (line 153) | struct CompileArgTag type CompileArgTag (line 158) | struct CompileArgTag type CompileArgTag (line 163) | struct CompileArgTag type fluid_get_in (line 172) | struct fluid_get_in method T (line 208) | static const T& get(const cv::GArgs &in_args, int idx) type fluid_get_in (line 173) | struct fluid_get_in type fluid_get_in (line 181) | struct fluid_get_in method get (line 184) | static const cv::Scalar get(const cv::GArgs &in_args, int idx) type fluid_get_in> (line 190) | struct fluid_get_in> type fluid_get_in> (line 198) | struct fluid_get_in> method U (line 200) | static const U& get(const cv::GArgs &in_args, int idx) type fluid_get_in (line 206) | struct fluid_get_in method T (line 208) | static const T& get(const cv::GArgs &in_args, int idx) type scratch_helper (line 215) | struct scratch_helper type is_gmat_type (line 259) | struct is_gmat_type type get_border_helper (line 265) | struct get_border_helper type get_window_helper (line 296) | struct get_window_helper type has_Window (line 326) | struct has_Window type callCustomGetBorder (line 342) | struct callCustomGetBorder type callCustomGetBorder (line 345) | struct callCustomGetBorder type callCustomGetBorder (line 351) | struct callCustomGetBorder type FluidCallHelper (line 357) | struct FluidCallHelper class GFluidKernelImpl (line 417) | class GFluidKernelImpl : public cv::detail::KernelTag method GFluidKernel (line 426) | static GFluidKernel kernel() method backend (line 435) | static cv::gapi::GBackend backend() { return cv::gapi::fluid::backen... type scratch_helper (line 218) | struct scratch_helper method help_init_impl (line 222) | static void help_init_impl(const cv::GMetaArgs &metas, method help_init (line 230) | static void help_init(const cv::GMetaArgs &metas, method help_reset (line 238) | static void help_reset(gapi::fluid::Buffer &b) type scratch_helper (line 245) | struct scratch_helper method help_init (line 247) | static void help_init(const cv::GMetaArgs &, method help_reset (line 253) | static void help_reset(gapi::fluid::Buffer &) type get_border_helper (line 268) | struct get_border_helper method get_border_impl (line 271) | static gapi::fluid::BorderOpt get_border_impl(const GMetaArgs &metas, method help (line 278) | static gapi::fluid::BorderOpt help(const GMetaArgs &metas, type get_border_helper (line 286) | struct get_border_helper method help (line 288) | static gapi::fluid::BorderOpt help(const cv::GMetaArgs &, type get_window_helper (line 299) | struct get_window_helper method get_window_impl (line 302) | static int get_window_impl(const GMetaArgs &metas, method help (line 309) | static int help(const GMetaArgs &metas, const cv::GArgs &in_args) type get_window_helper (line 316) | struct get_window_helper method help (line 318) | static int help(const cv::GMetaArgs &, type FluidCallHelper, std::tuple, UseScratch> (line 360) | struct FluidCallHelper, std::tuple, Us... method call_impl (line 367) | static void call_impl(const cv::GArgs &in_args, method call (line 375) | static void call(const cv::GArgs &in_args, method init_scratch (line 385) | static void init_scratch(const GMetaArgs &metas, method reset_scratch (line 393) | static void reset_scratch(gapi::fluid::Buffer &scratch_buf) method getBorder (line 398) | static gapi::fluid::BorderOpt getBorder(const GMetaArgs &metas, const ... method getWindow (line 407) | static int getWindow(const GMetaArgs &metas, const cv::GArgs &in_args) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/fluid/imgproc.hpp type cv (line 14) | namespace cv { namespace gapi { namespace imgproc { namespace fluid { type gapi (line 14) | namespace gapi { namespace imgproc { namespace fluid { type imgproc (line 14) | namespace imgproc { namespace fluid { type fluid (line 14) | namespace fluid { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/garg.hpp type cv (line 33) | namespace cv { class GArg (line 35) | class GArg type detail (line 37) | namespace detail { type in_variant (line 113) | struct in_variant type ExtractArgsCallback (line 257) | struct ExtractArgsCallback type ExtractMetaCallback (line 264) | struct ExtractMetaCallback function GArg (line 46) | class GAPI_EXPORTS GArg type detail (line 111) | namespace detail { type in_variant (line 113) | struct in_variant type ExtractArgsCallback (line 257) | struct ExtractArgsCallback type ExtractMetaCallback (line 264) | struct ExtractMetaCallback function GRunArgBase (line 121) | struct GAPI_EXPORTS GRunArg: public GRunArgBase function GRunArgs (line 177) | inline GRunArgs& operator += (GRunArgs &lhs, const GRunArgs &rhs) type gapi (line 184) | namespace gapi type wip (line 186) | namespace wip function GRunArg (line 195) | struct GAPI_EXPORTS Data: public GRunArg function GRunArgsP (line 229) | inline GRunArgsP& operator += (GRunArgsP &lhs, const GRunArgsP &rhs) type gapi (line 236) | namespace gapi type wip (line 186) | namespace wip function GRunArg (line 195) | struct GAPI_EXPORTS Data: public GRunArg function GRunArgs (line 242) | inline GRunArgs gin(const Ts&... args) function GRunArgsP (line 247) | inline GRunArgsP gout(Ts&... args) type GTypeInfo (line 252) | struct GTypeInfo type detail (line 256) | namespace detail { type in_variant (line 113) | struct in_variant type ExtractArgsCallback (line 257) | struct ExtractArgsCallback type ExtractMetaCallback (line 264) | struct ExtractMetaCallback type in_variant > (line 116) | struct in_variant > FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/garray.hpp type cv (line 26) | namespace cv class GNode (line 30) | class GNode type GOrigin (line 31) | struct GOrigin class GArray (line 32) | class GArray method GArray (line 390) | explicit GArray(const std::vector& v) // Constant value constructor method GArray (line 400) | explicit GArray(std::vector&& v) // Move-constructor method GArray (line 411) | GArray() { putDetails(); } method GArray (line 414) | explicit GArray(detail::GArrayU &&ref) // GArrayU-based constructor method strip (line 418) | detail::GArrayU strip() const { method VCtor (line 422) | static void VCtor(detail::VectorRef& vref) { method putDetails (line 427) | void putDetails() { function GArrayDesc (line 38) | struct GAPI_EXPORTS_W_SIMPLE GArrayDesc function GArrayDesc (line 44) | GArrayDesc descr_of(const std::vector &) { return {};} function GAPI_EXPORTS_W (line 45) | GAPI_EXPORTS_W inline GArrayDesc empty_array_desc() {return {}; } type detail (line 50) | namespace detail class VectorRef (line 57) | class VectorRef method check (line 241) | inline void check() const method VectorRef (line 248) | VectorRef() = default; method VectorRef (line 249) | explicit VectorRef(const std::vector& vec) method VectorRef (line 253) | explicit VectorRef(std::vector& vec) method VectorRef (line 257) | explicit VectorRef(std::vector&& vec) method getKind (line 262) | cv::detail::OpaqueKind getKind() const method reset (line 267) | void reset() method storeKind (line 276) | void storeKind() method holds (line 294) | bool holds() const method mov (line 301) | void mov(VectorRef &v) method descr_of (line 306) | cv::GArrayDesc descr_of() const method size (line 311) | std::size_t size() const type TypeHintBase (line 61) | struct TypeHintBase{virtual ~TypeHintBase() = default;} type TypeHint (line 65) | struct TypeHint final : public TypeHintBase{} function GArrayU (line 70) | class GAPI_EXPORTS GArrayU class BasicVectorRef (line 121) | class BasicVectorRef class VectorRefT (line 134) | class VectorRefT final: public BasicVectorRef method isEmpty (line 142) | inline bool isEmpty() const { return util::holds_alternative* vec = nullptr) method VectorRefT (line 154) | VectorRefT() { init(); } method VectorRefT (line 157) | explicit VectorRefT(const std::vector& vec) : m_ref(&vec) ... method VectorRefT (line 158) | explicit VectorRefT(std::vector& vec) : m_ref(&vec) ... method VectorRefT (line 159) | explicit VectorRefT(std::vector&& vec) : m_ref(std::move(vec)) ... method reset (line 167) | void reset() method mov (line 219) | virtual void mov(BasicVectorRef &v) override { method size (line 226) | virtual std::size_t size() const override { return rref().size(); } class VectorRef (line 236) | class VectorRef method check (line 241) | inline void check() const method VectorRef (line 248) | VectorRef() = default; method VectorRef (line 249) | explicit VectorRef(const std::vector& vec) method VectorRef (line 253) | explicit VectorRef(std::vector& vec) method VectorRef (line 257) | explicit VectorRef(std::vector&& vec) method getKind (line 262) | cv::detail::OpaqueKind getKind() const method reset (line 267) | void reset() method storeKind (line 276) | void storeKind() method holds (line 294) | bool holds() const method mov (line 301) | void mov(VectorRef &v) method descr_of (line 306) | cv::GArrayDesc descr_of() const method size (line 311) | std::size_t size() const type flatten_g (line 329) | struct flatten_g type flatten_g (line 330) | struct flatten_g { using type = FLATTEN_NS::Mat; } type flatten_g (line 331) | struct flatten_g { using type = FLATTEN_NS::Scalar; } type flatten_g> (line 332) | struct flatten_g> { using type = std::vector; } type flatten_g (line 333) | struct flatten_g { using type = T; } class GArray (line 365) | class GArray method GArray (line 390) | explicit GArray(const std::vector& v) // Constant value constructor method GArray (line 400) | explicit GArray(std::vector&& v) // Move-constructor method GArray (line 411) | GArray() { putDetails(); } method GArray (line 414) | explicit GArray(detail::GArrayU &&ref) // GArrayU-based constructor method strip (line 418) | detail::GArrayU strip() const { method VCtor (line 422) | static void VCtor(detail::VectorRef& vref) { method putDetails (line 427) | void putDetails() { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gasync_context.hpp type cv (line 18) | namespace cv { type gapi (line 19) | namespace gapi{ type wip (line 27) | namespace wip { function GAsyncContext (line 35) | class GAPI_EXPORTS GAsyncContext{ class GAPI_EXPORTS (line 55) | class GAPI_EXPORTS FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gcall.hpp type cv (line 18) | namespace cv { type GKernel (line 20) | struct GKernel function GCall (line 26) | class GAPI_EXPORTS GCall final FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gcommon.hpp type cv (line 24) | namespace cv { class GMat (line 26) | class GMat type detail (line 28) | namespace detail type CompileArgTag (line 32) | struct CompileArgTag type KernelTag (line 35) | struct KernelTag type TransformTag (line 37) | struct TransformTag type OpaqueKind (line 42) | enum class OpaqueKind: int type GOpaqueTraits (line 62) | struct GOpaqueTraits type GOpaqueTraits (line 63) | struct GOpaqueTraits { static constexpr const OpaqueKind kind = O... type GOpaqueTraits (line 64) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 65) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 66) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 67) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 68) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 69) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 70) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 71) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 72) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 73) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 74) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 75) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 76) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 77) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 78) | struct GOpaqueTraits type CompileArgTag (line 266) | struct CompileArgTag type GShape (line 93) | enum class GShape: int type gapi (line 102) | namespace gapi { type s11n (line 103) | namespace s11n { type detail (line 104) | namespace detail { type wrap_serialize (line 105) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type wrap_serialize (line 238) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type detail (line 237) | namespace detail { type wrap_serialize (line 105) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type wrap_serialize (line 238) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) function getCompileArg (line 224) | inline cv::util::optional getCompileArg(const cv::GCompileArgs &a... type s11n (line 236) | namespace s11n { type detail (line 104) | namespace detail { type wrap_serialize (line 105) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type wrap_serialize (line 238) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type detail (line 237) | namespace detail { type wrap_serialize (line 105) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type wrap_serialize (line 238) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type GCompileArg (line 111) | struct GCompileArg method GCompileArg (line 160) | GCompileArg() = default; method GCompileArg (line 166) | explicit GCompileArg(T &&t) method T (line 175) | T& get() method T (line 180) | const T& get() const method serialize (line 185) | void serialize(cv::gapi::s11n::IOStream& os) const type detail (line 113) | namespace detail { type CompileArgTag (line 32) | struct CompileArgTag type KernelTag (line 35) | struct KernelTag type TransformTag (line 37) | struct TransformTag type OpaqueKind (line 42) | enum class OpaqueKind: int type GOpaqueTraits (line 62) | struct GOpaqueTraits type GOpaqueTraits (line 63) | struct GOpaqueTraits { static constexpr const OpaqueKind kind = O... type GOpaqueTraits (line 64) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 65) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 66) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 67) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 68) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 69) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 70) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 71) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 72) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 73) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 74) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 75) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 76) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 77) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 78) | struct GOpaqueTraits type CompileArgTag (line 266) | struct CompileArgTag type GCompileArg (line 156) | struct GCompileArg method GCompileArg (line 160) | GCompileArg() = default; method GCompileArg (line 166) | explicit GCompileArg(T &&t) method T (line 175) | T& get() method T (line 180) | const T& get() const method serialize (line 185) | void serialize(cv::gapi::s11n::IOStream& os) const function GCompileArgs (line 212) | GCompileArgs compile_args(Ts&&... args) type gapi (line 217) | namespace gapi type s11n (line 103) | namespace s11n { type detail (line 104) | namespace detail { type wrap_serialize (line 105) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type wrap_serialize (line 238) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type detail (line 237) | namespace detail { type wrap_serialize (line 105) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type wrap_serialize (line 238) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) function getCompileArg (line 224) | inline cv::util::optional getCompileArg(const cv::GCompileArgs &a... type s11n (line 236) | namespace s11n { type detail (line 104) | namespace detail { type wrap_serialize (line 105) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type wrap_serialize (line 238) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type detail (line 237) | namespace detail { type wrap_serialize (line 105) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type wrap_serialize (line 238) | struct wrap_serialize method serialize (line 240) | static void serialize(IOStream& os, const GCompileArg& arg) type graph_dump_path (line 258) | struct graph_dump_path type detail (line 264) | namespace detail type CompileArgTag (line 32) | struct CompileArgTag type KernelTag (line 35) | struct KernelTag type TransformTag (line 37) | struct TransformTag type OpaqueKind (line 42) | enum class OpaqueKind: int type GOpaqueTraits (line 62) | struct GOpaqueTraits type GOpaqueTraits (line 63) | struct GOpaqueTraits { static constexpr const OpaqueKind kind = O... type GOpaqueTraits (line 64) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 65) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 66) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 67) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 68) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 69) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 70) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 71) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 72) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 73) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 74) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 75) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 76) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 77) | struct GOpaqueTraits { static constexpr const OpaqueKin... type GOpaqueTraits (line 78) | struct GOpaqueTraits type CompileArgTag (line 266) | struct CompileArgTag type std (line 275) | namespace std type hash (line 277) | struct hash FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gcompiled.hpp type cv (line 17) | namespace cv { function GCompiled (line 66) | class GAPI_EXPORTS GCompiled FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gcompiled_async.hpp type cv (line 17) | namespace cv { class GCompiled (line 19) | class GCompiled type gapi (line 21) | namespace gapi{ type wip (line 22) | namespace wip { class GAsyncContext (line 23) | class GAsyncContext FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gcompoundkernel.hpp type cv (line 16) | namespace cv { type gapi (line 17) | namespace gapi type compound (line 19) | namespace compound type detail (line 27) | namespace detail type GCompoundContext (line 30) | struct GCompoundContext method T (line 34) | const T& inArg(int input) { return m_args.at(input).get(); } function GCompoundKernel (line 40) | class GAPI_EXPORTS GCompoundKernel type get_compound_in (line 53) | struct get_compound_in method T (line 55) | static T get(GCompoundContext &ctx, int idx) { return ctx.inArg... type get_compound_in> (line 58) | struct get_compound_in> method get (line 60) | static cv::GArray get(GCompoundContext &ctx, int idx) type get_compound_in> (line 68) | struct get_compound_in> method get (line 70) | static cv::GOpaque get(GCompoundContext &ctx, int idx) type get_compound_in (line 78) | struct get_compound_in method get (line 80) | static cv::GMatP get(GCompoundContext &ctx, int idx) type GCompoundCallHelper (line 89) | struct GCompoundCallHelper class GCompoundKernelImpl (line 111) | class GCompoundKernelImpl: public cv::detail::GCompoundCallHelper, std::tuple > (line 92) | struct GCompoundCallHelper, std::tuple > method expand_impl (line 95) | static void expand_impl(GCompoundContext &ctx, detail::Seq, de... method expand (line 102) | static void expand(GCompoundContext &ctx) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gcomputation.hpp type cv (line 20) | namespace cv { type detail (line 22) | namespace detail type last_type (line 27) | struct last_type type last_type (line 30) | struct last_type { using type = T;} type gapi (line 40) | namespace gapi { type s11n (line 41) | namespace s11n { type IIStream (line 42) | struct IIStream type IOStream (line 43) | struct IOStream function GComputation (line 119) | class GAPI_EXPORTS_W GComputation type gapi (line 543) | namespace gapi type s11n (line 41) | namespace s11n { type IIStream (line 42) | struct IIStream type IOStream (line 43) | struct IOStream type last_type (line 33) | struct last_type { using type = typename last_type::typ... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gcomputation_async.hpp type cv (line 19) | namespace cv { class GComputation (line 21) | class GComputation type gapi (line 22) | namespace gapi { type wip (line 23) | namespace wip { class GAsyncContext (line 24) | class GAsyncContext FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gframe.hpp type cv (line 21) | namespace cv class GNode (line 25) | class GNode type GOrigin (line 26) | struct GOrigin function GFrame (line 60) | class GAPI_EXPORTS_W_SIMPLE GFrame type MediaFormat (line 85) | enum class MediaFormat: int function GFrameDesc (line 95) | struct GAPI_EXPORTS GFrameDesc function GFrameDesc (line 102) | static inline GFrameDesc empty_gframe_desc() { return GFrameDesc{}; } class MediaFrame (line 105) | class MediaFrame FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gkernel.hpp type cv (line 27) | namespace cv { type GTypeInfo (line 29) | struct GTypeInfo function GKernel (line 44) | struct GAPI_EXPORTS GKernel function GKernelImpl (line 59) | struct GAPI_EXPORTS GKernelImpl class GKernelTypeM (line 65) | class GKernelTypeM type detail (line 67) | namespace detail type Yield (line 73) | struct Yield type Yield (line 74) | struct Yield method yield (line 76) | static inline cv::GMat yield(cv::GCall &call, int i) { return call... type Yield (line 78) | struct Yield method yield (line 80) | static inline cv::GMatP yield(cv::GCall &call, int i) { return cal... type Yield (line 82) | struct Yield method yield (line 84) | static inline cv::GScalar yield(cv::GCall &call, int i) { return c... type Yield > (line 86) | struct Yield > method yield (line 88) | static inline cv::GArray yield(cv::GCall &call, int i) { return... type Yield > (line 90) | struct Yield > method yield (line 92) | static inline cv::GOpaque yield(cv::GCall &call, int i) { retur... type Yield (line 94) | struct Yield method yield (line 96) | static inline cv::GFrame yield(cv::GCall &call, int i) { return ca... type MetaType (line 106) | struct MetaType type MetaType (line 107) | struct MetaType { using type = GMatDesc; } type MetaType (line 108) | struct MetaType { using type = GMatDesc; } type MetaType (line 109) | struct MetaType { using type = GFrameDesc; } type MetaType (line 110) | struct MetaType { using type = GScalarDesc; } type MetaType > (line 111) | struct MetaType > { using type = GArrayDesc; } type MetaType > (line 112) | struct MetaType > { using type = GOpaqueDesc; } type MetaType (line 113) | struct MetaType { using type = T; } function get_in_meta (line 121) | typename std::enable_if::value, typename MetaTyp... function get_in_meta (line 128) | typename std::enable_if::value, T> type MetaHelper (line 139) | struct MetaHelper type NoTag (line 195) | struct NoTag { class KernelTypeMedium (line 263) | class KernelTypeMedium class GKernelType (line 236) | class GKernelType type detail (line 260) | namespace detail { type Yield (line 73) | struct Yield type Yield (line 74) | struct Yield method yield (line 76) | static inline cv::GMat yield(cv::GCall &call, int i) { return call... type Yield (line 78) | struct Yield method yield (line 80) | static inline cv::GMatP yield(cv::GCall &call, int i) { return cal... type Yield (line 82) | struct Yield method yield (line 84) | static inline cv::GScalar yield(cv::GCall &call, int i) { return c... type Yield > (line 86) | struct Yield > method yield (line 88) | static inline cv::GArray yield(cv::GCall &call, int i) { return... type Yield > (line 90) | struct Yield > method yield (line 92) | static inline cv::GOpaque yield(cv::GCall &call, int i) { retur... type Yield (line 94) | struct Yield method yield (line 96) | static inline cv::GFrame yield(cv::GCall &call, int i) { return ca... type MetaType (line 106) | struct MetaType type MetaType (line 107) | struct MetaType { using type = GMatDesc; } type MetaType (line 108) | struct MetaType { using type = GMatDesc; } type MetaType (line 109) | struct MetaType { using type = GFrameDesc; } type MetaType (line 110) | struct MetaType { using type = GScalarDesc; } type MetaType > (line 111) | struct MetaType > { using type = GArrayDesc; } type MetaType > (line 112) | struct MetaType > { using type = GOpaqueDesc; } type MetaType (line 113) | struct MetaType { using type = T; } function get_in_meta (line 121) | typename std::enable_if::value, typename MetaTyp... function get_in_meta (line 128) | typename std::enable_if::value, T> type MetaHelper (line 139) | struct MetaHelper type NoTag (line 195) | struct NoTag { class KernelTypeMedium (line 263) | class KernelTypeMedium type gapi (line 371) | namespace gapi function GBackend (line 376) | class GAPI_EXPORTS GBackend class GFunctor (line 417) | class GFunctor method GFunctor (line 426) | GFunctor(const char* id) : m_id(id) { } function GKernelPackage (line 462) | class GAPI_EXPORTS_W_SIMPLE GKernelPackage function includes (line 540) | bool includes() const function remove (line 567) | void remove() function includesAPI (line 579) | bool includesAPI() const function GBackend (line 598) | GBackend lookup() const function include (line 613) | void include() function include (line 624) | void include(const cv::gapi::GBackend& backend, const std::string& k... type gapi (line 415) | namespace gapi { function GBackend (line 376) | class GAPI_EXPORTS GBackend class GFunctor (line 417) | class GFunctor method GFunctor (line 426) | GFunctor(const char* id) : m_id(id) { } function GKernelPackage (line 462) | class GAPI_EXPORTS_W_SIMPLE GKernelPackage function includes (line 540) | bool includes() const function remove (line 567) | void remove() function includesAPI (line 579) | bool includesAPI() const function GBackend (line 598) | GBackend lookup() const function include (line 613) | void include() function include (line 624) | void include(const cv::gapi::GBackend& backend, const std::string& k... function GKernelPackage (line 668) | GKernelPackage kernels() function GKernelPackage (line 688) | GKernelPackage kernels(FF&... functors) function GKernelPackage (line 713) | GKernelPackage combine(const GKernelPackage &a, const GKernelPackage &... function use_only (line 726) | struct GAPI_EXPORTS use_only type MetaHelper, std::tuple > (line 142) | struct MetaHelper, std::tuple > method GMetaArgs (line 145) | static GMetaArgs getOutMeta_impl(const GMetaArgs &in_meta, method GMetaArgs (line 157) | static GMetaArgs getOutMeta(const GMetaArgs &in_meta, type MetaHelper, Out > (line 170) | struct MetaHelper, Out > method GMetaArgs (line 173) | static GMetaArgs getOutMeta_impl(const GMetaArgs &in_meta, method GMetaArgs (line 184) | static GMetaArgs getOutMeta(const GMetaArgs &in_meta, class GKernelTypeM(Args...)> > (line 208) | class GKernelTypeM(Args...)> > method yield (line 213) | static std::tuple yield(cv::GCall &call, detail::Seq) method on (line 223) | static std::tuple on(Args... args) class GKernelType > (line 239) | class GKernelType > method R (line 247) | static R on(Args... args) class KernelTypeMedium(Args...)>> (line 266) | class KernelTypeMedium(Args...)>> : class KernelTypeMedium> (line 270) | class KernelTypeMedium> : type cv (line 369) | namespace cv type GTypeInfo (line 29) | struct GTypeInfo function GKernel (line 44) | struct GAPI_EXPORTS GKernel function GKernelImpl (line 59) | struct GAPI_EXPORTS GKernelImpl class GKernelTypeM (line 65) | class GKernelTypeM type detail (line 67) | namespace detail type Yield (line 73) | struct Yield type Yield (line 74) | struct Yield method yield (line 76) | static inline cv::GMat yield(cv::GCall &call, int i) { return call... type Yield (line 78) | struct Yield method yield (line 80) | static inline cv::GMatP yield(cv::GCall &call, int i) { return cal... type Yield (line 82) | struct Yield method yield (line 84) | static inline cv::GScalar yield(cv::GCall &call, int i) { return c... type Yield > (line 86) | struct Yield > method yield (line 88) | static inline cv::GArray yield(cv::GCall &call, int i) { return... type Yield > (line 90) | struct Yield > method yield (line 92) | static inline cv::GOpaque yield(cv::GCall &call, int i) { retur... type Yield (line 94) | struct Yield method yield (line 96) | static inline cv::GFrame yield(cv::GCall &call, int i) { return ca... type MetaType (line 106) | struct MetaType type MetaType (line 107) | struct MetaType { using type = GMatDesc; } type MetaType (line 108) | struct MetaType { using type = GMatDesc; } type MetaType (line 109) | struct MetaType { using type = GFrameDesc; } type MetaType (line 110) | struct MetaType { using type = GScalarDesc; } type MetaType > (line 111) | struct MetaType > { using type = GArrayDesc; } type MetaType > (line 112) | struct MetaType > { using type = GOpaqueDesc; } type MetaType (line 113) | struct MetaType { using type = T; } function get_in_meta (line 121) | typename std::enable_if::value, typename MetaTyp... function get_in_meta (line 128) | typename std::enable_if::value, T> type MetaHelper (line 139) | struct MetaHelper type NoTag (line 195) | struct NoTag { class KernelTypeMedium (line 263) | class KernelTypeMedium class GKernelType (line 236) | class GKernelType type detail (line 260) | namespace detail { type Yield (line 73) | struct Yield type Yield (line 74) | struct Yield method yield (line 76) | static inline cv::GMat yield(cv::GCall &call, int i) { return call... type Yield (line 78) | struct Yield method yield (line 80) | static inline cv::GMatP yield(cv::GCall &call, int i) { return cal... type Yield (line 82) | struct Yield method yield (line 84) | static inline cv::GScalar yield(cv::GCall &call, int i) { return c... type Yield > (line 86) | struct Yield > method yield (line 88) | static inline cv::GArray yield(cv::GCall &call, int i) { return... type Yield > (line 90) | struct Yield > method yield (line 92) | static inline cv::GOpaque yield(cv::GCall &call, int i) { retur... type Yield (line 94) | struct Yield method yield (line 96) | static inline cv::GFrame yield(cv::GCall &call, int i) { return ca... type MetaType (line 106) | struct MetaType type MetaType (line 107) | struct MetaType { using type = GMatDesc; } type MetaType (line 108) | struct MetaType { using type = GMatDesc; } type MetaType (line 109) | struct MetaType { using type = GFrameDesc; } type MetaType (line 110) | struct MetaType { using type = GScalarDesc; } type MetaType > (line 111) | struct MetaType > { using type = GArrayDesc; } type MetaType > (line 112) | struct MetaType > { using type = GOpaqueDesc; } type MetaType (line 113) | struct MetaType { using type = T; } function get_in_meta (line 121) | typename std::enable_if::value, typename MetaTyp... function get_in_meta (line 128) | typename std::enable_if::value, T> type MetaHelper (line 139) | struct MetaHelper type NoTag (line 195) | struct NoTag { class KernelTypeMedium (line 263) | class KernelTypeMedium type gapi (line 371) | namespace gapi function GBackend (line 376) | class GAPI_EXPORTS GBackend class GFunctor (line 417) | class GFunctor method GFunctor (line 426) | GFunctor(const char* id) : m_id(id) { } function GKernelPackage (line 462) | class GAPI_EXPORTS_W_SIMPLE GKernelPackage function includes (line 540) | bool includes() const function remove (line 567) | void remove() function includesAPI (line 579) | bool includesAPI() const function GBackend (line 598) | GBackend lookup() const function include (line 613) | void include() function include (line 624) | void include(const cv::gapi::GBackend& backend, const std::string& k... type gapi (line 415) | namespace gapi { function GBackend (line 376) | class GAPI_EXPORTS GBackend class GFunctor (line 417) | class GFunctor method GFunctor (line 426) | GFunctor(const char* id) : m_id(id) { } function GKernelPackage (line 462) | class GAPI_EXPORTS_W_SIMPLE GKernelPackage function includes (line 540) | bool includes() const function remove (line 567) | void remove() function includesAPI (line 579) | bool includesAPI() const function GBackend (line 598) | GBackend lookup() const function include (line 613) | void include() function include (line 624) | void include(const cv::gapi::GBackend& backend, const std::string& k... function GKernelPackage (line 668) | GKernelPackage kernels() function GKernelPackage (line 688) | GKernelPackage kernels(FF&... functors) function GKernelPackage (line 713) | GKernelPackage combine(const GKernelPackage &a, const GKernelPackage &... function use_only (line 726) | struct GAPI_EXPORTS use_only type std (line 402) | namespace std type hash (line 404) | struct hash type cv (line 414) | namespace cv { type GTypeInfo (line 29) | struct GTypeInfo function GKernel (line 44) | struct GAPI_EXPORTS GKernel function GKernelImpl (line 59) | struct GAPI_EXPORTS GKernelImpl class GKernelTypeM (line 65) | class GKernelTypeM type detail (line 67) | namespace detail type Yield (line 73) | struct Yield type Yield (line 74) | struct Yield method yield (line 76) | static inline cv::GMat yield(cv::GCall &call, int i) { return call... type Yield (line 78) | struct Yield method yield (line 80) | static inline cv::GMatP yield(cv::GCall &call, int i) { return cal... type Yield (line 82) | struct Yield method yield (line 84) | static inline cv::GScalar yield(cv::GCall &call, int i) { return c... type Yield > (line 86) | struct Yield > method yield (line 88) | static inline cv::GArray yield(cv::GCall &call, int i) { return... type Yield > (line 90) | struct Yield > method yield (line 92) | static inline cv::GOpaque yield(cv::GCall &call, int i) { retur... type Yield (line 94) | struct Yield method yield (line 96) | static inline cv::GFrame yield(cv::GCall &call, int i) { return ca... type MetaType (line 106) | struct MetaType type MetaType (line 107) | struct MetaType { using type = GMatDesc; } type MetaType (line 108) | struct MetaType { using type = GMatDesc; } type MetaType (line 109) | struct MetaType { using type = GFrameDesc; } type MetaType (line 110) | struct MetaType { using type = GScalarDesc; } type MetaType > (line 111) | struct MetaType > { using type = GArrayDesc; } type MetaType > (line 112) | struct MetaType > { using type = GOpaqueDesc; } type MetaType (line 113) | struct MetaType { using type = T; } function get_in_meta (line 121) | typename std::enable_if::value, typename MetaTyp... function get_in_meta (line 128) | typename std::enable_if::value, T> type MetaHelper (line 139) | struct MetaHelper type NoTag (line 195) | struct NoTag { class KernelTypeMedium (line 263) | class KernelTypeMedium class GKernelType (line 236) | class GKernelType type detail (line 260) | namespace detail { type Yield (line 73) | struct Yield type Yield (line 74) | struct Yield method yield (line 76) | static inline cv::GMat yield(cv::GCall &call, int i) { return call... type Yield (line 78) | struct Yield method yield (line 80) | static inline cv::GMatP yield(cv::GCall &call, int i) { return cal... type Yield (line 82) | struct Yield method yield (line 84) | static inline cv::GScalar yield(cv::GCall &call, int i) { return c... type Yield > (line 86) | struct Yield > method yield (line 88) | static inline cv::GArray yield(cv::GCall &call, int i) { return... type Yield > (line 90) | struct Yield > method yield (line 92) | static inline cv::GOpaque yield(cv::GCall &call, int i) { retur... type Yield (line 94) | struct Yield method yield (line 96) | static inline cv::GFrame yield(cv::GCall &call, int i) { return ca... type MetaType (line 106) | struct MetaType type MetaType (line 107) | struct MetaType { using type = GMatDesc; } type MetaType (line 108) | struct MetaType { using type = GMatDesc; } type MetaType (line 109) | struct MetaType { using type = GFrameDesc; } type MetaType (line 110) | struct MetaType { using type = GScalarDesc; } type MetaType > (line 111) | struct MetaType > { using type = GArrayDesc; } type MetaType > (line 112) | struct MetaType > { using type = GOpaqueDesc; } type MetaType (line 113) | struct MetaType { using type = T; } function get_in_meta (line 121) | typename std::enable_if::value, typename MetaTyp... function get_in_meta (line 128) | typename std::enable_if::value, T> type MetaHelper (line 139) | struct MetaHelper type NoTag (line 195) | struct NoTag { class KernelTypeMedium (line 263) | class KernelTypeMedium type gapi (line 371) | namespace gapi function GBackend (line 376) | class GAPI_EXPORTS GBackend class GFunctor (line 417) | class GFunctor method GFunctor (line 426) | GFunctor(const char* id) : m_id(id) { } function GKernelPackage (line 462) | class GAPI_EXPORTS_W_SIMPLE GKernelPackage function includes (line 540) | bool includes() const function remove (line 567) | void remove() function includesAPI (line 579) | bool includesAPI() const function GBackend (line 598) | GBackend lookup() const function include (line 613) | void include() function include (line 624) | void include(const cv::gapi::GBackend& backend, const std::string& k... type gapi (line 415) | namespace gapi { function GBackend (line 376) | class GAPI_EXPORTS GBackend class GFunctor (line 417) | class GFunctor method GFunctor (line 426) | GFunctor(const char* id) : m_id(id) { } function GKernelPackage (line 462) | class GAPI_EXPORTS_W_SIMPLE GKernelPackage function includes (line 540) | bool includes() const function remove (line 567) | void remove() function includesAPI (line 579) | bool includesAPI() const function GBackend (line 598) | GBackend lookup() const function include (line 613) | void include() function include (line 624) | void include(const cv::gapi::GBackend& backend, const std::string& k... function GKernelPackage (line 668) | GKernelPackage kernels() function GKernelPackage (line 688) | GKernelPackage kernels(FF&... functors) function GKernelPackage (line 713) | GKernelPackage combine(const GKernelPackage &a, const GKernelPackage &... function use_only (line 726) | struct GAPI_EXPORTS use_only type detail (line 734) | namespace detail type CompileArgTag (line 736) | struct CompileArgTag type CompileArgTag (line 741) | struct CompileArgTag FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gmat.hpp type cv (line 20) | namespace cv class GNode (line 24) | class GNode type GOrigin (line 25) | struct GOrigin function GMat (line 66) | class GAPI_EXPORTS_W_SIMPLE GMat function GMatP (line 90) | class GAPI_EXPORTS GMatP : public GMat class RMat (line 96) | class RMat function GMatDesc (line 104) | struct GAPI_EXPORTS_W_SIMPLE GMatDesc function GMatDesc (line 232) | static inline GMatDesc empty_gmat_desc() { return GMatDesc{-1,-1,{-1,-... type gapi (line 234) | namespace gapi { namespace detail { type detail (line 234) | namespace detail { type own (line 260) | namespace own { class Mat (line 261) | class Mat type gapi (line 260) | namespace gapi { namespace own { type detail (line 234) | namespace detail { type own (line 260) | namespace own { class Mat (line 261) | class Mat FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gmetaarg.hpp type cv (line 23) | namespace cv type detail (line 48) | namespace detail type is_meta_descr (line 55) | struct is_meta_descr : std::false_type {} type is_meta_descr (line 56) | struct is_meta_descr : std::true_type {} type is_meta_descr (line 57) | struct is_meta_descr : std::true_type {} type is_meta_descr (line 58) | struct is_meta_descr : std::true_type {} type is_meta_descr (line 59) | struct is_meta_descr : std::true_type {} class UMat (line 71) | class UMat type gapi (line 74) | namespace gapi { namespace own { type own (line 74) | namespace own { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gopaque.hpp type cv (line 27) | namespace cv class GNode (line 31) | class GNode type GOrigin (line 32) | struct GOrigin class GOpaque (line 33) | class GOpaque method GOpaque (line 341) | GOpaque() { putDetails(); } method GOpaque (line 344) | explicit GOpaque(detail::GOpaqueU &&ref) // GOpaqueU-based constructor method strip (line 348) | detail::GOpaqueU strip() const { method Ctor (line 352) | static void Ctor(detail::OpaqueRef& ref) { method putDetails (line 356) | void putDetails() { function GOpaqueDesc (line 39) | struct GAPI_EXPORTS_W_SIMPLE GOpaqueDesc function GOpaqueDesc (line 45) | GOpaqueDesc descr_of(const U &) { return {};} function GAPI_EXPORTS_W (line 46) | GAPI_EXPORTS_W inline GOpaqueDesc empty_gopaque_desc() {return {}; } type detail (line 51) | namespace detail class OpaqueRef (line 58) | class OpaqueRef method check (line 237) | inline void check() const method OpaqueRef (line 243) | OpaqueRef() = default; method OpaqueRef (line 250) | explicit OpaqueRef(T&& obj) : method getKind (line 254) | cv::detail::OpaqueKind getKind() const method reset (line 259) | void reset() method storeKind (line 268) | void storeKind() method T (line 273) | T& wref() method T (line 279) | const T& rref() const method mov (line 285) | void mov(OpaqueRef &v) method descr_of (line 290) | cv::GOpaqueDesc descr_of() const method OpaqueRef (line 299) | OpaqueRef& operator= (const cv::util::any &a) function GOpaqueU (line 67) | class GAPI_EXPORTS GOpaqueU class BasicOpaqueRef (line 118) | class BasicOpaqueRef class OpaqueRefT (line 129) | class OpaqueRefT final: public BasicOpaqueRef method isEmpty (line 137) | inline bool isEmpty() const { return util::holds_alternative& ts, de... type GIOProtoArgs (line 57) | struct GIOProtoArgs method GIOProtoArgs (line 61) | GIOProtoArgs() = default; method GIOProtoArgs (line 62) | explicit GIOProtoArgs(const GProtoArgs& args) : m_args(args) {} method GIOProtoArgs (line 63) | explicit GIOProtoArgs(GProtoArgs &&args) : m_args(std::move(arg... type In_Tag (line 89) | struct In_Tag{} type Out_Tag (line 90) | struct Out_Tag{} function GProtoInputArgs (line 96) | inline GProtoInputArgs GIn(Ts&&... ts) function GProtoOutputArgs (line 101) | inline GProtoOutputArgs GOut(Ts&&... ts) type detail (line 106) | namespace detail function GProtoArgs (line 49) | inline GProtoArgs packArgs(Ts... args) function GProtoOutputArgs (line 111) | static GProtoOutputArgs getGOut_impl(const std::tuple& ts, de... function GProtoOutputArgs (line 117) | inline GProtoOutputArgs GOut(const std::tuple& ts) function GProtoOutputArgs (line 124) | inline GProtoOutputArgs GOut(std::tuple&& ts) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gpu/core.hpp type cv (line 16) | namespace cv { type gapi (line 17) | namespace gapi { type core (line 18) | namespace core { type gpu (line 19) | namespace gpu { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gpu/imgproc.hpp type cv (line 17) | namespace cv { type gapi (line 18) | namespace gapi { type imgproc (line 19) | namespace imgproc { type gpu (line 20) | namespace gpu { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gscalar.hpp type cv (line 18) | namespace cv class GNode (line 22) | class GNode type GOrigin (line 23) | struct GOrigin function GScalar (line 41) | class GAPI_EXPORTS_W_SIMPLE GScalar function GScalarDesc (line 117) | struct GAPI_EXPORTS_W_SIMPLE GScalarDesc function GAPI_EXPORTS_W (line 132) | GAPI_EXPORTS_W inline GScalarDesc empty_scalar_desc() { return GScalar... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gstreaming.hpp type cv (line 20) | namespace cv { type detail (line 24) | namespace detail { type wref_spec (line 25) | struct wref_spec { type wref_spec > (line 28) | struct wref_spec > { type OptRef (line 33) | struct OptRef { type OptHolder (line 34) | struct OptHolder { type Holder (line 40) | struct Holder final: OptHolder { method Holder (line 43) | explicit Holder(cv::optional& opt) : m_opt_ref(std::ref(opt)) { method mov (line 45) | virtual void mov(RefHolder &h) override { method reset (line 49) | virtual void reset() override { method OptRef (line 54) | explicit OptRef(cv::optional& t) : m_opt{new Holder(t)} {} method mov (line 55) | void mov(RefHolder &h) { m_opt->mov(h); } method reset (line 56) | void reset() { m_opt->reset();} function GOptRunArgP (line 85) | inline GOptRunArgP wrap_opt_arg(optional& arg) { function GOptRunArgP (line 90) | inline GOptRunArgP wrap_opt_arg(optional >& arg) { function GOptRunArgP (line 94) | inline GOptRunArgP wrap_opt_arg(optional &m) { function GOptRunArgP (line 98) | inline GOptRunArgP wrap_opt_arg(optional &s) { type CompileArgTag (line 410) | struct CompileArgTag type detail (line 83) | namespace detail { type wref_spec (line 25) | struct wref_spec { type wref_spec > (line 28) | struct wref_spec > { type OptRef (line 33) | struct OptRef { type OptHolder (line 34) | struct OptHolder { type Holder (line 40) | struct Holder final: OptHolder { method Holder (line 43) | explicit Holder(cv::optional& opt) : m_opt_ref(std::ref(opt)) { method mov (line 45) | virtual void mov(RefHolder &h) override { method reset (line 49) | virtual void reset() override { method OptRef (line 54) | explicit OptRef(cv::optional& t) : m_opt{new Holder(t)} {} method mov (line 55) | void mov(RefHolder &h) { m_opt->mov(h); } method reset (line 56) | void reset() { m_opt->reset();} function GOptRunArgP (line 85) | inline GOptRunArgP wrap_opt_arg(optional& arg) { function GOptRunArgP (line 90) | inline GOptRunArgP wrap_opt_arg(optional >& arg) { function GOptRunArgP (line 94) | inline GOptRunArgP wrap_opt_arg(optional &m) { function GOptRunArgP (line 98) | inline GOptRunArgP wrap_opt_arg(optional &s) { type CompileArgTag (line 410) | struct CompileArgTag function GOptRunArgsP (line 108) | inline GOptRunArgsP gout(optional&arg, optional&... args) function GStreamingCompiled (line 145) | class GAPI_EXPORTS_W_SIMPLE GStreamingCompiled type gapi (line 383) | namespace gapi { type streaming (line 392) | namespace streaming { function queue_capacity (line 399) | struct GAPI_EXPORTS queue_capacity type detail (line 408) | namespace detail type wref_spec (line 25) | struct wref_spec { type wref_spec > (line 28) | struct wref_spec > { type OptRef (line 33) | struct OptRef { type OptHolder (line 34) | struct OptHolder { type Holder (line 40) | struct Holder final: OptHolder { method Holder (line 43) | explicit Holder(cv::optional& opt) : m_opt_ref(std::ref(opt)) { method mov (line 45) | virtual void mov(RefHolder &h) override { method reset (line 49) | virtual void reset() override { method OptRef (line 54) | explicit OptRef(cv::optional& t) : m_opt{new Holder(t)} {} method mov (line 55) | void mov(RefHolder &h) { m_opt->mov(h); } method reset (line 56) | void reset() { m_opt->reset();} function GOptRunArgP (line 85) | inline GOptRunArgP wrap_opt_arg(optional& arg) { function GOptRunArgP (line 90) | inline GOptRunArgP wrap_opt_arg(optional >& arg) { function GOptRunArgP (line 94) | inline GOptRunArgP wrap_opt_arg(optional &m) { function GOptRunArgP (line 98) | inline GOptRunArgP wrap_opt_arg(optional &s) { type CompileArgTag (line 410) | struct CompileArgTag FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gtransform.hpp type cv (line 21) | namespace cv function GTransform (line 24) | struct GAPI_EXPORTS GTransform type detail (line 37) | namespace detail type TransHelper (line 41) | struct TransHelper class GTransformImpl (line 69) | class GTransformImpl type TransHelper, Out> (line 44) | struct TransHelper, Out> method GComputation (line 47) | static GComputation invoke(Callable f, Seq, Seq) method GComputation (line 55) | static GComputation get_pattern() method GComputation (line 60) | static GComputation get_substitute() class GTransformImpl> (line 72) | class GTransformImpl> : public cv::detail::... method GTransform (line 80) | static GTransform transformation() FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/gtype_traits.hpp type cv (line 23) | namespace cv type detail (line 25) | namespace detail type ArgKind (line 30) | enum class ArgKind: int type GTypeTraits (line 63) | struct GTypeTraits type GTypeTraits (line 64) | struct GTypeTraits type GTypeTraits (line 69) | struct GTypeTraits type GTypeTraits (line 75) | struct GTypeTraits type GTypeTraits (line 81) | struct GTypeTraits type GTypeTraits (line 87) | struct GTypeTraits type GTypeTraits > (line 93) | struct GTypeTraits > method wrap_value (line 100) | static cv::detail::GArrayU wrap_value(const cv::GArray &t) {... method wrap_in (line 101) | static cv::detail::VectorRef wrap_in (const std::vector &t) {... method wrap_out (line 102) | static cv::detail::VectorRef wrap_out ( std::vector &t) {... type GTypeTraits > (line 104) | struct GTypeTraits > method wrap_value (line 111) | static cv::detail::GOpaqueU wrap_value(const cv::GOpaque &t) ... method wrap_in (line 112) | static cv::detail::OpaqueRef wrap_in (const T &t) { return detai... method wrap_out (line 113) | static cv::detail::OpaqueRef wrap_out ( T &t) { return detai... type has_custom_wrap (line 118) | struct has_custom_wrap class check (line 120) | class check type GTypeOf (line 133) | struct GTypeOf type GTypeOf (line 135) | struct GTypeOf { using type = cv::GMat; } type GTypeOf (line 137) | struct GTypeOf { using type = cv::GMat; } type GTypeOf (line 138) | struct GTypeOf { using type = cv::GMat; } type GTypeOf (line 139) | struct GTypeOf { using type = cv::GScalar; } type GTypeOf > (line 140) | struct GTypeOf > { using type = cv::GArray; } type GTypeOf (line 141) | struct GTypeOf { using type = cv::GOpaque;} type GTypeOf (line 142) | struct GTypeOf { using type = cv::GFrame; } type GTypeOf (line 145) | struct GTypeOf { using type = cv:... type WrapValue (line 178) | struct WrapValue method wrap (line 180) | static auto wrap(const T& t) -> method U (line 186) | static U wrap_in (const U &u) { return u; } method U (line 187) | static U* wrap_out(U &u) { return &u; } type WrapValue::value>::type> (line 189) | struct WrapValue::valu... method wrap (line 191) | static auto wrap(const T& t) -> decltype(GTypeTraits::wrap_valu... method wrap_in (line 195) | static auto wrap_in (const U &u) -> typename GTypeTraits::strip... method wrap_out (line 199) | static auto wrap_out(U &u) -> typename GTypeTraits::strip_type type GObtainCtor (line 221) | struct GObtainCtor { method HostCtor (line 222) | static HostCtor get() { return HostCtor{}; } type GObtainCtor > (line 224) | struct GObtainCtor > { method HostCtor (line 225) | static HostCtor get() { return HostCtor{ConstructVec{&GArray::V... type GObtainCtor > (line 227) | struct GObtainCtor > { method HostCtor (line 228) | static HostCtor get() { return HostCtor{ConstructOpaque{&GOpaque (line 26) | struct ProtoToParam { using type = cv::Mat; } type ProtoToParam (line 27) | struct ProtoToParam { using type = cv::Scalar; } type ProtoToParam > (line 28) | struct ProtoToParam > { using type = std::vector; } type ProtoToParam> (line 29) | struct ProtoToParam> { using type = std::v... type ProtoToParam > (line 30) | struct ProtoToParam > { using type = U; } type ProtoToMeta (line 33) | struct ProtoToMeta type ProtoToMeta (line 34) | struct ProtoToMeta { using type = cv::GMatDesc; } type ProtoToMeta (line 35) | struct ProtoToMeta { using type = cv::GScalarDesc; } type ProtoToMeta > (line 36) | struct ProtoToMeta > { using type = cv::GArrayDesc; } type ProtoToMeta > (line 37) | struct ProtoToMeta > { using type = cv::GOpaqueDesc; } type ProtoToMeta (line 38) | struct ProtoToMeta { using type = cv::GFrameDesc; } function make_default (line 43) | auto make_default()->decltype(T{}) {return {};} class GComputationT (line 86) | class GComputationT class GComputationT (line 89) | class GComputationT class GCompiledT (line 94) | class GCompiledT method GCompiledT (line 101) | explicit GCompiledT(const cv::GCompiled &comp) : m_comp(comp) {} method GCompiledT (line 104) | GCompiledT() {} method Captured (line 121) | Captured capture(const Gen& g, Args... args) method GComputationT (line 130) | GComputationT(const Gen &generator) method apply (line 137) | void apply(detail::ProtoToParamT... inArgs, method apply (line 144) | void apply(detail::ProtoToParamT... inArgs, method GCompiledT (line 151) | GCompiledT compile(detail::ProtoToMetaT... inDescs) method GCompiledT (line 101) | explicit GCompiledT(const cv::GCompiled &comp) : m_comp(comp) {} method GCompiledT (line 104) | GCompiledT() {} method GCompiledT (line 157) | GCompiledT compile(detail::ProtoToMetaT... inDescs, GCompileArgs... method GCompiledT (line 101) | explicit GCompiledT(const cv::GCompiled &comp) : m_comp(comp) {} method GCompiledT (line 104) | GCompiledT() {} class GComputationT(Args...)> (line 165) | class GComputationT(Args...)> class GCompiledT (line 170) | class GCompiledT method GCompiledT (line 176) | explicit GCompiledT(const cv::GCompiled &comp) : m_comp(comp) {} method GCompiledT (line 179) | GCompiledT() {} method Captured (line 197) | Captured capture(GProtoArgs &&args, const std::tuple &rr, detail... method Captured (line 202) | Captured capture(const Gen& g, Args... args) method GComputationT (line 211) | GComputationT(const Gen &generator) method apply (line 218) | void apply(detail::ProtoToParamT... inArgs, method apply (line 225) | void apply(detail::ProtoToParamT... inArgs, method GCompiledT (line 232) | GCompiledT compile(detail::ProtoToMetaT... inDescs) method GCompiledT (line 176) | explicit GCompiledT(const cv::GCompiled &comp) : m_comp(comp) {} method GCompiledT (line 179) | GCompiledT() {} method GCompiledT (line 238) | GCompiledT compile(detail::ProtoToMetaT... inDescs, GCompileArgs... method GCompiledT (line 176) | explicit GCompiledT(const cv::GCompiled &comp) : m_comp(comp) {} method GCompiledT (line 179) | GCompiledT() {} FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/imgproc.hpp function validateFindingContoursMeta (line 30) | void validateFindingContoursMeta(const int depth, const int chan, const ... type cv (line 48) | namespace cv { namespace gapi { type gapi (line 48) | namespace gapi { type imgproc (line 54) | namespace imgproc { function GMatDesc (line 60) | static GMatDesc outMeta(GMatDesc in, int ddepth, Mat, Point, Scala... function GMatDesc (line 66) | static GMatDesc outMeta(GMatDesc in, int ddepth, Mat, Mat, Point, ... function GMatDesc (line 72) | static GMatDesc outMeta(GMatDesc in, int ddepth, Size, Point, bool... function GMatDesc (line 78) | static GMatDesc outMeta(GMatDesc in, Size, Point, int, Scalar) { function GMatDesc (line 84) | static GMatDesc outMeta(GMatDesc in, Size, double, double, int, Sc... function GMatDesc (line 90) | static GMatDesc outMeta(GMatDesc in, int) { function GMatDesc (line 96) | static GMatDesc outMeta(GMatDesc in, Mat, Point, int, int, Scalar) { function GMatDesc (line 102) | static GMatDesc outMeta(GMatDesc in, Mat, Point, int, int, Scalar) { function GMatDesc (line 109) | static GMatDesc outMeta(const GMatDesc &in, MorphTypes, Mat, Point... function GMatDesc (line 116) | static GMatDesc outMeta(GMatDesc in, int ddepth, int, int, int, do... function outMeta (line 122) | static std::tuple outMeta(GMatDesc in, int dde... function GMatDesc (line 129) | static GMatDesc outMeta(GMatDesc in, int ddepth, int, double, doub... function GMatDesc (line 136) | static GMatDesc outMeta(GMatDesc in, int, double, double, int) { function GMatDesc (line 142) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 148) | static GMatDesc outMeta(GMatDesc in, double, double, int, bool) { function GArrayDesc (line 156) | static GArrayDesc outMeta(GMatDesc, int, double, double, const Mat... function GArrayDesc (line 166) | static GArrayDesc outMeta(GMatDesc in, RetrMode mode, ContMethod, ... function GArrayDesc (line 177) | static GArrayDesc outMeta(GMatDesc in, RetrMode mode, ContMethod) function outMeta (line 187) | static std::tuple function outMeta (line 199) | static std::tuple function GOpaqueDesc (line 209) | static GOpaqueDesc outMeta(GMatDesc in) { function GOpaqueDesc (line 227) | static GOpaqueDesc outMeta(GArrayDesc) { function GOpaqueDesc (line 234) | static GOpaqueDesc outMeta(GArrayDesc) { function GOpaqueDesc (line 241) | static GOpaqueDesc outMeta(GMatDesc in,DistanceTypes,double,double... function GOpaqueDesc (line 252) | static GOpaqueDesc outMeta(GArrayDesc,DistanceTypes,double,double,... function GOpaqueDesc (line 260) | static GOpaqueDesc outMeta(GArrayDesc,DistanceTypes,double,double,... function GOpaqueDesc (line 268) | static GOpaqueDesc outMeta(GArrayDesc,DistanceTypes,double,double,... function GOpaqueDesc (line 275) | static GOpaqueDesc outMeta(GMatDesc in,int,double,double,double) { function GOpaqueDesc (line 286) | static GOpaqueDesc outMeta(GArrayDesc,DistanceTypes,double,double,... function GOpaqueDesc (line 294) | static GOpaqueDesc outMeta(GArrayDesc,DistanceTypes,double,double,... function GOpaqueDesc (line 302) | static GOpaqueDesc outMeta(GArrayDesc,DistanceTypes,double,double,... function GMatDesc (line 308) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 314) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 320) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 326) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 335) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 344) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 353) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 362) | static GMatDesc outMeta(GMatDesc in_y, GMatDesc in_uv) { function GMatDesc (line 375) | static GMatDesc outMeta(GMatDesc in_y, GMatDesc in_uv) { function GMatDesc (line 388) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 394) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 400) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 406) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 412) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 418) | static GMatDesc outMeta(GMatDesc in) { function GMatDesc (line 424) | static GMatDesc outMeta(GMatDesc in, float, float, float) { function GMatDesc (line 430) | static GMatDesc outMeta(GMatDesc in) { function outMeta (line 436) | static cv::GMatDesc outMeta(cv::GMatDesc in) { function outMeta (line 442) | static cv::GMatDesc outMeta(cv::GMatDesc in) { function outMeta (line 448) | static cv::GMatDesc outMeta(cv::GMatDesc in) { function GMatDesc (line 456) | static GMatDesc outMeta(GMatDesc inY, GMatDesc inUV) { function GMatDesc (line 470) | static GMatDesc outMeta(GMatDesc inY, GMatDesc inUV) { function GMatDesc (line 485) | static GMatDesc outMeta(GMatDesc inY, GMatDesc inUV) { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/infer.hpp type cv (line 26) | namespace cv { class GNetworkType (line 28) | class GNetworkType type detail (line 30) | namespace detail { type accepted_infer_types (line 34) | struct accepted_infer_types { type valid_infer2_types (line 46) | struct valid_infer2_types type valid_infer2_types< std::tuple, std::tuple > (line 50) | struct valid_infer2_types< std::tuple, std::tuple > { type InOutInfo (line 82) | struct InOutInfo class GInferOutputsTyped (line 89) | class GInferOutputsTyped method GInferOutputsTyped (line 92) | GInferOutputsTyped() = default; method GInferOutputsTyped (line 93) | GInferOutputsTyped(std::shared_ptr call) method OutT (line 98) | OutT at(const std::string& name) type Priv (line 114) | struct Priv method Priv (line 116) | Priv(std::shared_ptr c) class GInferInputsTyped (line 130) | class GInferInputsTyped method GInferInputsTyped (line 133) | GInferInputsTyped() method StorageT (line 148) | StorageT& operator[](const std::string& name) { method Map (line 153) | const Map& getBlobs() const { type Priv (line 158) | struct Priv function makeCall (line 167) | std::shared_ptr makeCall(const std::string &tag, function unpackBlobs (line 383) | void inline unpackBlobs(const cv::GInferInputs::Map& blobs, type InferROITraits (line 406) | struct InferROITraits type InferROITraits (line 409) | struct InferROITraits type InferROITraits (line 416) | struct InferROITraits function inferGenericROI (line 423) | typename InferROITraits::outType function strip (line 685) | gapi::GNetParam strip(T&& t) { type CompileArgTag (line 692) | struct CompileArgTag { type InferAPI (line 219) | struct InferAPI { type InferAPIRoi (line 229) | struct InferAPIRoi { type InferAPIList (line 240) | struct InferAPIList { type InferAPIList2 (line 251) | struct InferAPIList2 { type GInferBase (line 267) | struct GInferBase { method GMetaArgs (line 271) | static GMetaArgs getOutMeta(const GMetaArgs &, const GArgs &) { type GInferROIBase (line 278) | struct GInferROIBase { method GMetaArgs (line 282) | static GMetaArgs getOutMeta(const GMetaArgs &, const GArgs &) { type GInferListBase (line 289) | struct GInferListBase { method GMetaArgs (line 293) | static GMetaArgs getOutMeta(const GMetaArgs &, const GArgs &) { type GInferList2Base (line 300) | struct GInferList2Base { method GMetaArgs (line 304) | static GMetaArgs getOutMeta(const GMetaArgs &, const GArgs &) { type GInfer (line 313) | struct GInfer final type GInferROI (line 325) | struct GInferROI final type GInferList (line 338) | struct GInferList final type GInferList2 (line 353) | struct GInferList2 final type detail (line 382) | namespace detail { type accepted_infer_types (line 34) | struct accepted_infer_types { type valid_infer2_types (line 46) | struct valid_infer2_types type valid_infer2_types< std::tuple, std::tuple > (line 50) | struct valid_infer2_types< std::tuple, std::tuple > { type InOutInfo (line 82) | struct InOutInfo class GInferOutputsTyped (line 89) | class GInferOutputsTyped method GInferOutputsTyped (line 92) | GInferOutputsTyped() = default; method GInferOutputsTyped (line 93) | GInferOutputsTyped(std::shared_ptr call) method OutT (line 98) | OutT at(const std::string& name) type Priv (line 114) | struct Priv method Priv (line 116) | Priv(std::shared_ptr c) class GInferInputsTyped (line 130) | class GInferInputsTyped method GInferInputsTyped (line 133) | GInferInputsTyped() method StorageT (line 148) | StorageT& operator[](const std::string& name) { method Map (line 153) | const Map& getBlobs() const { type Priv (line 158) | struct Priv function makeCall (line 167) | std::shared_ptr makeCall(const std::string &tag, function unpackBlobs (line 383) | void inline unpackBlobs(const cv::GInferInputs::Map& blobs, type InferROITraits (line 406) | struct InferROITraits type InferROITraits (line 409) | struct InferROITraits type InferROITraits (line 416) | struct InferROITraits function inferGenericROI (line 423) | typename InferROITraits::outType function strip (line 685) | gapi::GNetParam strip(T&& t) { type CompileArgTag (line 692) | struct CompileArgTag { type gapi (line 455) | namespace gapi { function infer (line 471) | typename Net::Result infer(cv::GOpaque roi, T in) { function infer (line 489) | typename Net::ResultL infer(cv::GArray roi, Args&&... args) { function infer2 (line 512) | typename Net::ResultL infer2(T image, cv::GArray... args) { function infer (line 530) | typename Net::Result infer(Args&&... args) { type Generic (line 541) | struct Generic { } function infer (line 550) | cv::GInferOutputs function infer (line 577) | cv::GInferOutputs function infer (line 592) | cv::GInferListOutputs function infer2 (line 607) | typename std::enable_if::val... function GNetParam (line 658) | struct GAPI_EXPORTS_W_SIMPLE GNetParam { function GNetPackage (line 673) | struct GAPI_EXPORTS_W_SIMPLE GNetPackage { function networks (line 700) | cv::gapi::GNetPackage networks(Args&&... args) { type gapi (line 650) | namespace gapi { function infer (line 471) | typename Net::Result infer(cv::GOpaque roi, T in) { function infer (line 489) | typename Net::ResultL infer(cv::GArray roi, Args&&... args) { function infer2 (line 512) | typename Net::ResultL infer2(T image, cv::GArray... args) { function infer (line 530) | typename Net::Result infer(Args&&... args) { type Generic (line 541) | struct Generic { } function infer (line 550) | cv::GInferOutputs function infer (line 577) | cv::GInferOutputs function infer (line 592) | cv::GInferListOutputs function infer2 (line 607) | typename std::enable_if::val... function GNetParam (line 658) | struct GAPI_EXPORTS_W_SIMPLE GNetParam { function GNetPackage (line 673) | struct GAPI_EXPORTS_W_SIMPLE GNetPackage { function networks (line 700) | cv::gapi::GNetPackage networks(Args&&... args) { type detail (line 683) | namespace detail { type accepted_infer_types (line 34) | struct accepted_infer_types { type valid_infer2_types (line 46) | struct valid_infer2_types type valid_infer2_types< std::tuple, std::tuple > (line 50) | struct valid_infer2_types< std::tuple, std::tuple > { type InOutInfo (line 82) | struct InOutInfo class GInferOutputsTyped (line 89) | class GInferOutputsTyped method GInferOutputsTyped (line 92) | GInferOutputsTyped() = default; method GInferOutputsTyped (line 93) | GInferOutputsTyped(std::shared_ptr call) method OutT (line 98) | OutT at(const std::string& name) type Priv (line 114) | struct Priv method Priv (line 116) | Priv(std::shared_ptr c) class GInferInputsTyped (line 130) | class GInferInputsTyped method GInferInputsTyped (line 133) | GInferInputsTyped() method StorageT (line 148) | StorageT& operator[](const std::string& name) { method Map (line 153) | const Map& getBlobs() const { type Priv (line 158) | struct Priv function makeCall (line 167) | std::shared_ptr makeCall(const std::string &tag, function unpackBlobs (line 383) | void inline unpackBlobs(const cv::GInferInputs::Map& blobs, type InferROITraits (line 406) | struct InferROITraits type InferROITraits (line 409) | struct InferROITraits type InferROITraits (line 416) | struct InferROITraits function inferGenericROI (line 423) | typename InferROITraits::outType function strip (line 685) | gapi::GNetParam strip(T&& t) { type CompileArgTag (line 692) | struct CompileArgTag { type gapi (line 698) | namespace gapi { function infer (line 471) | typename Net::Result infer(cv::GOpaque roi, T in) { function infer (line 489) | typename Net::ResultL infer(cv::GArray roi, Args&&... args) { function infer2 (line 512) | typename Net::ResultL infer2(T image, cv::GArray... args) { function infer (line 530) | typename Net::Result infer(Args&&... args) { type Generic (line 541) | struct Generic { } function infer (line 550) | cv::GInferOutputs function infer (line 577) | cv::GInferOutputs function infer (line 592) | cv::GInferListOutputs function infer2 (line 607) | typename std::enable_if::val... function GNetParam (line 658) | struct GAPI_EXPORTS_W_SIMPLE GNetParam { function GNetPackage (line 673) | struct GAPI_EXPORTS_W_SIMPLE GNetPackage { function networks (line 700) | cv::gapi::GNetPackage networks(Args&&... args) { type valid_infer2_types< std::tuple<>, std::tuple > (line 62) | struct valid_infer2_types< std::tuple<>, std::tuple > type valid_infer2_types< std::tuple, std::tuple<> > (line 68) | struct valid_infer2_types< std::tuple, std::tuple<> > type valid_infer2_types< std::tuple, std::tuple > (line 74) | struct valid_infer2_types< std::tuple, std::tuple(Args...)> > (line 191) | class GNetworkType(Args...)> > class GNetworkType > (line 205) | class GNetworkType > type cv (line 454) | namespace cv { class GNetworkType (line 28) | class GNetworkType type detail (line 30) | namespace detail { type accepted_infer_types (line 34) | struct accepted_infer_types { type valid_infer2_types (line 46) | struct valid_infer2_types type valid_infer2_types< std::tuple, std::tuple > (line 50) | struct valid_infer2_types< std::tuple, std::tuple > { type InOutInfo (line 82) | struct InOutInfo class GInferOutputsTyped (line 89) | class GInferOutputsTyped method GInferOutputsTyped (line 92) | GInferOutputsTyped() = default; method GInferOutputsTyped (line 93) | GInferOutputsTyped(std::shared_ptr call) method OutT (line 98) | OutT at(const std::string& name) type Priv (line 114) | struct Priv method Priv (line 116) | Priv(std::shared_ptr c) class GInferInputsTyped (line 130) | class GInferInputsTyped method GInferInputsTyped (line 133) | GInferInputsTyped() method StorageT (line 148) | StorageT& operator[](const std::string& name) { method Map (line 153) | const Map& getBlobs() const { type Priv (line 158) | struct Priv function makeCall (line 167) | std::shared_ptr makeCall(const std::string &tag, function unpackBlobs (line 383) | void inline unpackBlobs(const cv::GInferInputs::Map& blobs, type InferROITraits (line 406) | struct InferROITraits type InferROITraits (line 409) | struct InferROITraits type InferROITraits (line 416) | struct InferROITraits function inferGenericROI (line 423) | typename InferROITraits::outType function strip (line 685) | gapi::GNetParam strip(T&& t) { type CompileArgTag (line 692) | struct CompileArgTag { type InferAPI (line 219) | struct InferAPI { type InferAPIRoi (line 229) | struct InferAPIRoi { type InferAPIList (line 240) | struct InferAPIList { type InferAPIList2 (line 251) | struct InferAPIList2 { type GInferBase (line 267) | struct GInferBase { method GMetaArgs (line 271) | static GMetaArgs getOutMeta(const GMetaArgs &, const GArgs &) { type GInferROIBase (line 278) | struct GInferROIBase { method GMetaArgs (line 282) | static GMetaArgs getOutMeta(const GMetaArgs &, const GArgs &) { type GInferListBase (line 289) | struct GInferListBase { method GMetaArgs (line 293) | static GMetaArgs getOutMeta(const GMetaArgs &, const GArgs &) { type GInferList2Base (line 300) | struct GInferList2Base { method GMetaArgs (line 304) | static GMetaArgs getOutMeta(const GMetaArgs &, const GArgs &) { type GInfer (line 313) | struct GInfer final type GInferROI (line 325) | struct GInferROI final type GInferList (line 338) | struct GInferList final type GInferList2 (line 353) | struct GInferList2 final type detail (line 382) | namespace detail { type accepted_infer_types (line 34) | struct accepted_infer_types { type valid_infer2_types (line 46) | struct valid_infer2_types type valid_infer2_types< std::tuple, std::tuple > (line 50) | struct valid_infer2_types< std::tuple, std::tuple > { type InOutInfo (line 82) | struct InOutInfo class GInferOutputsTyped (line 89) | class GInferOutputsTyped method GInferOutputsTyped (line 92) | GInferOutputsTyped() = default; method GInferOutputsTyped (line 93) | GInferOutputsTyped(std::shared_ptr call) method OutT (line 98) | OutT at(const std::string& name) type Priv (line 114) | struct Priv method Priv (line 116) | Priv(std::shared_ptr c) class GInferInputsTyped (line 130) | class GInferInputsTyped method GInferInputsTyped (line 133) | GInferInputsTyped() method StorageT (line 148) | StorageT& operator[](const std::string& name) { method Map (line 153) | const Map& getBlobs() const { type Priv (line 158) | struct Priv function makeCall (line 167) | std::shared_ptr makeCall(const std::string &tag, function unpackBlobs (line 383) | void inline unpackBlobs(const cv::GInferInputs::Map& blobs, type InferROITraits (line 406) | struct InferROITraits type InferROITraits (line 409) | struct InferROITraits type InferROITraits (line 416) | struct InferROITraits function inferGenericROI (line 423) | typename InferROITraits::outType function strip (line 685) | gapi::GNetParam strip(T&& t) { type CompileArgTag (line 692) | struct CompileArgTag { type gapi (line 455) | namespace gapi { function infer (line 471) | typename Net::Result infer(cv::GOpaque roi, T in) { function infer (line 489) | typename Net::ResultL infer(cv::GArray roi, Args&&... args) { function infer2 (line 512) | typename Net::ResultL infer2(T image, cv::GArray... args) { function infer (line 530) | typename Net::Result infer(Args&&... args) { type Generic (line 541) | struct Generic { } function infer (line 550) | cv::GInferOutputs function infer (line 577) | cv::GInferOutputs function infer (line 592) | cv::GInferListOutputs function infer2 (line 607) | typename std::enable_if::val... function GNetParam (line 658) | struct GAPI_EXPORTS_W_SIMPLE GNetParam { function GNetPackage (line 673) | struct GAPI_EXPORTS_W_SIMPLE GNetPackage { function networks (line 700) | cv::gapi::GNetPackage networks(Args&&... args) { type gapi (line 650) | namespace gapi { function infer (line 471) | typename Net::Result infer(cv::GOpaque roi, T in) { function infer (line 489) | typename Net::ResultL infer(cv::GArray roi, Args&&... args) { function infer2 (line 512) | typename Net::ResultL infer2(T image, cv::GArray... args) { function infer (line 530) | typename Net::Result infer(Args&&... args) { type Generic (line 541) | struct Generic { } function infer (line 550) | cv::GInferOutputs function infer (line 577) | cv::GInferOutputs function infer (line 592) | cv::GInferListOutputs function infer2 (line 607) | typename std::enable_if::val... function GNetParam (line 658) | struct GAPI_EXPORTS_W_SIMPLE GNetParam { function GNetPackage (line 673) | struct GAPI_EXPORTS_W_SIMPLE GNetPackage { function networks (line 700) | cv::gapi::GNetPackage networks(Args&&... args) { type detail (line 683) | namespace detail { type accepted_infer_types (line 34) | struct accepted_infer_types { type valid_infer2_types (line 46) | struct valid_infer2_types type valid_infer2_types< std::tuple, std::tuple > (line 50) | struct valid_infer2_types< std::tuple, std::tuple > { type InOutInfo (line 82) | struct InOutInfo class GInferOutputsTyped (line 89) | class GInferOutputsTyped method GInferOutputsTyped (line 92) | GInferOutputsTyped() = default; method GInferOutputsTyped (line 93) | GInferOutputsTyped(std::shared_ptr call) method OutT (line 98) | OutT at(const std::string& name) type Priv (line 114) | struct Priv method Priv (line 116) | Priv(std::shared_ptr c) class GInferInputsTyped (line 130) | class GInferInputsTyped method GInferInputsTyped (line 133) | GInferInputsTyped() method StorageT (line 148) | StorageT& operator[](const std::string& name) { method Map (line 153) | const Map& getBlobs() const { type Priv (line 158) | struct Priv function makeCall (line 167) | std::shared_ptr makeCall(const std::string &tag, function unpackBlobs (line 383) | void inline unpackBlobs(const cv::GInferInputs::Map& blobs, type InferROITraits (line 406) | struct InferROITraits type InferROITraits (line 409) | struct InferROITraits type InferROITraits (line 416) | struct InferROITraits function inferGenericROI (line 423) | typename InferROITraits::outType function strip (line 685) | gapi::GNetParam strip(T&& t) { type CompileArgTag (line 692) | struct CompileArgTag { type gapi (line 698) | namespace gapi { function infer (line 471) | typename Net::Result infer(cv::GOpaque roi, T in) { function infer (line 489) | typename Net::ResultL infer(cv::GArray roi, Args&&... args) { function infer2 (line 512) | typename Net::ResultL infer2(T image, cv::GArray... args) { function infer (line 530) | typename Net::Result infer(Args&&... args) { type Generic (line 541) | struct Generic { } function infer (line 550) | cv::GInferOutputs function infer (line 577) | cv::GInferOutputs function infer (line 592) | cv::GInferListOutputs function infer2 (line 607) | typename std::enable_if::val... function GNetParam (line 658) | struct GAPI_EXPORTS_W_SIMPLE GNetParam { function GNetPackage (line 673) | struct GAPI_EXPORTS_W_SIMPLE GNetPackage { function networks (line 700) | cv::gapi::GNetPackage networks(Args&&... args) { type cv (line 649) | namespace cv { class GNetworkType (line 28) | class GNetworkType type detail (line 30) | namespace detail { type accepted_infer_types (line 34) | struct accepted_infer_types { type valid_infer2_types (line 46) | struct valid_infer2_types type valid_infer2_types< std::tuple, std::tuple > (line 50) | struct valid_infer2_types< std::tuple, std::tuple > { type InOutInfo (line 82) | struct InOutInfo class GInferOutputsTyped (line 89) | class GInferOutputsTyped method GInferOutputsTyped (line 92) | GInferOutputsTyped() = default; method GInferOutputsTyped (line 93) | GInferOutputsTyped(std::shared_ptr call) method OutT (line 98) | OutT at(const std::string& name) type Priv (line 114) | struct Priv method Priv (line 116) | Priv(std::shared_ptr c) class GInferInputsTyped (line 130) | class GInferInputsTyped method GInferInputsTyped (line 133) | GInferInputsTyped() method StorageT (line 148) | StorageT& operator[](const std::string& name) { method Map (line 153) | const Map& getBlobs() const { type Priv (line 158) | struct Priv function makeCall (line 167) | std::shared_ptr makeCall(const std::string &tag, function unpackBlobs (line 383) | void inline unpackBlobs(const cv::GInferInputs::Map& blobs, type InferROITraits (line 406) | struct InferROITraits type InferROITraits (line 409) | struct InferROITraits type InferROITraits (line 416) | struct InferROITraits function inferGenericROI (line 423) | typename InferROITraits::outType function strip (line 685) | gapi::GNetParam strip(T&& t) { type CompileArgTag (line 692) | struct CompileArgTag { type InferAPI (line 219) | struct InferAPI { type InferAPIRoi (line 229) | struct InferAPIRoi { type InferAPIList (line 240) | struct InferAPIList { type InferAPIList2 (line 251) | struct InferAPIList2 { type GInferBase (line 267) | struct GInferBase { method GMetaArgs (line 271) | static GMetaArgs getOutMeta(const GMetaArgs &, const GArgs &) { type GInferROIBase (line 278) | struct GInferROIBase { method GMetaArgs (line 282) | static GMetaArgs getOutMeta(const GMetaArgs &, const GArgs &) { type GInferListBase (line 289) | struct GInferListBase { method GMetaArgs (line 293) | static GMetaArgs getOutMeta(const GMetaArgs &, const GArgs &) { type GInferList2Base (line 300) | struct GInferList2Base { method GMetaArgs (line 304) | static GMetaArgs getOutMeta(const GMetaArgs &, const GArgs &) { type GInfer (line 313) | struct GInfer final type GInferROI (line 325) | struct GInferROI final type GInferList (line 338) | struct GInferList final type GInferList2 (line 353) | struct GInferList2 final type detail (line 382) | namespace detail { type accepted_infer_types (line 34) | struct accepted_infer_types { type valid_infer2_types (line 46) | struct valid_infer2_types type valid_infer2_types< std::tuple, std::tuple > (line 50) | struct valid_infer2_types< std::tuple, std::tuple > { type InOutInfo (line 82) | struct InOutInfo class GInferOutputsTyped (line 89) | class GInferOutputsTyped method GInferOutputsTyped (line 92) | GInferOutputsTyped() = default; method GInferOutputsTyped (line 93) | GInferOutputsTyped(std::shared_ptr call) method OutT (line 98) | OutT at(const std::string& name) type Priv (line 114) | struct Priv method Priv (line 116) | Priv(std::shared_ptr c) class GInferInputsTyped (line 130) | class GInferInputsTyped method GInferInputsTyped (line 133) | GInferInputsTyped() method StorageT (line 148) | StorageT& operator[](const std::string& name) { method Map (line 153) | const Map& getBlobs() const { type Priv (line 158) | struct Priv function makeCall (line 167) | std::shared_ptr makeCall(const std::string &tag, function unpackBlobs (line 383) | void inline unpackBlobs(const cv::GInferInputs::Map& blobs, type InferROITraits (line 406) | struct InferROITraits type InferROITraits (line 409) | struct InferROITraits type InferROITraits (line 416) | struct InferROITraits function inferGenericROI (line 423) | typename InferROITraits::outType function strip (line 685) | gapi::GNetParam strip(T&& t) { type CompileArgTag (line 692) | struct CompileArgTag { type gapi (line 455) | namespace gapi { function infer (line 471) | typename Net::Result infer(cv::GOpaque roi, T in) { function infer (line 489) | typename Net::ResultL infer(cv::GArray roi, Args&&... args) { function infer2 (line 512) | typename Net::ResultL infer2(T image, cv::GArray... args) { function infer (line 530) | typename Net::Result infer(Args&&... args) { type Generic (line 541) | struct Generic { } function infer (line 550) | cv::GInferOutputs function infer (line 577) | cv::GInferOutputs function infer (line 592) | cv::GInferListOutputs function infer2 (line 607) | typename std::enable_if::val... function GNetParam (line 658) | struct GAPI_EXPORTS_W_SIMPLE GNetParam { function GNetPackage (line 673) | struct GAPI_EXPORTS_W_SIMPLE GNetPackage { function networks (line 700) | cv::gapi::GNetPackage networks(Args&&... args) { type gapi (line 650) | namespace gapi { function infer (line 471) | typename Net::Result infer(cv::GOpaque roi, T in) { function infer (line 489) | typename Net::ResultL infer(cv::GArray roi, Args&&... args) { function infer2 (line 512) | typename Net::ResultL infer2(T image, cv::GArray... args) { function infer (line 530) | typename Net::Result infer(Args&&... args) { type Generic (line 541) | struct Generic { } function infer (line 550) | cv::GInferOutputs function infer (line 577) | cv::GInferOutputs function infer (line 592) | cv::GInferListOutputs function infer2 (line 607) | typename std::enable_if::val... function GNetParam (line 658) | struct GAPI_EXPORTS_W_SIMPLE GNetParam { function GNetPackage (line 673) | struct GAPI_EXPORTS_W_SIMPLE GNetPackage { function networks (line 700) | cv::gapi::GNetPackage networks(Args&&... args) { type detail (line 683) | namespace detail { type accepted_infer_types (line 34) | struct accepted_infer_types { type valid_infer2_types (line 46) | struct valid_infer2_types type valid_infer2_types< std::tuple, std::tuple > (line 50) | struct valid_infer2_types< std::tuple, std::tuple > { type InOutInfo (line 82) | struct InOutInfo class GInferOutputsTyped (line 89) | class GInferOutputsTyped method GInferOutputsTyped (line 92) | GInferOutputsTyped() = default; method GInferOutputsTyped (line 93) | GInferOutputsTyped(std::shared_ptr call) method OutT (line 98) | OutT at(const std::string& name) type Priv (line 114) | struct Priv method Priv (line 116) | Priv(std::shared_ptr c) class GInferInputsTyped (line 130) | class GInferInputsTyped method GInferInputsTyped (line 133) | GInferInputsTyped() method StorageT (line 148) | StorageT& operator[](const std::string& name) { method Map (line 153) | const Map& getBlobs() const { type Priv (line 158) | struct Priv function makeCall (line 167) | std::shared_ptr makeCall(const std::string &tag, function unpackBlobs (line 383) | void inline unpackBlobs(const cv::GInferInputs::Map& blobs, type InferROITraits (line 406) | struct InferROITraits type InferROITraits (line 409) | struct InferROITraits type InferROITraits (line 416) | struct InferROITraits function inferGenericROI (line 423) | typename InferROITraits::outType function strip (line 685) | gapi::GNetParam strip(T&& t) { type CompileArgTag (line 692) | struct CompileArgTag { type gapi (line 698) | namespace gapi { function infer (line 471) | typename Net::Result infer(cv::GOpaque roi, T in) { function infer (line 489) | typename Net::ResultL infer(cv::GArray roi, Args&&... args) { function infer2 (line 512) | typename Net::ResultL infer2(T image, cv::GArray... args) { function infer (line 530) | typename Net::Result infer(Args&&... args) { type Generic (line 541) | struct Generic { } function infer (line 550) | cv::GInferOutputs function infer (line 577) | cv::GInferOutputs function infer (line 592) | cv::GInferListOutputs function infer2 (line 607) | typename std::enable_if::val... function GNetParam (line 658) | struct GAPI_EXPORTS_W_SIMPLE GNetParam { function GNetPackage (line 673) | struct GAPI_EXPORTS_W_SIMPLE GNetPackage { function networks (line 700) | cv::gapi::GNetPackage networks(Args&&... args) { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/infer/bindings_ie.hpp type cv (line 17) | namespace cv { type gapi (line 18) | namespace gapi { type ie (line 19) | namespace ie { function PyParams (line 23) | class GAPI_EXPORTS_W_SIMPLE PyParams { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/infer/ie.hpp type cv (line 24) | namespace cv { type gapi (line 25) | namespace gapi { type ie (line 32) | namespace ie { type TraitAs (line 46) | enum class TraitAs: int type detail (line 54) | namespace detail { type ParamDesc (line 55) | struct ParamDesc { type Kind (line 69) | enum class Kind {Load, Import} type PortCfg (line 87) | struct PortCfg { class Params (line 100) | class Params { method Params (line 111) | Params(const std::string &model, method Params (line 133) | Params(const std::string &model, method Params (line 210) | Params& pluginConfig(const IEConfig& cfg) { method Params (line 221) | Params& pluginConfig(IEConfig&& cfg) { method Params (line 234) | Params& cfgContextParams(const cv::util::any& ctx_cfg) { method Params (line 245) | Params& cfgContextParams(cv::util::any&& ctx_cfg) { method Params (line 255) | Params& cfgNumRequests(size_t nireq) { method GBackend (line 320) | GBackend backend() const { return cv::gapi::ie::backend(... method tag (line 321) | std::string tag() const { return Net::tag(); } method params (line 322) | cv::util::any params() const { return { desc }; } class Params (line 335) | class Params { method Params (line 347) | Params(const std::string &tag, method Params (line 366) | Params(const std::string &tag, method Params (line 376) | Params& pluginConfig(const IEConfig& cfg) { method Params (line 382) | Params& pluginConfig(IEConfig&& cfg) { method Params (line 388) | Params& constInput(const std::string &layer_name, method Params (line 396) | Params& cfgNumRequests(size_t nireq) { method Params (line 403) | Params& cfgInputReshape(const std::map && layer... method Params (line 433) | Params& cfgInputReshape(const std::unordered_set&la... method GBackend (line 439) | GBackend backend() const { return cv::gapi::ie::backend(... method tag (line 440) | std::string tag() const { return m_tag; } method params (line 441) | cv::util::any params() const { return { desc }; } FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/infer/onnx.hpp type cv (line 21) | namespace cv { type gapi (line 22) | namespace gapi { type onnx (line 27) | namespace onnx { type TraitAs (line 31) | enum class TraitAs: int { type detail (line 41) | namespace detail { type ParamDesc (line 46) | struct ParamDesc { type PortCfg (line 74) | struct PortCfg { class Params (line 93) | class Params { method Params (line 102) | Params(const std::string &model) { method GBackend (line 271) | GBackend backend() const { return cv::gapi::onnx::backend(); } method tag (line 272) | std::string tag() const { return Net::tag(); } method params (line 273) | cv::util::any params() const { return { desc }; } FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/infer/parsers.hpp type cv (line 16) | namespace cv { namespace gapi { type gapi (line 16) | namespace gapi { type nn (line 17) | namespace nn { type parsers (line 18) | namespace parsers { function outMeta (line 24) | static std::tuple outMeta(const GMatDesc&... function GArrayDesc (line 31) | static GArrayDesc outMeta(const GMatDesc&, const GOpaqueDesc&, f... function outMeta (line 38) | static std::tuple outMeta(const GMatDesc... type streaming (line 129) | namespace streaming { type gapi (line 128) | namespace gapi { type nn (line 17) | namespace nn { type parsers (line 18) | namespace parsers { function outMeta (line 24) | static std::tuple outMeta(const GMatDesc&... function GArrayDesc (line 31) | static GArrayDesc outMeta(const GMatDesc&, const GOpaqueDesc&, f... function outMeta (line 38) | static std::tuple outMeta(const GMatDesc... type streaming (line 129) | namespace streaming { type cv (line 127) | namespace cv { type gapi (line 16) | namespace gapi { type nn (line 17) | namespace nn { type parsers (line 18) | namespace parsers { function outMeta (line 24) | static std::tuple outMeta(const GMatDesc&... function GArrayDesc (line 31) | static GArrayDesc outMeta(const GMatDesc&, const GOpaqueDesc&, f... function outMeta (line 38) | static std::tuple outMeta(const GMatDesc... type streaming (line 129) | namespace streaming { type gapi (line 128) | namespace gapi { type nn (line 17) | namespace nn { type parsers (line 18) | namespace parsers { function outMeta (line 24) | static std::tuple outMeta(const GMatDesc&... function GArrayDesc (line 31) | static GArrayDesc outMeta(const GMatDesc&, const GOpaqueDesc&, f... function outMeta (line 38) | static std::tuple outMeta(const GMatDesc... type streaming (line 129) | namespace streaming { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/media.hpp type cv (line 18) | namespace cv { function MediaFrame (line 42) | class GAPI_EXPORTS MediaFrame { class GAPI_EXPORTS (line 177) | class GAPI_EXPORTS function View (line 188) | View(const View&) = delete; function View (line 191) | View(View&&) = default; class GAPI_EXPORTS (line 216) | class GAPI_EXPORTS FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/ocl/core.hpp type cv (line 14) | namespace cv { type gapi (line 15) | namespace gapi { type core (line 16) | namespace core { type ocl (line 17) | namespace ocl { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/ocl/goclkernel.hpp type cv (line 22) | namespace cv { type gimpl (line 24) | namespace gimpl class GOCLExecutable (line 27) | class GOCLExecutable type gapi (line 30) | namespace gapi type ocl (line 35) | namespace ocl function GOCLContext (line 57) | class GAPI_EXPORTS GOCLContext function GOCLKernel (line 90) | class GAPI_EXPORTS GOCLKernel type detail (line 107) | namespace detail type ocl_get_in (line 109) | struct ocl_get_in method T (line 128) | static T get(GOCLContext &ctx, int idx) { return ctx.inArg(idx); } type ocl_get_in (line 110) | struct ocl_get_in method get (line 112) | static cv::UMat get(GOCLContext &ctx, int idx) { return ctx.inM... type ocl_get_in (line 114) | struct ocl_get_in method get (line 116) | static cv::Scalar get(GOCLContext &ctx, int idx) { return ctx.inVa... type ocl_get_in > (line 118) | struct ocl_get_in > type ocl_get_in > (line 122) | struct ocl_get_in > method U (line 124) | static const U& get(GOCLContext &ctx, int idx) { return ctx.inArg<... type ocl_get_in (line 126) | struct ocl_get_in method T (line 128) | static T get(GOCLContext &ctx, int idx) { return ctx.inArg(idx); } type tracked_cv_umat (line 131) | struct tracked_cv_umat{ method tracked_cv_umat (line 134) | tracked_cv_umat(cv::UMat& m) : r(m), original_data{ nullptr } {} method validate (line 140) | void validate() const{ function postprocess_ocl (line 153) | void postprocess_ocl(Outputs&... outs) type ocl_get_out (line 166) | struct ocl_get_out type ocl_get_out (line 167) | struct ocl_get_out method tracked_cv_umat (line 169) | static tracked_cv_umat get(GOCLContext &ctx, int idx) type ocl_get_out (line 175) | struct ocl_get_out type ocl_get_out > (line 182) | struct ocl_get_out > type ocl_get_out > (line 186) | struct ocl_get_out > method U (line 188) | static U& get(GOCLContext &ctx, int idx) { return ctx.outOpaqueR, std::tuple > (line 196) | struct OCLCallHelper, std::tuple > type call_and_postprocess (line 199) | struct call_and_postprocess method call (line 202) | static void call(Inputs&&... ins, Outputs&&... outs) method call_impl (line 213) | static void call_impl(GOCLContext &ctx, detail::Seq, detail::S... method call (line 222) | static void call(GOCLContext &ctx) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/ocl/imgproc.hpp type cv (line 14) | namespace cv { type gapi (line 15) | namespace gapi { type imgproc (line 16) | namespace imgproc { type ocl (line 17) | namespace ocl { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/opencv_includes.hpp type cv (line 23) | namespace cv { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/operators.hpp type cv (line 14) | namespace cv FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/own/assert.hpp type detail (line 33) | namespace detail function assert_abort (line 35) | [[noreturn]] inline void assert_abort(const char* str, int line, const... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/own/convert.hpp type cv (line 16) | namespace cv function to_own (line 19) | std::vector to_own(const cv::MatSize &sz) { function to_own (line 30) | inline cv::gapi::own::Mat to_own(Mat const& m) { type gapi (line 36) | namespace gapi type own (line 38) | namespace own function to_ocv (line 41) | inline cv::Mat to_ocv(Mat const& m) { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/own/cvdefs.hpp type cv (line 115) | namespace cv type BorderTypes (line 117) | enum BorderTypes { type InterpolationFlags (line 130) | enum InterpolationFlags{ function cvFloor (line 141) | static inline int cvFloor( double value ) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/own/mat.hpp type cv (line 23) | namespace cv { namespace gapi { namespace own { type gapi (line 23) | namespace gapi { namespace own { type own (line 23) | namespace own { type detail (line 24) | namespace detail { function assign_row (line 26) | void assign_row(void* ptr, int cols, Scalar const& s) function default_step (line 38) | inline size_t default_step(int type, int cols) type MatHeader (line 44) | struct MatHeader{ method MatHeader (line 48) | MatHeader() = default; method MatHeader (line 50) | MatHeader(int _rows, int _cols, int type, void* _data, size_t ... method MatHeader (line 54) | MatHeader(const std::vector &_dims, int type, void* _data) method MatHeader (line 58) | MatHeader(const MatHeader& ) = default; method MatHeader (line 59) | MatHeader(MatHeader&& src) : MatHeader(src) // reuse copy cons... method MatHeader (line 64) | MatHeader& operator=(const MatHeader& ) = default; method MatHeader (line 65) | MatHeader& operator=(MatHeader&& src) class Mat (line 88) | class Mat : public detail::MatHeader{ method Mat (line 91) | Mat() = default; method Mat (line 107) | Mat(int _rows, int _cols, int _type, void* _data, size_t _step =... method Mat (line 111) | Mat(const std::vector &_dims, int _type, void* _data) method Mat (line 115) | Mat(std::vector &&_dims, int _type, void* _data) method Mat (line 119) | Mat(Mat const& src, const Rect& roi ) method Mat (line 127) | Mat(Mat const& ) = default; method Mat (line 128) | Mat(Mat&& ) = default; method Mat (line 130) | Mat& operator=(Mat const& ) = default; method Mat (line 131) | Mat& operator=(Mat&& ) = default; method Mat (line 136) | Mat& operator = (const Scalar& s) method elemSize (line 186) | size_t elemSize() const method type (line 195) | int type() const {return CV_MAT_TYPE(flags);} method depth (line 210) | int depth() const {return CV_MAT_DEPTH(flags);} method channels (line 217) | int channels() const {return dims.empty() ? CV_MAT_CN(fla... method create (line 224) | void create(int _rows, int _cols, int _type) method create (line 232) | void create(Size _size, int _type) method create (line 245) | void create(const std::vector &_dims, int _type) method Mat (line 262) | Mat clone() const method copyTo (line 279) | void copyTo(Mat& dst) const method empty (line 301) | bool empty() const method total (line 311) | size_t total() const method Mat (line 321) | Mat operator()( const Rect& roi ) const method uchar (line 334) | uchar* ptr(int row, int col = 0) method uchar (line 339) | const uchar* ptr(int row, int col = 0) const FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/own/saturate.hpp type cv (line 18) | namespace cv { namespace gapi { namespace own { type gapi (line 18) | namespace gapi { namespace own { type own (line 18) | namespace own { function DST (line 26) | static inline DST saturate(SRC x) function DST (line 52) | static inline DST saturate(SRC x, R round) function ceild (line 82) | inline double ceild(double x) { return ceil(x); } function floord (line 83) | inline double floord(double x) { return floor(x); } function roundd (line 84) | inline double roundd(double x) { return round(x); } function rintd (line 85) | inline double rintd(double x) { return rint(x); } FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/own/scalar.hpp type cv (line 13) | namespace cv type gapi (line 15) | namespace gapi type own (line 17) | namespace own function Scalar (line 20) | class GAPI_EXPORTS Scalar FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/own/types.hpp type cv (line 14) | namespace cv type gapi (line 16) | namespace gapi type own (line 23) | namespace own class Point (line 26) | class Point method Point (line 29) | Point() = default; method Point (line 30) | Point(int _x, int _y) : x(_x), y(_y) {} class Point2f (line 36) | class Point2f method Point2f (line 39) | Point2f() = default; method Point2f (line 40) | Point2f(float _x, float _y) : x(_x), y(_y) {} class Rect (line 46) | class Rect method Rect (line 49) | Rect() = default; method Rect (line 50) | Rect(int _x, int _y, int _width, int _height) : x(_x), y(_y), ... method Rect (line 52) | Rect(const cv::Rect& other) : x(other.x), y(other.y), width(othe... method Rect (line 53) | inline Rect& operator=(const cv::Rect& other) function Rect (line 79) | inline Rect& operator&=(Rect& lhs, const Rect& rhs) method Rect (line 49) | Rect() = default; method Rect (line 50) | Rect(int _x, int _y, int _width, int _height) : x(_x), y(_y), ... method Rect (line 52) | Rect(const cv::Rect& other) : x(other.x), y(other.y), width(othe... method Rect (line 53) | inline Rect& operator=(const cv::Rect& other) function Rect (line 92) | inline const Rect operator&(const Rect& lhs, const Rect& rhs) method Rect (line 49) | Rect() = default; method Rect (line 50) | Rect(int _x, int _y, int _width, int _height) : x(_x), y(_y), ... method Rect (line 52) | Rect(const cv::Rect& other) : x(other.x), y(other.y), width(othe... method Rect (line 53) | inline Rect& operator=(const cv::Rect& other) class Size (line 103) | class Size method Size (line 106) | Size() = default; method Size (line 107) | Size(int _width, int _height) : width(_width), height(_height) {} method Size (line 109) | Size(const cv::Size& other) : width(other.width), height(other.h... method Size (line 110) | inline Size& operator=(const cv::Size& rhs) function Size (line 122) | inline Size& operator+=(Size& lhs, const Size& rhs) method Size (line 106) | Size() = default; method Size (line 107) | Size(int _width, int _height) : width(_width), height(_height) {} method Size (line 109) | Size(const cv::Size& other) : width(other.width), height(other.h... method Size (line 110) | inline Size& operator=(const cv::Size& rhs) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/plaidml/core.hpp type cv (line 14) | namespace cv { namespace gapi { namespace core { namespace plaidml { type gapi (line 14) | namespace gapi { namespace core { namespace plaidml { type core (line 14) | namespace core { namespace plaidml { type plaidml (line 14) | namespace plaidml { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/plaidml/gplaidmlkernel.hpp type plaidml (line 15) | namespace plaidml type edsl (line 17) | namespace edsl class Tensor (line 19) | class Tensor type cv (line 23) | namespace cv type gapi (line 25) | namespace gapi type plaidml (line 27) | namespace plaidml type GPlaidMLContext (line 35) | struct GPlaidMLContext method T (line 39) | const T& inArg(int input) { return m_args.at(input).get(); } function GPlaidMLKernel (line 56) | class GAPI_EXPORTS GPlaidMLKernel type detail (line 75) | namespace detail type plaidml_get_in (line 78) | struct plaidml_get_in method T (line 89) | static T get(GPlaidMLContext &ctx, int idx) { return ctx.inArg(... type plaidml_get_in (line 79) | struct plaidml_get_in type plaidml_get_in (line 87) | struct plaidml_get_in method T (line 89) | static T get(GPlaidMLContext &ctx, int idx) { return ctx.inArg(... type plaidml_get_out (line 92) | struct plaidml_get_out type plaidml_get_out (line 93) | struct plaidml_get_out type PlaidMLCallHelper (line 102) | struct PlaidMLCallHelper class GPlaidMLKernelImpl (line 124) | class GPlaidMLKernelImpl: public cv::detail::PlaidMLCallHelper, std::tuple > (line 105) | struct PlaidMLCallHelper, std::tuple > method call_impl (line 108) | static void call_impl(GPlaidMLContext &ctx, detail::Seq, detai... method call (line 113) | static void call(GPlaidMLContext& ctx) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/plaidml/plaidml.hpp type cv (line 14) | namespace cv type gapi (line 16) | namespace gapi type plaidml (line 23) | namespace plaidml type config (line 33) | struct config type detail (line 43) | namespace detail type CompileArgTag (line 45) | struct CompileArgTag FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/python/python.hpp type cv (line 14) | namespace cv { type gapi (line 15) | namespace gapi { type python (line 25) | namespace python { type GPythonContext (line 29) | struct GPythonContext function GPythonKernel (line 38) | class GAPI_EXPORTS GPythonKernel class GAPI_EXPORTS (line 49) | class GAPI_EXPORTS FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/render/render.hpp type cv (line 64) | namespace cv type gapi (line 66) | namespace gapi type wip (line 68) | namespace wip type draw (line 70) | namespace draw function GMatDesc2 (line 113) | static GMatDesc2 outMeta(GMatDesc y_plane, GMatDesc uv_plane, GA... function GMatDesc (line 121) | static GMatDesc outMeta(GMatDesc bgr, GArrayDesc) function GFrameDesc (line 129) | static GFrameDesc outMeta(GFrameDesc desc, GArrayDesc) type render (line 176) | namespace render type ocv (line 178) | namespace ocv type detail (line 186) | namespace detail type CompileArgTag (line 188) | struct CompileArgTag FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/render/render_types.hpp type cv (line 18) | namespace cv type gapi (line 20) | namespace gapi type wip (line 22) | namespace wip type draw (line 24) | namespace draw type freetype_font (line 30) | struct freetype_font function Text (line 44) | struct GAPI_EXPORTS_W_SIMPLE Text type FText (line 94) | struct FText method FText (line 104) | FText(const std::wstring& text_, method FText (line 112) | FText() = default; function Rect (line 127) | struct GAPI_EXPORTS_W_SIMPLE Rect function Circle (line 164) | struct GAPI_EXPORTS_W_SIMPLE Circle function Line (line 205) | struct GAPI_EXPORTS_W_SIMPLE Line function Mosaic (line 246) | struct GAPI_EXPORTS_W_SIMPLE Mosaic function Image (line 277) | struct GAPI_EXPORTS_W_SIMPLE Image function Poly (line 307) | struct GAPI_EXPORTS_W_SIMPLE Poly FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/rmat.hpp type cv (line 14) | namespace cv { type gapi (line 15) | namespace gapi { type s11n (line 16) | namespace s11n { type IOStream (line 17) | struct IOStream type IIStream (line 18) | struct IIStream function RMat (line 48) | class GAPI_EXPORTS RMat type Access (line 103) | enum class Access { R, W } class Adapter (line 104) | class Adapter method serialize (line 113) | virtual void serialize(cv::gapi::s11n::IOStream&) { method deserialize (line 116) | virtual void deserialize(cv::gapi::s11n::IIStream&) { function RMat (line 123) | RMat(AdapterP&& a) : m_adapter(std::move(a)) {} function GMatDesc (line 124) | GMatDesc desc() const { return m_adapter->desc(); } function View (line 131) | View access(Access a) const { return m_adapter->access(a); } function T (line 135) | T* get() const function serialize (line 142) | void serialize(cv::gapi::s11n::IOStream& os) const { type cv (line 23) | namespace cv { type gapi (line 15) | namespace gapi { type s11n (line 16) | namespace s11n { type IOStream (line 17) | struct IOStream type IIStream (line 18) | struct IIStream function RMat (line 48) | class GAPI_EXPORTS RMat type Access (line 103) | enum class Access { R, W } class Adapter (line 104) | class Adapter method serialize (line 113) | virtual void serialize(cv::gapi::s11n::IOStream&) { method deserialize (line 116) | virtual void deserialize(cv::gapi::s11n::IIStream&) { function RMat (line 123) | RMat(AdapterP&& a) : m_adapter(std::move(a)) {} function GMatDesc (line 124) | GMatDesc desc() const { return m_adapter->desc(); } function View (line 131) | View access(Access a) const { return m_adapter->access(a); } function T (line 135) | T* get() const function serialize (line 142) | void serialize(cv::gapi::s11n::IOStream& os) const { function RMat (line 151) | RMat make_rmat(Ts&&... args) { return { std::make_shared(std::forward... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/s11n.hpp type cv (line 17) | namespace cv { type gapi (line 18) | namespace gapi { type detail (line 20) | namespace detail { type try_deserialize_comparg (line 279) | struct try_deserialize_comparg type try_deserialize_comparg> (line 281) | struct try_deserialize_comparg> { method exec (line 282) | static cv::util::optional exec(const std::string&, ... type deserialize_runarg (line 301) | struct deserialize_runarg method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { type deserialize_runarg (line 304) | struct deserialize_runarg { method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { function tryDeserializeCompArg (line 319) | inline cv::util::optional tryDeserializeCompArg(const... function getCompileArgs (line 326) | cv::GCompileArgs getCompileArgs(const std::vector &sArgs) { function getRunArgsWithRMats (line 354) | cv::GRunArgs getRunArgsWithRMats(const std::vector &p) { function deserialize (line 49) | inline function deserialize (line 54) | inline function deserialize (line 59) | inline function deserialize (line 64) | inline function deserialize (line 69) | inline function deserialize (line 75) | inline type s11n (line 85) | namespace s11n { function IOStream (line 86) | struct GAPI_EXPORTS IOStream { function IIStream (line 102) | struct GAPI_EXPORTS IIStream { type detail (line 118) | namespace detail { function IOStream (line 233) | IOStream& put_v(IOStream&, const V&, std::size_t) { function IOStream (line 237) | IOStream& put_v(IOStream& os, const V& v, std::size_t x) { function IIStream (line 243) | IIStream& get_v(IIStream&, V&, std::size_t, std::size_t) { function IIStream (line 247) | IIStream& get_v(IIStream& is, V& v, std::size_t i, std::size_t g... function IOStream (line 170) | IOStream& operator<< (IOStream& os, const std::map &m) { function IIStream (line 177) | IIStream& operator>> (IIStream& is, std::map &m) { function IOStream (line 190) | IOStream& operator<< (IOStream& os, const std::unordered_map... function IIStream (line 197) | IIStream& operator>> (IIStream& is, std::unordered_map &m) { function IOStream (line 210) | IOStream& operator<< (IOStream& os, const std::vector &ts) { function IIStream (line 217) | IIStream& operator>> (IIStream& is, std::vector &ts) { type detail (line 231) | namespace detail { function IOStream (line 233) | IOStream& put_v(IOStream&, const V&, std::size_t) { function IOStream (line 237) | IOStream& put_v(IOStream& os, const V& v, std::size_t x) { function IIStream (line 243) | IIStream& get_v(IIStream&, V&, std::size_t, std::size_t) { function IIStream (line 247) | IIStream& get_v(IIStream& is, V& v, std::size_t i, std::size_t g... function IOStream (line 258) | IOStream& operator<< (IOStream& os, const cv::util::variant... function IIStream (line 263) | IIStream& operator>> (IIStream& is, cv::util::variant &v) { function getRunArgByIdx (line 272) | void getRunArgByIdx (IIStream& is, cv::util::variant &v, ui... type detail (line 277) | namespace detail type try_deserialize_comparg (line 279) | struct try_deserialize_comparg type try_deserialize_comparg> (line 281) | struct try_deserialize_comparg> { method exec (line 282) | static cv::util::optional exec(const std::string&, ... type deserialize_runarg (line 301) | struct deserialize_runarg method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { type deserialize_runarg (line 304) | struct deserialize_runarg { method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { function tryDeserializeCompArg (line 319) | inline cv::util::optional tryDeserializeCompArg(const... function getCompileArgs (line 326) | cv::GCompileArgs getCompileArgs(const std::vector &sArgs) { function getRunArgsWithRMats (line 354) | cv::GRunArgs getRunArgsWithRMats(const std::vector &p) { type gapi (line 84) | namespace gapi { type detail (line 20) | namespace detail { type try_deserialize_comparg (line 279) | struct try_deserialize_comparg type try_deserialize_comparg> (line 281) | struct try_deserialize_comparg> { method exec (line 282) | static cv::util::optional exec(const std::string&, ... type deserialize_runarg (line 301) | struct deserialize_runarg method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { type deserialize_runarg (line 304) | struct deserialize_runarg { method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { function tryDeserializeCompArg (line 319) | inline cv::util::optional tryDeserializeCompArg(const... function getCompileArgs (line 326) | cv::GCompileArgs getCompileArgs(const std::vector &sArgs) { function getRunArgsWithRMats (line 354) | cv::GRunArgs getRunArgsWithRMats(const std::vector &p) { function deserialize (line 49) | inline function deserialize (line 54) | inline function deserialize (line 59) | inline function deserialize (line 64) | inline function deserialize (line 69) | inline function deserialize (line 75) | inline type s11n (line 85) | namespace s11n { function IOStream (line 86) | struct GAPI_EXPORTS IOStream { function IIStream (line 102) | struct GAPI_EXPORTS IIStream { type detail (line 118) | namespace detail { function IOStream (line 233) | IOStream& put_v(IOStream&, const V&, std::size_t) { function IOStream (line 237) | IOStream& put_v(IOStream& os, const V& v, std::size_t x) { function IIStream (line 243) | IIStream& get_v(IIStream&, V&, std::size_t, std::size_t) { function IIStream (line 247) | IIStream& get_v(IIStream& is, V& v, std::size_t i, std::size_t g... function IOStream (line 170) | IOStream& operator<< (IOStream& os, const std::map &m) { function IIStream (line 177) | IIStream& operator>> (IIStream& is, std::map &m) { function IOStream (line 190) | IOStream& operator<< (IOStream& os, const std::unordered_map... function IIStream (line 197) | IIStream& operator>> (IIStream& is, std::unordered_map &m) { function IOStream (line 210) | IOStream& operator<< (IOStream& os, const std::vector &ts) { function IIStream (line 217) | IIStream& operator>> (IIStream& is, std::vector &ts) { type detail (line 231) | namespace detail { function IOStream (line 233) | IOStream& put_v(IOStream&, const V&, std::size_t) { function IOStream (line 237) | IOStream& put_v(IOStream& os, const V& v, std::size_t x) { function IIStream (line 243) | IIStream& get_v(IIStream&, V&, std::size_t, std::size_t) { function IIStream (line 247) | IIStream& get_v(IIStream& is, V& v, std::size_t i, std::size_t g... function IOStream (line 258) | IOStream& operator<< (IOStream& os, const cv::util::variant... function IIStream (line 263) | IIStream& operator>> (IIStream& is, cv::util::variant &v) { function getRunArgByIdx (line 272) | void getRunArgByIdx (IIStream& is, cv::util::variant &v, ui... type detail (line 277) | namespace detail type try_deserialize_comparg (line 279) | struct try_deserialize_comparg type try_deserialize_comparg> (line 281) | struct try_deserialize_comparg> { method exec (line 282) | static cv::util::optional exec(const std::string&, ... type deserialize_runarg (line 301) | struct deserialize_runarg method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { type deserialize_runarg (line 304) | struct deserialize_runarg { method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { function tryDeserializeCompArg (line 319) | inline cv::util::optional tryDeserializeCompArg(const... function getCompileArgs (line 326) | cv::GCompileArgs getCompileArgs(const std::vector &sArgs) { function getRunArgsWithRMats (line 354) | cv::GRunArgs getRunArgsWithRMats(const std::vector &p) { type cv (line 83) | namespace cv { type gapi (line 18) | namespace gapi { type detail (line 20) | namespace detail { type try_deserialize_comparg (line 279) | struct try_deserialize_comparg type try_deserialize_comparg> (line 281) | struct try_deserialize_comparg> { method exec (line 282) | static cv::util::optional exec(const std::string&, ... type deserialize_runarg (line 301) | struct deserialize_runarg method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { type deserialize_runarg (line 304) | struct deserialize_runarg { method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { function tryDeserializeCompArg (line 319) | inline cv::util::optional tryDeserializeCompArg(const... function getCompileArgs (line 326) | cv::GCompileArgs getCompileArgs(const std::vector &sArgs) { function getRunArgsWithRMats (line 354) | cv::GRunArgs getRunArgsWithRMats(const std::vector &p) { function deserialize (line 49) | inline function deserialize (line 54) | inline function deserialize (line 59) | inline function deserialize (line 64) | inline function deserialize (line 69) | inline function deserialize (line 75) | inline type s11n (line 85) | namespace s11n { function IOStream (line 86) | struct GAPI_EXPORTS IOStream { function IIStream (line 102) | struct GAPI_EXPORTS IIStream { type detail (line 118) | namespace detail { function IOStream (line 233) | IOStream& put_v(IOStream&, const V&, std::size_t) { function IOStream (line 237) | IOStream& put_v(IOStream& os, const V& v, std::size_t x) { function IIStream (line 243) | IIStream& get_v(IIStream&, V&, std::size_t, std::size_t) { function IIStream (line 247) | IIStream& get_v(IIStream& is, V& v, std::size_t i, std::size_t g... function IOStream (line 170) | IOStream& operator<< (IOStream& os, const std::map &m) { function IIStream (line 177) | IIStream& operator>> (IIStream& is, std::map &m) { function IOStream (line 190) | IOStream& operator<< (IOStream& os, const std::unordered_map... function IIStream (line 197) | IIStream& operator>> (IIStream& is, std::unordered_map &m) { function IOStream (line 210) | IOStream& operator<< (IOStream& os, const std::vector &ts) { function IIStream (line 217) | IIStream& operator>> (IIStream& is, std::vector &ts) { type detail (line 231) | namespace detail { function IOStream (line 233) | IOStream& put_v(IOStream&, const V&, std::size_t) { function IOStream (line 237) | IOStream& put_v(IOStream& os, const V& v, std::size_t x) { function IIStream (line 243) | IIStream& get_v(IIStream&, V&, std::size_t, std::size_t) { function IIStream (line 247) | IIStream& get_v(IIStream& is, V& v, std::size_t i, std::size_t g... function IOStream (line 258) | IOStream& operator<< (IOStream& os, const cv::util::variant... function IIStream (line 263) | IIStream& operator>> (IIStream& is, cv::util::variant &v) { function getRunArgByIdx (line 272) | void getRunArgByIdx (IIStream& is, cv::util::variant &v, ui... type detail (line 277) | namespace detail type try_deserialize_comparg (line 279) | struct try_deserialize_comparg type try_deserialize_comparg> (line 281) | struct try_deserialize_comparg> { method exec (line 282) | static cv::util::optional exec(const std::string&, ... type deserialize_runarg (line 301) | struct deserialize_runarg method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { type deserialize_runarg (line 304) | struct deserialize_runarg { method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { function tryDeserializeCompArg (line 319) | inline cv::util::optional tryDeserializeCompArg(const... function getCompileArgs (line 326) | cv::GCompileArgs getCompileArgs(const std::vector &sArgs) { function getRunArgsWithRMats (line 354) | cv::GRunArgs getRunArgsWithRMats(const std::vector &p) { type gapi (line 84) | namespace gapi { type detail (line 20) | namespace detail { type try_deserialize_comparg (line 279) | struct try_deserialize_comparg type try_deserialize_comparg> (line 281) | struct try_deserialize_comparg> { method exec (line 282) | static cv::util::optional exec(const std::string&, ... type deserialize_runarg (line 301) | struct deserialize_runarg method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { type deserialize_runarg (line 304) | struct deserialize_runarg { method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { function tryDeserializeCompArg (line 319) | inline cv::util::optional tryDeserializeCompArg(const... function getCompileArgs (line 326) | cv::GCompileArgs getCompileArgs(const std::vector &sArgs) { function getRunArgsWithRMats (line 354) | cv::GRunArgs getRunArgsWithRMats(const std::vector &p) { function deserialize (line 49) | inline function deserialize (line 54) | inline function deserialize (line 59) | inline function deserialize (line 64) | inline function deserialize (line 69) | inline function deserialize (line 75) | inline type s11n (line 85) | namespace s11n { function IOStream (line 86) | struct GAPI_EXPORTS IOStream { function IIStream (line 102) | struct GAPI_EXPORTS IIStream { type detail (line 118) | namespace detail { function IOStream (line 233) | IOStream& put_v(IOStream&, const V&, std::size_t) { function IOStream (line 237) | IOStream& put_v(IOStream& os, const V& v, std::size_t x) { function IIStream (line 243) | IIStream& get_v(IIStream&, V&, std::size_t, std::size_t) { function IIStream (line 247) | IIStream& get_v(IIStream& is, V& v, std::size_t i, std::size_t g... function IOStream (line 170) | IOStream& operator<< (IOStream& os, const std::map &m) { function IIStream (line 177) | IIStream& operator>> (IIStream& is, std::map &m) { function IOStream (line 190) | IOStream& operator<< (IOStream& os, const std::unordered_map... function IIStream (line 197) | IIStream& operator>> (IIStream& is, std::unordered_map &m) { function IOStream (line 210) | IOStream& operator<< (IOStream& os, const std::vector &ts) { function IIStream (line 217) | IIStream& operator>> (IIStream& is, std::vector &ts) { type detail (line 231) | namespace detail { function IOStream (line 233) | IOStream& put_v(IOStream&, const V&, std::size_t) { function IOStream (line 237) | IOStream& put_v(IOStream& os, const V& v, std::size_t x) { function IIStream (line 243) | IIStream& get_v(IIStream&, V&, std::size_t, std::size_t) { function IIStream (line 247) | IIStream& get_v(IIStream& is, V& v, std::size_t i, std::size_t g... function IOStream (line 258) | IOStream& operator<< (IOStream& os, const cv::util::variant... function IIStream (line 263) | IIStream& operator>> (IIStream& is, cv::util::variant &v) { function getRunArgByIdx (line 272) | void getRunArgByIdx (IIStream& is, cv::util::variant &v, ui... type detail (line 277) | namespace detail type try_deserialize_comparg (line 279) | struct try_deserialize_comparg type try_deserialize_comparg> (line 281) | struct try_deserialize_comparg> { method exec (line 282) | static cv::util::optional exec(const std::string&, ... type deserialize_runarg (line 301) | struct deserialize_runarg method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { type deserialize_runarg (line 304) | struct deserialize_runarg { method GRunArg (line 305) | static GRunArg exec(cv::gapi::s11n::IIStream& is, uint32_t idx) { function tryDeserializeCompArg (line 319) | inline cv::util::optional tryDeserializeCompArg(const... function getCompileArgs (line 326) | cv::GCompileArgs getCompileArgs(const std::vector &sArgs) { function getRunArgsWithRMats (line 354) | cv::GRunArgs getRunArgsWithRMats(const std::vector &p) { type try_deserialize_comparg> (line 288) | struct try_deserialize_comparg> { method exec (line 289) | static cv::util::optional exec(const std::string& tag, cv... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/s11n/base.hpp type cv (line 13) | namespace cv { type gapi (line 14) | namespace gapi { type s11n (line 20) | namespace s11n { type IOStream (line 21) | struct IOStream type IIStream (line 22) | struct IIStream type detail (line 24) | namespace detail { type NotImplemented (line 26) | struct NotImplemented { type S11N (line 32) | struct S11N: public NotImplemented { method serialize (line 33) | static void serialize(IOStream &, const T &) { method T (line 36) | static T deserialize(IIStream &) { type has_S11N_spec (line 41) | struct has_S11N_spec { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/stereo.hpp type cv (line 14) | namespace cv { type gapi (line 15) | namespace gapi { type StereoOutputFormat (line 20) | enum class StereoOutputFormat { type calib3d (line 46) | namespace calib3d { function GMatDesc (line 49) | static GMatDesc outMeta(const GMatDesc &left, const GMatDesc &righ... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/streaming/cap.hpp type cv (line 30) | namespace cv { type gapi (line 31) | namespace gapi { type wip (line 32) | namespace wip { class GCaptureSource (line 47) | class GCaptureSource: public IStreamSource method GCaptureSource (line 50) | explicit GCaptureSource(int id) : cap(id) { prep(); } method GCaptureSource (line 51) | explicit GCaptureSource(const std::string &path) : cap(path) { p... method prep (line 62) | void prep() method pull (line 79) | virtual bool pull(cv::gapi::wip::Data &data) override method GMetaArg (line 109) | virtual GMetaArg descr_of() const override function GAPI_EXPORTS_W (line 117) | GAPI_EXPORTS_W cv::Ptr inline make_capture_src(cons... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/streaming/desync.hpp type cv (line 19) | namespace cv { type gapi (line 20) | namespace gapi { type streaming (line 21) | namespace streaming { type detail (line 23) | namespace detail { type GDesync (line 24) | struct GDesync { method yield (line 35) | static std::tuple yield(cv::GCall &call, cv::detail::Seq... function G (line 41) | G desync(const G &g) { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/streaming/format.hpp type cv (line 12) | namespace cv { type gapi (line 13) | namespace gapi { type streaming (line 14) | namespace streaming { function GMatDesc (line 20) | static GMatDesc outMeta(const GFrameDesc& in) { return GMatDesc{CV... function GMatDesc (line 24) | static GMatDesc outMeta(const GFrameDesc& frameDesc) { function GMatDesc (line 30) | static GMatDesc outMeta(const GFrameDesc& frameDesc) { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/streaming/meta.hpp type cv (line 16) | namespace cv { type gapi (line 17) | namespace gapi { type streaming (line 18) | namespace streaming { type meta_tag (line 21) | namespace meta_tag { type detail (line 26) | namespace detail { type GMeta (line 27) | struct GMeta { method yield (line 33) | static std::tuple yield(cv::GCall &call, cv::detail::Seq... method GMetaArgs (line 37) | static GMetaArgs getOutMeta(const GMetaArgs &args, const GArgs... function meta (line 44) | cv::GOpaque meta(G g, const std::string &tag) { function timestamp (line 60) | cv::GOpaque timestamp(G g) { function seq_id (line 65) | cv::GOpaque seq_id(G g) { function seqNo (line 70) | cv::GOpaque seqNo(G g) { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/streaming/source.hpp type cv (line 16) | namespace cv { type gapi (line 17) | namespace gapi { type wip (line 18) | namespace wip { type Data (line 19) | struct Data class IStreamSource (line 39) | class IStreamSource: public std::enable_shared_from_this (line 23) | struct CompileArgTag { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/util/any.hpp type cv (line 23) | namespace cv type internal (line 26) | namespace internal function T (line 29) | T down_cast(Source operand) type util (line 40) | namespace util class bad_any_cast (line 42) | class bad_any_cast : public std::bad_cast class any (line 53) | class any type holder (line 56) | struct holder type holder (line 58) | struct holder type holder_impl (line 65) | struct holder_impl : holder method holder_impl (line 69) | holder_impl(arg_t&& a) : v(std::forward(a)) {} method holder_ptr (line 70) | holder_ptr clone() override { return holder_ptr(new holder_impl ... method any (line 76) | any(value_t&& arg) : hldr(new holder_implclone() : nullptr... method any (line 80) | any(any & src) : any (const_cast(src)) {} method any (line 82) | any() = default; method any (line 83) | any(any&& ) = default; method any (line 85) | any& operator=(any&&) = default; method any (line 87) | any& operator=(any const& src) method swap (line 106) | void swap(any & lhs, any& rhs) function value_t (line 114) | value_t* any_cast(any* operand) function value_t (line 124) | const value_t* any_cast(const any* operand) function value_t (line 134) | value_t& any_cast(any& operand) function value_t (line 147) | const value_t& any_cast(const any& operand) function value_t (line 159) | inline value_t& unsafe_any_cast(any& operand) function value_t (line 169) | inline const value_t& unsafe_any_cast(const any& operand) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/util/compiler_hints.hpp type cv (line 10) | namespace cv type util (line 12) | namespace util function suppress_unused_warning (line 15) | void suppress_unused_warning( const T& ) {} FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/util/copy_through_move.hpp type cv (line 12) | namespace cv type util (line 14) | namespace util type copy_through_move_t (line 18) | struct copy_through_move_t{ method T (line 20) | const T& get() const {return value;} method T (line 21) | T& get() {return value;} method copy_through_move_t (line 22) | copy_through_move_t(T&& g) : value(std::move(g)) {} method copy_through_move_t (line 23) | copy_through_move_t(copy_through_move_t&&) = default; method copy_through_move_t (line 24) | copy_through_move_t(copy_through_move_t const& lhs) : copy_through... function copy_through_move (line 28) | copy_through_move_t> copy_through_move(T&& t){ FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/util/optional.hpp type cv (line 14) | namespace cv type util (line 16) | namespace util class bad_optional_access (line 18) | class bad_optional_access: public std::exception class optional (line 30) | class optional method optional (line 36) | optional() {} method optional (line 37) | optional(const optional&) = default; method optional (line 49) | optional& operator=(const optional&) = default; type nothing (line 76) | struct nothing {} function T (line 109) | T* optional::operator-> () function T (line 114) | const T* optional::operator-> () const function T (line 119) | T& optional::operator* () function T (line 124) | const T& optional::operator* () const function T (line 139) | T& optional::value() function T (line 146) | const T& optional::value() const function T (line 154) | T optional::value_or(U &&default_value) const function make_optional (line 171) | optional::type> make_optional(T&& value) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/util/throw.hpp type cv (line 18) | namespace cv type util (line 20) | namespace util function throw_error (line 23) | [[noreturn]] void throw_error(ExceptionType &&e) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/util/type_traits.hpp type cv (line 13) | namespace cv type util (line 15) | namespace util FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/util/util.hpp type cv (line 19) | namespace cv type detail (line 21) | namespace detail type Seq (line 25) | struct Seq { using next = Seq; } type MkSeq (line 26) | struct MkSeq { using type = typename MkSeq::type::next; } type MkSeq<0> (line 27) | struct MkSeq<0>{ using type = Seq<>; } type all_satisfy (line 31) | struct all_satisfy type all_satisfy > (line 40) | struct all_satisfy > type all_satisfy (line 46) | struct all_satisfy: public all_satisfy > {} type permute_tuple (line 50) | struct permute_tuple type all_but_last (line 61) | struct all_but_last type all_but_last (line 72) | struct all_but_last: public all_but_last > {} type max_of_t (line 78) | struct max_of_t type max_of_t (line 83) | struct max_of_t type contains (line 89) | struct contains : std::false_type{} type all_unique (line 98) | struct all_unique : std::true_type{} type tuple_wrap_helper (line 105) | struct tuple_wrap_helper method type (line 110) | static type get(T&& obj) { return std::make_tuple(std::move(obj)); } type tuple_wrap_helper (line 107) | struct tuple_wrap_helper method type (line 110) | static type get(T&& obj) { return std::make_tuple(std::move(obj)); } type all_satisfy > (line 34) | struct all_satisfy > type permute_tuple > (line 53) | struct permute_tuple > type all_but_last > (line 64) | struct all_but_last > type contains (line 92) | struct contains : std::integral_constant> (line 95) | struct contains> : std::integral_constant (line 101) | struct all_unique : std::integral_constant> (line 114) | struct tuple_wrap_helper> method type (line 117) | static type get(std::tuple&& objs) { return std::forward (line 34) | struct type_list_index_helper type type_list_index (line 42) | struct type_list_index class bad_variant_access (line 47) | class bad_variant_access: public std::exception type monostate (line 57) | struct monostate {} class variant (line 64) | class variant type cctr_h (line 71) | struct cctr_h { method help (line 72) | static void help(Memory memory, const Memory from) { type mctr_h (line 77) | struct mctr_h { method help (line 78) | static void help(Memory memory, void *pval) { type cnvrt_ctor_h (line 84) | struct cnvrt_ctor_h { method help (line 85) | static void help(Memory memory, void* from) { type copy_h (line 91) | struct copy_h { method help (line 92) | static void help(Memory to, const Memory from) { type move_h (line 97) | struct move_h { method help (line 98) | static void help(Memory to, Memory from) { type cnvrt_assign_h (line 104) | struct cnvrt_assign_h { method help (line 105) | static void help(Memory to, void* from) { type swap_h (line 111) | struct swap_h { method help (line 112) | static void help(Memory to, Memory from) { type dtor_h (line 117) | struct dtor_h { method help (line 118) | static void help(Memory memory) { type equal_h (line 124) | struct equal_h { method help (line 125) | static bool help(const Memory lhs, const Memory rhs) { method cctrs (line 145) | static constexpr std::array cctrs(){ return {... method mctrs (line 146) | static constexpr std::array mctrs(){ return {... method cpyrs (line 147) | static constexpr std::array cpyrs(){ return {... method mvers (line 148) | static constexpr std::array mvers(){ return {... method swprs (line 149) | static constexpr std::array swprs(){ return {... method dtors (line 150) | static constexpr std::array dtors(){ return {... type conditional_ref (line 153) | struct conditional_ref : std::conditional cnvrt_as... method cnvrt_ctors (line 165) | static constexpr std::array cnvrt_cto... function T (line 364) | T* get_if(util::variant* v) noexcept function T (line 376) | const T* get_if(const util::variant* v) noexcept function T (line 388) | T& get(util::variant &v) function T (line 397) | const T& get(const util::variant &v) function holds_alternative (line 406) | bool holds_alternative(const util::variant &v) noexcept FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/gapi/video.hpp type cv (line 18) | namespace cv { namespace gapi { type gapi (line 18) | namespace gapi { function KalmanParams (line 22) | struct GAPI_EXPORTS KalmanParams type video (line 49) | namespace video function outMeta (line 60) | static std::tuple function outMeta (line 72) | static std::tuple outMeta(GMatDe... function outMeta (line 87) | static std::tuple outMeta(GArray... type BackgroundSubtractorType (line 96) | enum BackgroundSubtractorType type BackgroundSubtractorParams (line 104) | struct BackgroundSubtractorParams method BackgroundSubtractorParams (line 129) | BackgroundSubtractorParams() {} method BackgroundSubtractorParams (line 143) | BackgroundSubtractorParams(BackgroundSubtractorType op, int hist... function GMatDesc (line 154) | static GMatDesc outMeta(const GMatDesc& in, const BackgroundSubtra... function GMatDesc (line 168) | static GMatDesc outMeta(const GMatDesc& measurement, const GOpaque... function GMatDesc (line 178) | static GMatDesc outMeta(const GMatDesc& measurement, const GOpaque... type detail (line 353) | namespace detail { type CompileArgTag (line 354) | struct CompileArgTag type cv (line 353) | namespace cv { namespace detail { type gapi (line 18) | namespace gapi { function KalmanParams (line 22) | struct GAPI_EXPORTS KalmanParams type video (line 49) | namespace video function outMeta (line 60) | static std::tuple function outMeta (line 72) | static std::tuple outMeta(GMatDe... function outMeta (line 87) | static std::tuple outMeta(GArray... type BackgroundSubtractorType (line 96) | enum BackgroundSubtractorType type BackgroundSubtractorParams (line 104) | struct BackgroundSubtractorParams method BackgroundSubtractorParams (line 129) | BackgroundSubtractorParams() {} method BackgroundSubtractorParams (line 143) | BackgroundSubtractorParams(BackgroundSubtractorType op, int hist... function GMatDesc (line 154) | static GMatDesc outMeta(const GMatDesc& in, const BackgroundSubtra... function GMatDesc (line 168) | static GMatDesc outMeta(const GMatDesc& measurement, const GOpaque... function GMatDesc (line 178) | static GMatDesc outMeta(const GMatDesc& measurement, const GOpaque... type detail (line 353) | namespace detail { type CompileArgTag (line 354) | struct CompileArgTag FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/highgui.hpp type cv (line 176) | namespace cv type WindowFlags (line 186) | enum WindowFlags { type WindowPropertyFlags (line 199) | enum WindowPropertyFlags { type MouseEventTypes (line 210) | enum MouseEventTypes { type MouseEventFlags (line 226) | enum MouseEventFlags { type QtFontWeights (line 241) | enum QtFontWeights { type QtFontStyles (line 250) | enum QtFontStyles { type QtButtonTypes (line 257) | enum QtButtonTypes { type QtFont (line 712) | struct QtFont FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/imgcodecs.hpp type cv (line 59) | namespace cv type ImreadModes (line 69) | enum ImreadModes { type ImwriteFlags (line 86) | enum ImwriteFlags { type ImwriteEXRTypeFlags (line 108) | enum ImwriteEXRTypeFlags { type ImwriteEXRCompressionFlags (line 114) | enum ImwriteEXRCompressionFlags { type ImwritePNGFlags (line 135) | enum ImwritePNGFlags { type ImwritePAMFlags (line 144) | enum ImwritePAMFlags { function CV_WRAP (line 271) | CV_WRAP static inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/imgproc.hpp type cv (line 198) | namespace cv type SpecialFilter (line 208) | enum SpecialFilter { type MorphTypes (line 213) | enum MorphTypes{ type MorphShapes (line 231) | enum MorphShapes { type InterpolationFlags (line 245) | enum InterpolationFlags{ type WarpPolarMode (line 280) | enum WarpPolarMode type InterpolationMasks (line 286) | enum InterpolationMasks { type DistanceTypes (line 300) | enum DistanceTypes { type DistanceTransformMasks (line 312) | enum DistanceTransformMasks { type ThresholdTypes (line 320) | enum ThresholdTypes { type AdaptiveThresholdTypes (line 333) | enum AdaptiveThresholdTypes { type GrabCutClasses (line 345) | enum GrabCutClasses { type GrabCutModes (line 353) | enum GrabCutModes { type DistanceTransformLabelTypes (line 368) | enum DistanceTransformLabelTypes { type FloodFillFlags (line 377) | enum FloodFillFlags { type ConnectedComponentsTypes (line 393) | enum ConnectedComponentsTypes { type ConnectedComponentsAlgorithmsTypes (line 407) | enum ConnectedComponentsAlgorithmsTypes { type RetrievalModes (line 418) | enum RetrievalModes { type ContourApproximationModes (line 435) | enum ContourApproximationModes { type ShapeMatchModes (line 457) | enum ShapeMatchModes { type HoughModes (line 469) | enum HoughModes { type LineSegmentDetectorModes (line 489) | enum LineSegmentDetectorModes { type HistCompMethods (line 501) | enum HistCompMethods { type ColorConversionCodes (line 532) | enum ColorConversionCodes { type RectanglesIntersectTypes (line 803) | enum RectanglesIntersectTypes { type LineTypes (line 812) | enum LineTypes { type HersheyFonts (line 822) | enum HersheyFonts { type MarkerTypes (line 837) | enum MarkerTypes function GeneralizedHough (line 850) | class CV_EXPORTS_W GeneralizedHough : public Algorithm function GeneralizedHoughBallard (line 886) | class CV_EXPORTS_W GeneralizedHoughBallard : public GeneralizedHough function GeneralizedHoughGuil (line 902) | class CV_EXPORTS_W GeneralizedHoughGuil : public GeneralizedHough function Algorithm (line 961) | class CV_EXPORTS_W CLAHE : public Algorithm function Subdiv2D (line 998) | class CV_EXPORTS_W Subdiv2D function LineSegmentDetector (line 1269) | class CV_EXPORTS_W LineSegmentDetector : public Algorithm function Scalar (line 1402) | static inline Scalar morphologyDefaultBorderValue() { return Scalar::a... function Mat (line 2478) | inline type TemplateMatchModes (line 3723) | enum TemplateMatchModes { type ColormapTypes (line 4325) | enum ColormapTypes function LineIterator (line 4816) | class CV_EXPORTS LineIterator function uchar (line 4887) | inline function LineIterator (line 4893) | inline function LineIterator (line 4910) | inline function Point (line 4918) | inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/imgproc/bindings.hpp type cv (line 11) | namespace cv { function CV_WRAP (line 19) | CV_WRAP static inline FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/imgproc/detail/gcgraph.hpp type cv (line 47) | namespace cv { namespace detail { type detail (line 47) | namespace detail { class GCGraph (line 48) | class GCGraph class Vtx (line 61) | class Vtx class Edge (line 72) | class Edge function TWeight (line 156) | TWeight GCGraph::maxFlow() FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/imgproc/hal/hal.hpp type cv (line 8) | namespace cv { namespace hal { type hal (line 8) | namespace hal { function Filter2D (line 16) | struct CV_EXPORTS Filter2D function SepFilter2D (line 33) | struct CV_EXPORTS SepFilter2D function Morph (line 49) | struct CV_EXPORTS Morph FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/imgproc/imgproc_c.h type CvFont (line 1085) | struct CvFont FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/imgproc/segmentation.hpp type cv (line 10) | namespace cv { type segmentation (line 12) | namespace segmentation { function IntelligentScissorsMB (line 30) | class CV_EXPORTS_W_SIMPLE IntelligentScissorsMB FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/imgproc/types_c.h type CvConnectedComp (line 57) | typedef struct CvConnectedComp type SmoothMethod_c (line 68) | enum SmoothMethod_c type MorphShapes_c (line 386) | enum MorphShapes_c type CvMoments (line 407) | typedef struct CvMoments function CV_INLINE (line 436) | CV_INLINE CvMoments cvMoments() function CV_INLINE (line 445) | CV_INLINE CvMoments cvMoments(const cv::Moments& m) type CvHuMoments (line 464) | typedef struct CvHuMoments type _CvContourScanner (line 508) | struct _CvContourScanner type CvChainPtReader (line 511) | typedef struct CvChainPtReader type CvConvexityDefect (line 551) | typedef struct CvConvexityDefect type CvFeatureTree (line 649) | struct CvFeatureTree type CvLSH (line 650) | struct CvLSH type CvLSHOperations (line 651) | struct CvLSHOperations FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/ml.hpp type cv (line 71) | namespace cv type ml (line 74) | namespace ml type VariableTypes (line 81) | enum VariableTypes type ErrorTypes (line 89) | enum ErrorTypes type SampleTypes (line 96) | enum SampleTypes function ParamGrid (line 107) | class CV_EXPORTS_W ParamGrid function TrainData (line 145) | class CV_EXPORTS_W TrainData function StatModel (line 318) | class CV_EXPORTS_W StatModel : public Algorithm function NormalBayesClassifier (line 398) | class CV_EXPORTS_W NormalBayesClassifier : public StatModel function StatModel (line 436) | class CV_EXPORTS_W KNearest : public StatModel function StatModel (line 526) | class CV_EXPORTS_W SVM : public StatModel type Types (line 618) | enum Types { type KernelTypes (line 647) | enum KernelTypes { type ParamTypes (line 669) | enum ParamTypes { function StatModel (line 836) | class CV_EXPORTS_W EM : public StatModel function StatModel (line 1053) | class CV_EXPORTS_W DTrees : public StatModel function RTrees (line 1247) | class CV_EXPORTS_W RTrees : public DTrees function DTrees (line 1332) | class CV_EXPORTS_W Boost : public DTrees function StatModel (line 1431) | class CV_EXPORTS_W ANN_MLP : public StatModel function LogisticRegression (line 1629) | class CV_EXPORTS_W LogisticRegression : public StatModel class CV_EXPORTS_W (line 1796) | class CV_EXPORTS_W type SvmsgdType (line 1802) | enum SvmsgdType type MarginType (line 1809) | enum MarginType type SimulatedAnnealingSolverSystem (line 1915) | struct SimulatedAnnealingSolverSystem FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/ml/ml.inl.hpp type cv (line 8) | namespace cv { namespace ml { type ml (line 8) | namespace ml { function simulatedAnnealingSolver (line 12) | int simulatedAnnealingSolver(SimulatedAnnealingSolverSystem& solverS... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/objdetect.hpp type CvHaarClassifierCascade (line 109) | struct CvHaarClassifierCascade type cv (line 111) | namespace cv function SimilarRects (line 121) | class CV_EXPORTS SimilarRects type DefaultDeleter (line 166) | struct DefaultDeleter{ CV_EXPORTS void operator... function BaseCascadeClassifier (line 174) | class CV_EXPORTS_W BaseCascadeClassifier : public Algorithm function CascadeClassifier (line 224) | class CV_EXPORTS_W CascadeClassifier type DetectionROI (line 345) | struct DetectionROI function HOGDescriptor (line 372) | struct CV_EXPORTS_W HOGDescriptor function QRCodeDetector (line 670) | class CV_EXPORTS_W QRCodeDetector FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/objdetect/detection_based_tracker.hpp type cv (line 51) | namespace cv function DetectionBasedTracker (line 57) | class CV_EXPORTS DetectionBasedTracker class IDetector (line 68) | class IDetector method IDetector (line 71) | IDetector(): method setMinObjectSize (line 80) | void setMinObjectSize(const cv::Size& min) method setMaxObjectSize (line 84) | void setMaxObjectSize(const cv::Size& max) method getMinObjectSize (line 88) | cv::Size getMinObjectSize() const method getMaxObjectSize (line 92) | cv::Size getMaxObjectSize() const method getScaleFactor (line 96) | float getScaleFactor() method setScaleFactor (line 100) | void setScaleFactor(float value) method getMinNeighbours (line 104) | int getMinNeighbours() method setMinNeighbours (line 108) | void setMinNeighbours(int value) type ObjectStatus (line 138) | enum ObjectStatus type ExtObject (line 145) | struct ExtObject method ExtObject (line 150) | ExtObject(int _id, cv::Rect _location, ObjectStatus _status) class SeparateDetectionWork (line 161) | class SeparateDetectionWork type InnerParameters (line 165) | struct InnerParameters type TrackedObject (line 181) | struct TrackedObject method TrackedObject (line 191) | TrackedObject(const cv::Rect& rect):numDetectedFrames(1), numFramesN... method getNextId (line 197) | static int getNextId() FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/photo.hpp type cv (line 85) | namespace cv function Algorithm (line 336) | class CV_EXPORTS_W Tonemap : public Algorithm function TonemapDrago (line 368) | class CV_EXPORTS_W TonemapDrago : public Tonemap function TonemapReinhard (line 397) | class CV_EXPORTS_W TonemapReinhard : public Tonemap function TonemapMantiuk (line 428) | class CV_EXPORTS_W TonemapMantiuk : public Tonemap function AlignExposures (line 450) | class CV_EXPORTS_W AlignExposures : public Algorithm function AlignExposures (line 474) | class CV_EXPORTS_W AlignMTB : public AlignExposures function CalibrateCRF (line 531) | class CV_EXPORTS_W CalibrateCRF : public Algorithm function CalibrateDebevec (line 549) | class CV_EXPORTS_W CalibrateDebevec : public CalibrateCRF function CalibrateRobertson (line 577) | class CV_EXPORTS_W CalibrateRobertson : public CalibrateCRF function MergeExposures (line 598) | class CV_EXPORTS_W MergeExposures : public Algorithm function MergeExposures (line 618) | class CV_EXPORTS_W MergeDebevec : public MergeExposures function MergeExposures (line 641) | class CV_EXPORTS_W MergeMertens : public MergeExposures function MergeRobertson (line 677) | class CV_EXPORTS_W MergeRobertson : public MergeExposures FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/photo/cuda.hpp type cv (line 48) | namespace cv { namespace cuda { type cuda (line 48) | namespace cuda { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/photo/legacy/constants_c.h type InpaintingModes (line 8) | enum InpaintingModes FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching.hpp type cv (line 107) | namespace cv { function Stitcher (line 138) | class CV_EXPORTS_W Stitcher FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/detail/autocalib.hpp type cv (line 49) | namespace cv { type detail (line 50) | namespace detail { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/detail/blenders.hpp type cv (line 53) | namespace cv { type detail (line 54) | namespace detail { function Blender (line 63) | class CV_EXPORTS_W Blender function FeatherBlender (line 100) | class CV_EXPORTS_W FeatherBlender : public Blender function MultiBandBlender (line 127) | class CV_EXPORTS_W MultiBandBlender : public Blender FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/detail/camera.hpp type cv (line 48) | namespace cv { type detail (line 49) | namespace detail { function CameraParams (line 58) | struct CV_EXPORTS_W_SIMPLE CameraParams FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/detail/exposure_compensate.hpp type cv (line 52) | namespace cv { type detail (line 53) | namespace detail { function ExposureCompensator (line 60) | class CV_EXPORTS_W ExposureCompensator function NoExposureCompensator (line 98) | class CV_EXPORTS_W NoExposureCompensator : public ExposureCompensator function ExposureCompensator (line 111) | class CV_EXPORTS_W GainCompensator : public ExposureCompensator function ChannelsCompensator (line 145) | class CV_EXPORTS_W ChannelsCompensator : public ExposureCompensator class CV_EXPORTS_W (line 169) | class CV_EXPORTS_W function CV_WRAP (line 178) | CV_WRAP void setNrFeeds(int nr_feeds) { nr_feeds_ = nr_feeds; } function CV_WRAP (line 179) | CV_WRAP int getNrFeeds() { return nr_feeds_; } function CV_WRAP (line 180) | CV_WRAP void setSimilarityThreshold(double similarity_threshold) { s... function CV_WRAP (line 181) | CV_WRAP double getSimilarityThreshold() const { return similarity_th... function CV_WRAP (line 182) | CV_WRAP void setBlockSize(int width, int height) { bl_width_ = width... function CV_WRAP (line 183) | CV_WRAP void setBlockSize(Size size) { setBlockSize(size.width, size... function CV_WRAP (line 184) | CV_WRAP Size getBlockSize() const { return Size(bl_width_, bl_height... function CV_WRAP (line 185) | CV_WRAP void setNrGainsFilteringIterations(int nr_iterations) { nr_g... function CV_WRAP (line 186) | CV_WRAP int getNrGainsFilteringIterations() const { return nr_gain_f... class Compensator (line 189) | class Compensator function BlocksGainCompensator (line 207) | class CV_EXPORTS_W BlocksGainCompensator : public BlocksCompensator function BlocksChannelsCompensator (line 231) | class CV_EXPORTS_W BlocksChannelsCompensator : public BlocksCompensator FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/detail/matchers.hpp type cv (line 51) | namespace cv { type detail (line 52) | namespace detail { function ImageFeatures (line 58) | struct CV_EXPORTS_W_SIMPLE ImageFeatures function MatchesInfo (line 99) | struct CV_EXPORTS_W_SIMPLE MatchesInfo function FeaturesMatcher (line 117) | class CV_EXPORTS_W FeaturesMatcher function BestOf2NearestMatcher (line 172) | class CV_EXPORTS_W BestOf2NearestMatcher : public FeaturesMatcher function BestOf2NearestRangeMatcher (line 199) | class CV_EXPORTS_W BestOf2NearestRangeMatcher : public BestOf2Neares... function AffineBestOf2NearestMatcher (line 222) | class CV_EXPORTS_W AffineBestOf2NearestMatcher : public BestOf2Neare... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/detail/motion_estimators.hpp type cv (line 51) | namespace cv { type detail (line 52) | namespace detail { function Estimator (line 65) | class CV_EXPORTS_W Estimator function HomographyBasedEstimator (line 100) | class CV_EXPORTS_W HomographyBasedEstimator : public Estimator function AffineBasedEstimator (line 121) | class CV_EXPORTS_W AffineBasedEstimator : public Estimator function BundleAdjusterBase (line 133) | class CV_EXPORTS_W BundleAdjusterBase : public Estimator function CV_WRAP (line 137) | CV_WRAP void setRefinementMask(const Mat &mask) function CV_WRAP (line 143) | CV_WRAP double confThresh() const { return conf_thresh_; } function CV_WRAP (line 144) | CV_WRAP void setConfThresh(double conf_thresh) { conf_thresh_ = conf... function CV_WRAP (line 146) | CV_WRAP TermCriteria termCriteria() { return term_criteria_; } function CV_WRAP (line 147) | CV_WRAP void setTermCriteria(const TermCriteria& term_criteria) { te... function BundleAdjusterBase (line 221) | class CV_EXPORTS_W NoBundleAdjuster : public BundleAdjusterBase function BundleAdjusterReproj (line 245) | class CV_EXPORTS_W BundleAdjusterReproj : public BundleAdjusterBase function BundleAdjusterBase (line 265) | class CV_EXPORTS_W BundleAdjusterRay : public BundleAdjusterBase function BundleAdjusterAffine (line 289) | class CV_EXPORTS_W BundleAdjusterAffine : public BundleAdjusterBase function BundleAdjusterAffinePartial (line 313) | class CV_EXPORTS_W BundleAdjusterAffinePartial : public BundleAdjusterBase type WaveCorrectKind (line 328) | enum WaveCorrectKind FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/detail/seam_finders.hpp type cv (line 50) | namespace cv { type detail (line 51) | namespace detail { function SeamFinder (line 58) | class CV_EXPORTS_W SeamFinder function NoSeamFinder (line 76) | class CV_EXPORTS_W NoSeamFinder : public SeamFinder class CV_EXPORTS (line 261) | class CV_EXPORTS FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/detail/timelapsers.hpp type cv (line 49) | namespace cv { type detail (line 50) | namespace detail { function Timelapser (line 57) | class CV_EXPORTS_W Timelapser function TimelapserCrop (line 80) | class CV_EXPORTS_W TimelapserCrop : public Timelapser FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/detail/util.hpp type cv (line 49) | namespace cv { type detail (line 50) | namespace detail { function DisjointSets (line 55) | class CV_EXPORTS DisjointSets function GraphEdge (line 72) | struct CV_EXPORTS GraphEdge function Graph (line 85) | class CV_EXPORTS Graph FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/detail/util_inl.hpp type cv (line 52) | namespace cv { type detail (line 53) | namespace detail { function B (line 56) | B Graph::forEach(B body) const function B (line 69) | B Graph::walkBreadthFirst(int from, B body) const function normL2 (line 101) | static inline function normL2 (line 108) | static inline function normL2sq (line 115) | static inline function sqr (line 122) | static inline int sqr(int x) { return x * x; } function sqr (line 123) | static inline float sqr(float x) { return x * x; } function sqr (line 124) | static inline double sqr(double x) { return x * x; } FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/detail/warpers.hpp type cv (line 51) | namespace cv { type detail (line 52) | namespace detail { function RotationWarper (line 59) | class CV_EXPORTS RotationWarper function ProjectorBase (line 141) | struct CV_EXPORTS_W_SIMPLE ProjectorBase function RotationWarperBase (line 158) | class CV_EXPORTS_TEMPLATE RotationWarperBase : public RotationWarper function PlaneProjector (line 191) | struct CV_EXPORTS PlaneProjector : ProjectorBase class CV_EXPORTS (line 199) | class CV_EXPORTS function AffineWarper (line 235) | class CV_EXPORTS AffineWarper : public PlaneWarper function SphericalProjector (line 302) | struct CV_EXPORTS_W_SIMPLE SphericalProjector : ProjectorBase class CV_EXPORTS (line 315) | class CV_EXPORTS function CylindricalProjector (line 332) | struct CV_EXPORTS CylindricalProjector : ProjectorBase class CV_EXPORTS (line 341) | class CV_EXPORTS function FisheyeProjector (line 360) | struct CV_EXPORTS FisheyeProjector : ProjectorBase class CV_EXPORTS (line 367) | class CV_EXPORTS function StereographicProjector (line 374) | struct CV_EXPORTS StereographicProjector : ProjectorBase class CV_EXPORTS (line 381) | class CV_EXPORTS function CompressedRectilinearProjector (line 388) | struct CV_EXPORTS CompressedRectilinearProjector : ProjectorBase class CV_EXPORTS (line 397) | class CV_EXPORTS function CompressedRectilinearPortraitProjector (line 409) | struct CV_EXPORTS CompressedRectilinearPortraitProjector : ProjectorBase class CV_EXPORTS (line 418) | class CV_EXPORTS function PaniniProjector (line 430) | struct CV_EXPORTS PaniniProjector : ProjectorBase class CV_EXPORTS (line 439) | class CV_EXPORTS function PaniniPortraitProjector (line 451) | struct CV_EXPORTS PaniniPortraitProjector : ProjectorBase class CV_EXPORTS (line 460) | class CV_EXPORTS function MercatorProjector (line 473) | struct CV_EXPORTS MercatorProjector : ProjectorBase class CV_EXPORTS (line 480) | class CV_EXPORTS function TransverseMercatorProjector (line 487) | struct CV_EXPORTS TransverseMercatorProjector : ProjectorBase class CV_EXPORTS (line 494) | class CV_EXPORTS function PlaneWarperGpu (line 501) | class CV_EXPORTS PlaneWarperGpu : public PlaneWarper function SphericalWarperGpu (line 555) | class CV_EXPORTS SphericalWarperGpu : public SphericalWarper function CylindricalWarperGpu (line 587) | class CV_EXPORTS CylindricalWarperGpu : public CylindricalWarper function SphericalPortraitProjector (line 619) | struct CV_EXPORTS SphericalPortraitProjector : ProjectorBase class CV_EXPORTS (line 628) | class CV_EXPORTS function CylindricalPortraitProjector (line 637) | struct CV_EXPORTS CylindricalPortraitProjector : ProjectorBase class CV_EXPORTS (line 644) | class CV_EXPORTS function PlanePortraitProjector (line 656) | struct CV_EXPORTS PlanePortraitProjector : ProjectorBase class CV_EXPORTS (line 663) | class CV_EXPORTS FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/detail/warpers_inl.hpp type cv (line 52) | namespace cv { type detail (line 53) | namespace detail { function Point2f (line 56) | Point2f RotationWarperBase

::warpPoint(const Point2f &pt, InputArr... function Point2f (line 65) | Point2f RotationWarperBase

::warpPointBackward(const Point2f& pt, ... function Rect (line 74) | Rect RotationWarperBase

::buildMaps(Size src_size, InputArray K, I... function Point (line 102) | Point RotationWarperBase

::warp(InputArray src, InputArray K, Inpu... function Rect (line 147) | Rect RotationWarperBase

::warpRoi(Size src_size, InputArray K, Inp... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/stitching/warpers.hpp type cv (line 49) | namespace cv { function PyRotationWarper (line 50) | class CV_EXPORTS_W PyRotationWarper function WarperCreator (line 139) | class CV_EXPORTS_W WarperCreator function WarperCreator (line 150) | class CV_EXPORTS PlaneWarper : public WarperCreator function WarperCreator (line 159) | class CV_EXPORTS AffineWarper : public WarperCreator function CylindricalWarper (line 168) | class CV_EXPORTS CylindricalWarper: public WarperCreator function SphericalWarper (line 175) | class CV_EXPORTS SphericalWarper: public WarperCreator function FisheyeWarper (line 181) | class CV_EXPORTS FisheyeWarper : public WarperCreator function StereographicWarper (line 187) | class CV_EXPORTS StereographicWarper: public WarperCreator function CompressedRectilinearWarper (line 193) | class CV_EXPORTS CompressedRectilinearWarper: public WarperCreator function CompressedRectilinearPortraitWarper (line 204) | class CV_EXPORTS CompressedRectilinearPortraitWarper: public WarperCreator function WarperCreator (line 215) | class CV_EXPORTS PaniniWarper: public WarperCreator function PaniniPortraitWarper (line 226) | class CV_EXPORTS PaniniPortraitWarper: public WarperCreator function MercatorWarper (line 237) | class CV_EXPORTS MercatorWarper: public WarperCreator function TransverseMercatorWarper (line 243) | class CV_EXPORTS TransverseMercatorWarper: public WarperCreator class PlaneWarperGpu (line 252) | class PlaneWarperGpu: public WarperCreator method create (line 255) | Ptr create(float scale) const CV_OVERRIDE { re... class CylindricalWarperGpu (line 259) | class CylindricalWarperGpu: public WarperCreator method create (line 262) | Ptr create(float scale) const CV_OVERRIDE { re... class SphericalWarperGpu (line 266) | class SphericalWarperGpu: public WarperCreator method create (line 269) | Ptr create(float scale) const CV_OVERRIDE { re... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/video/background_segm.hpp type cv (line 49) | namespace cv function BackgroundSubtractor (line 60) | class CV_EXPORTS_W BackgroundSubtractor : public Algorithm function BackgroundSubtractorMOG2 (line 90) | class CV_EXPORTS_W BackgroundSubtractorMOG2 : public BackgroundSubtractor function BackgroundSubtractorKNN (line 229) | class CV_EXPORTS_W BackgroundSubtractorKNN : public BackgroundSubtractor FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/video/detail/tracking.detail.hpp type cv (line 20) | namespace cv { type detail (line 21) | namespace detail { type tracking (line 22) | inline namespace tracking { function TrackerFeature (line 32) | class CV_EXPORTS TrackerFeature function TrackerFeatureSet (line 59) | class CV_EXPORTS TrackerFeatureSet function TrackerSamplerAlgorithm (line 98) | class CV_EXPORTS TrackerSamplerAlgorithm function TrackerSampler (line 128) | class CV_EXPORTS TrackerSampler function TrackerTargetState (line 171) | class CV_EXPORTS TrackerTargetState function TrackerStateEstimator (line 230) | class CV_EXPORTS TrackerStateEstimator function TrackerModel (line 276) | class CV_EXPORTS TrackerModel function TrackerSamplerAlgorithm (line 349) | class CV_EXPORTS TrackerSamplerCSC : public TrackerSamplerAlgorithm FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/video/tracking.hpp type cv (line 50) | namespace cv function KalmanFilter (line 360) | class CV_EXPORTS_W KalmanFilter function DenseOpticalFlow (line 436) | class CV_EXPORTS_W DenseOpticalFlow : public Algorithm function SparseOpticalFlow (line 453) | class CV_EXPORTS_W SparseOpticalFlow : public Algorithm function FarnebackOpticalFlow (line 475) | class CV_EXPORTS_W FarnebackOpticalFlow : public DenseOpticalFlow function VariationalRefinement (line 523) | class CV_EXPORTS_W VariationalRefinement : public DenseOpticalFlow function DenseOpticalFlow (line 584) | class CV_EXPORTS_W DISOpticalFlow : public DenseOpticalFlow function SparsePyrLKOpticalFlow (line 682) | class CV_EXPORTS_W SparsePyrLKOpticalFlow : public SparseOpticalFlow function Tracker (line 713) | class CV_EXPORTS_W Tracker function TrackerMIL (line 750) | class CV_EXPORTS_W TrackerMIL : public Tracker function TrackerGOTURN (line 797) | class CV_EXPORTS_W TrackerGOTURN : public Tracker function TrackerDaSiamRPN (line 821) | class CV_EXPORTS_W TrackerDaSiamRPN : public Tracker FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/videoio.hpp type CvCapture (line 69) | struct CvCapture type CvVideoWriter (line 70) | struct CvVideoWriter type cv (line 72) | namespace cv type VideoCaptureAPIs (line 90) | enum VideoCaptureAPIs { type VideoCaptureProperties (line 134) | enum VideoCaptureProperties { type VideoWriterProperties (line 197) | enum VideoWriterProperties { type VideoAccelerationType (line 227) | enum VideoAccelerationType class IVideoCapture (line 643) | class IVideoCapture type internal (line 645) | namespace internal { class VideoCapturePrivateAccessor; } class VideoCapturePrivateAccessor (line 645) | class VideoCapturePrivateAccessor function VideoCapture (line 666) | class CV_EXPORTS_W VideoCapture class IVideoWriter (line 930) | class IVideoWriter function VideoWriter (line 944) | class CV_EXPORTS_W VideoWriter type DefaultDeleter (line 1105) | struct DefaultDeleter{ CV_EXPORTS void operator ()(CvCaptur... type DefaultDeleter (line 1106) | struct DefaultDeleter{ CV_EXPORTS void operator ()(CvVi... FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/videoio/cap_ios.h function end (line 97) | end function end (line 137) | end FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/videoio/legacy/constants_c.h function CV_INLINE (line 424) | CV_INLINE int CV_FOURCC(char c1, char c2, char c3, char c4) FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/videoio/registry.hpp type cv (line 10) | namespace cv { namespace videoio_registry { type videoio_registry (line 10) | namespace videoio_registry { FILE: pkg/gocv/cgo/third_path/opencv4/include/opencv2/videoio/videoio_c.h type CvCapture (line 66) | typedef struct CvCapture CvCapture; type CvVideoWriter (line 121) | typedef struct CvVideoWriter CvVideoWriter; FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/any.h function namespace (line 41) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/any.pb.h function namespace (line 37) | namespace protobuf_google_2fprotobuf_2fany_2eproto { function namespace (line 49) | namespace google { function namespace (line 56) | namespace google { function namespace (line 62) | namespace protobuf { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/api.pb.h function namespace (line 38) | namespace protobuf_google_2fprotobuf_2fapi_2eproto { function namespace (line 50) | namespace google { function namespace (line 63) | namespace google { function Api (line 105) | static inline const Api* internal_default_instance() { function Api (line 119) | inline Api* New() const final { function final (line 123) | const final { function Clear (line 130) | void Clear() final; function methods_size (line 163) | int methods_size() const; FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/arena.h function namespace (line 44) | namespace std { function namespace (line 55) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/arena_impl.h function namespace (line 48) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/arenastring.h function namespace (line 50) | namespace google { function namespace (line 386) | namespace protobuf { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/code_generator.h function namespace (line 46) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/command_line_interface.h function namespace (line 49) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/cpp/cpp_generator.h function namespace (line 43) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/csharp/csharp_generator.h function namespace (line 40) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/csharp/csharp_names.h function namespace (line 44) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/importer.h function namespace (line 49) | namespace protobuf { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/java/java_generator.h function namespace (line 43) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/java/java_names.h function namespace (line 43) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/js/js_generator.h function namespace (line 43) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/js/well_known_types_embed.h type FileToc (line 36) | struct FileToc { type FileToc (line 41) | struct FileToc FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/objectivec/objectivec_generator.h function namespace (line 39) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/objectivec/objectivec_helpers.h function namespace (line 42) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/parser.h function namespace (line 48) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/php/php_generator.h function namespace (line 39) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/plugin.h function namespace (line 68) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/plugin.pb.h function namespace (line 43) | namespace protobuf_google_2fprotobuf_2fcompiler_2fplugin_2eproto { function namespace (line 55) | namespace google { function namespace (line 73) | namespace google { function namespace (line 81) | namespace google { function google (line 1037) | inline const ::google::protobuf::compiler::Version& CodeGeneratorRequest... function google (line 1050) | inline ::google::protobuf::compiler::Version* CodeGeneratorRequest::muta... function set_allocated_compiler_version (line 1059) | inline void CodeGeneratorRequest::set_allocated_compiler_version(::googl... function set_has_name (line 1086) | inline void CodeGeneratorResponse_File::set_has_name() { function clear_has_name (line 1089) | inline void CodeGeneratorResponse_File::clear_has_name() { function clear_name (line 1092) | inline void CodeGeneratorResponse_File::clear_name() { function set_name (line 1100) | inline void CodeGeneratorResponse_File::set_name(const ::std::string& va... function set_name (line 1106) | inline void CodeGeneratorResponse_File::set_name(::std::string&& value) { function set_name (line 1113) | inline void CodeGeneratorResponse_File::set_name(const char* value) { function set_name (line 1119) | inline void CodeGeneratorResponse_File::set_name(const char* value, size... function std (line 1125) | inline ::std::string* CodeGeneratorResponse_File::mutable_name() { function std (line 1130) | inline ::std::string* CodeGeneratorResponse_File::release_name() { function set_allocated_name (line 1138) | inline void CodeGeneratorResponse_File::set_allocated_name(::std::string... function set_has_insertion_point (line 1152) | inline void CodeGeneratorResponse_File::set_has_insertion_point() { function clear_has_insertion_point (line 1155) | inline void CodeGeneratorResponse_File::clear_has_insertion_point() { function clear_insertion_point (line 1158) | inline void CodeGeneratorResponse_File::clear_insertion_point() { function set_insertion_point (line 1166) | inline void CodeGeneratorResponse_File::set_insertion_point(const ::std:... function set_insertion_point (line 1172) | inline void CodeGeneratorResponse_File::set_insertion_point(::std::strin... function set_insertion_point (line 1179) | inline void CodeGeneratorResponse_File::set_insertion_point(const char* ... function set_insertion_point (line 1185) | inline void CodeGeneratorResponse_File::set_insertion_point(const char* ... function std (line 1191) | inline ::std::string* CodeGeneratorResponse_File::mutable_insertion_poin... function std (line 1196) | inline ::std::string* CodeGeneratorResponse_File::release_insertion_poin... function set_allocated_insertion_point (line 1204) | inline void CodeGeneratorResponse_File::set_allocated_insertion_point(::... function set_has_content (line 1218) | inline void CodeGeneratorResponse_File::set_has_content() { function clear_has_content (line 1221) | inline void CodeGeneratorResponse_File::clear_has_content() { function clear_content (line 1224) | inline void CodeGeneratorResponse_File::clear_content() { function set_content (line 1232) | inline void CodeGeneratorResponse_File::set_content(const ::std::string&... function set_content (line 1238) | inline void CodeGeneratorResponse_File::set_content(::std::string&& valu... function set_content (line 1245) | inline void CodeGeneratorResponse_File::set_content(const char* value) { function set_content (line 1251) | inline void CodeGeneratorResponse_File::set_content(const char* value, s... function std (line 1257) | inline ::std::string* CodeGeneratorResponse_File::mutable_content() { function std (line 1262) | inline ::std::string* CodeGeneratorResponse_File::release_content() { function set_allocated_content (line 1270) | inline void CodeGeneratorResponse_File::set_allocated_content(::std::str... function set_has_error (line 1288) | inline void CodeGeneratorResponse::set_has_error() { function clear_has_error (line 1291) | inline void CodeGeneratorResponse::clear_has_error() { function clear_error (line 1294) | inline void CodeGeneratorResponse::clear_error() { function set_error (line 1302) | inline void CodeGeneratorResponse::set_error(const ::std::string& value) { function set_error (line 1308) | inline void CodeGeneratorResponse::set_error(::std::string&& value) { function set_error (line 1315) | inline void CodeGeneratorResponse::set_error(const char* value) { function set_error (line 1321) | inline void CodeGeneratorResponse::set_error(const char* value, size_t s... function std (line 1327) | inline ::std::string* CodeGeneratorResponse::mutable_error() { function std (line 1332) | inline ::std::string* CodeGeneratorResponse::release_error() { function set_allocated_error (line 1340) | inline void CodeGeneratorResponse::set_allocated_error(::std::string* er... function clear_file (line 1354) | inline void CodeGeneratorResponse::clear_file() { function google (line 1357) | inline ::google::protobuf::compiler::CodeGeneratorResponse_File* CodeGen... function google (line 1361) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::compile... function google (line 1366) | inline const ::google::protobuf::compiler::CodeGeneratorResponse_File& C... function google (line 1370) | inline ::google::protobuf::compiler::CodeGeneratorResponse_File* CodeGen... FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/python/python_generator.h function namespace (line 44) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/compiler/ruby/ruby_generator.h function namespace (line 40) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/descriptor.h function namespace (line 70) | namespace google { function FileDescriptor (line 2076) | inline const FileDescriptor* MethodDescriptor::file() const { function IsTypePackable (line 2108) | inline bool FieldDescriptor::IsTypePackable(Type field_type) { function FileDescriptor (line 2115) | inline const FileDescriptor* FileDescriptor::public_dependency( function FileDescriptor (line 2120) | inline const FileDescriptor* FileDescriptor::weak_dependency( function FieldDescriptor (line 2131) | inline const FieldDescriptor* OneofDescriptor::field(int index) const { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/descriptor.pb.h function namespace (line 37) | namespace protobuf_google_2fprotobuf_2fdescriptor_2eproto { function namespace (line 49) | namespace google { function namespace (line 134) | namespace google { function namespace (line 165) | namespace google { function set_has_end (line 7934) | inline void EnumDescriptorProto_EnumReservedRange::set_has_end() { function clear_has_end (line 7937) | inline void EnumDescriptorProto_EnumReservedRange::clear_has_end() { function clear_end (line 7940) | inline void EnumDescriptorProto_EnumReservedRange::clear_end() { function set_end (line 7948) | inline void EnumDescriptorProto_EnumReservedRange::set_end(::google::pro... function set_has_name (line 7962) | inline void EnumDescriptorProto::set_has_name() { function clear_has_name (line 7965) | inline void EnumDescriptorProto::clear_has_name() { function clear_name (line 7968) | inline void EnumDescriptorProto::clear_name() { function set_name (line 7976) | inline void EnumDescriptorProto::set_name(const ::std::string& value) { function set_name (line 7982) | inline void EnumDescriptorProto::set_name(::std::string&& value) { function set_name (line 7989) | inline void EnumDescriptorProto::set_name(const char* value) { function set_name (line 7996) | inline void EnumDescriptorProto::set_name(const char* value, function std (line 8003) | inline ::std::string* EnumDescriptorProto::mutable_name() { function std (line 8008) | inline ::std::string* EnumDescriptorProto::release_name() { function set_allocated_name (line 8016) | inline void EnumDescriptorProto::set_allocated_name(::std::string* name) { function std (line 8026) | inline ::std::string* EnumDescriptorProto::unsafe_arena_release_name() { function unsafe_arena_set_allocated_name (line 8033) | inline void EnumDescriptorProto::unsafe_arena_set_allocated_name( function clear_value (line 8050) | inline void EnumDescriptorProto::clear_value() { function google (line 8053) | inline ::google::protobuf::EnumValueDescriptorProto* EnumDescriptorProto... function google (line 8057) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::EnumVal... function google (line 8062) | inline const ::google::protobuf::EnumValueDescriptorProto& EnumDescripto... function google (line 8066) | inline ::google::protobuf::EnumValueDescriptorProto* EnumDescriptorProto... function google (line 8070) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::E... function clear_has_options (line 8083) | inline void EnumDescriptorProto::clear_has_options() { function clear_options (line 8086) | inline void EnumDescriptorProto::clear_options() { function google (line 8093) | inline const ::google::protobuf::EnumOptions& EnumDescriptorProto::optio... function google (line 8109) | inline ::google::protobuf::EnumOptions* EnumDescriptorProto::unsafe_aren... function google (line 8116) | inline ::google::protobuf::EnumOptions* EnumDescriptorProto::mutable_opt... function set_allocated_options (line 8125) | inline void EnumDescriptorProto::set_allocated_options(::google::protobu... function clear_reserved_range (line 8149) | inline void EnumDescriptorProto::clear_reserved_range() { function google (line 8152) | inline ::google::protobuf::EnumDescriptorProto_EnumReservedRange* EnumDe... function google (line 8156) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::EnumDes... function google (line 8161) | inline const ::google::protobuf::EnumDescriptorProto_EnumReservedRange& ... function google (line 8165) | inline ::google::protobuf::EnumDescriptorProto_EnumReservedRange* EnumDe... function google (line 8169) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::E... function std (line 8182) | inline const ::std::string& EnumDescriptorProto::reserved_name(int index... function std (line 8186) | inline ::std::string* EnumDescriptorProto::mutable_reserved_name(int ind... function set_reserved_name (line 8190) | inline void EnumDescriptorProto::set_reserved_name(int index, const ::st... function set_reserved_name (line 8195) | inline void EnumDescriptorProto::set_reserved_name(int index, ::std::str... function set_reserved_name (line 8200) | inline void EnumDescriptorProto::set_reserved_name(int index, const char... function set_reserved_name (line 8205) | inline void EnumDescriptorProto::set_reserved_name(int index, const char... function std (line 8210) | inline ::std::string* EnumDescriptorProto::add_reserved_name() { function add_reserved_name (line 8214) | inline void EnumDescriptorProto::add_reserved_name(const ::std::string& ... function add_reserved_name (line 8219) | inline void EnumDescriptorProto::add_reserved_name(::std::string&& value) { function add_reserved_name (line 8224) | inline void EnumDescriptorProto::add_reserved_name(const char* value) { function add_reserved_name (line 8229) | inline void EnumDescriptorProto::add_reserved_name(const char* value, si... function google (line 8238) | inline ::google::protobuf::RepeatedPtrField< ::std::string>* function set_has_name (line 8252) | inline void EnumValueDescriptorProto::set_has_name() { function clear_has_name (line 8255) | inline void EnumValueDescriptorProto::clear_has_name() { function clear_name (line 8258) | inline void EnumValueDescriptorProto::clear_name() { function set_name (line 8266) | inline void EnumValueDescriptorProto::set_name(const ::std::string& valu... function set_name (line 8272) | inline void EnumValueDescriptorProto::set_name(::std::string&& value) { function set_name (line 8279) | inline void EnumValueDescriptorProto::set_name(const char* value) { function set_name (line 8286) | inline void EnumValueDescriptorProto::set_name(const char* value, function std (line 8293) | inline ::std::string* EnumValueDescriptorProto::mutable_name() { function std (line 8298) | inline ::std::string* EnumValueDescriptorProto::release_name() { function set_allocated_name (line 8306) | inline void EnumValueDescriptorProto::set_allocated_name(::std::string* ... function std (line 8316) | inline ::std::string* EnumValueDescriptorProto::unsafe_arena_release_nam... function unsafe_arena_set_allocated_name (line 8323) | inline void EnumValueDescriptorProto::unsafe_arena_set_allocated_name( function set_has_number (line 8340) | inline void EnumValueDescriptorProto::set_has_number() { function clear_has_number (line 8343) | inline void EnumValueDescriptorProto::clear_has_number() { function clear_number (line 8346) | inline void EnumValueDescriptorProto::clear_number() { function set_number (line 8354) | inline void EnumValueDescriptorProto::set_number(::google::protobuf::int... function set_has_options (line 8364) | inline void EnumValueDescriptorProto::set_has_options() { function clear_has_options (line 8367) | inline void EnumValueDescriptorProto::clear_has_options() { function clear_options (line 8370) | inline void EnumValueDescriptorProto::clear_options() { function google (line 8377) | inline const ::google::protobuf::EnumValueOptions& EnumValueDescriptorPr... function google (line 8393) | inline ::google::protobuf::EnumValueOptions* EnumValueDescriptorProto::u... function google (line 8400) | inline ::google::protobuf::EnumValueOptions* EnumValueDescriptorProto::m... function set_allocated_options (line 8409) | inline void EnumValueDescriptorProto::set_allocated_options(::google::pr... function set_has_name (line 8437) | inline void ServiceDescriptorProto::set_has_name() { function clear_has_name (line 8440) | inline void ServiceDescriptorProto::clear_has_name() { function clear_name (line 8443) | inline void ServiceDescriptorProto::clear_name() { function set_name (line 8451) | inline void ServiceDescriptorProto::set_name(const ::std::string& value) { function set_name (line 8457) | inline void ServiceDescriptorProto::set_name(::std::string&& value) { function set_name (line 8464) | inline void ServiceDescriptorProto::set_name(const char* value) { function set_name (line 8471) | inline void ServiceDescriptorProto::set_name(const char* value, function std (line 8478) | inline ::std::string* ServiceDescriptorProto::mutable_name() { function std (line 8483) | inline ::std::string* ServiceDescriptorProto::release_name() { function set_allocated_name (line 8491) | inline void ServiceDescriptorProto::set_allocated_name(::std::string* na... function std (line 8501) | inline ::std::string* ServiceDescriptorProto::unsafe_arena_release_name() { function unsafe_arena_set_allocated_name (line 8508) | inline void ServiceDescriptorProto::unsafe_arena_set_allocated_name( function clear_method (line 8525) | inline void ServiceDescriptorProto::clear_method() { function google (line 8528) | inline ::google::protobuf::MethodDescriptorProto* ServiceDescriptorProto... function google (line 8532) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::MethodD... function google (line 8537) | inline const ::google::protobuf::MethodDescriptorProto& ServiceDescripto... function google (line 8541) | inline ::google::protobuf::MethodDescriptorProto* ServiceDescriptorProto... function google (line 8545) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::M... function clear_has_options (line 8558) | inline void ServiceDescriptorProto::clear_has_options() { function clear_options (line 8561) | inline void ServiceDescriptorProto::clear_options() { function google (line 8568) | inline const ::google::protobuf::ServiceOptions& ServiceDescriptorProto:... function google (line 8584) | inline ::google::protobuf::ServiceOptions* ServiceDescriptorProto::unsaf... function google (line 8591) | inline ::google::protobuf::ServiceOptions* ServiceDescriptorProto::mutab... function set_allocated_options (line 8600) | inline void ServiceDescriptorProto::set_allocated_options(::google::prot... function set_has_name (line 8628) | inline void MethodDescriptorProto::set_has_name() { function clear_has_name (line 8631) | inline void MethodDescriptorProto::clear_has_name() { function clear_name (line 8634) | inline void MethodDescriptorProto::clear_name() { function set_name (line 8642) | inline void MethodDescriptorProto::set_name(const ::std::string& value) { function set_name (line 8648) | inline void MethodDescriptorProto::set_name(::std::string&& value) { function set_name (line 8655) | inline void MethodDescriptorProto::set_name(const char* value) { function set_name (line 8662) | inline void MethodDescriptorProto::set_name(const char* value, function std (line 8669) | inline ::std::string* MethodDescriptorProto::mutable_name() { function std (line 8674) | inline ::std::string* MethodDescriptorProto::release_name() { function set_allocated_name (line 8682) | inline void MethodDescriptorProto::set_allocated_name(::std::string* nam... function std (line 8692) | inline ::std::string* MethodDescriptorProto::unsafe_arena_release_name() { function unsafe_arena_set_allocated_name (line 8699) | inline void MethodDescriptorProto::unsafe_arena_set_allocated_name( function set_has_input_type (line 8716) | inline void MethodDescriptorProto::set_has_input_type() { function clear_has_input_type (line 8719) | inline void MethodDescriptorProto::clear_has_input_type() { function clear_input_type (line 8722) | inline void MethodDescriptorProto::clear_input_type() { function set_input_type (line 8730) | inline void MethodDescriptorProto::set_input_type(const ::std::string& v... function set_input_type (line 8736) | inline void MethodDescriptorProto::set_input_type(::std::string&& value) { function set_input_type (line 8743) | inline void MethodDescriptorProto::set_input_type(const char* value) { function set_input_type (line 8750) | inline void MethodDescriptorProto::set_input_type(const char* value, function std (line 8757) | inline ::std::string* MethodDescriptorProto::mutable_input_type() { function std (line 8762) | inline ::std::string* MethodDescriptorProto::release_input_type() { function set_allocated_input_type (line 8770) | inline void MethodDescriptorProto::set_allocated_input_type(::std::strin... function std (line 8780) | inline ::std::string* MethodDescriptorProto::unsafe_arena_release_input_... function unsafe_arena_set_allocated_input_type (line 8787) | inline void MethodDescriptorProto::unsafe_arena_set_allocated_input_type( function set_has_output_type (line 8804) | inline void MethodDescriptorProto::set_has_output_type() { function clear_has_output_type (line 8807) | inline void MethodDescriptorProto::clear_has_output_type() { function clear_output_type (line 8810) | inline void MethodDescriptorProto::clear_output_type() { function set_output_type (line 8818) | inline void MethodDescriptorProto::set_output_type(const ::std::string& ... function set_output_type (line 8824) | inline void MethodDescriptorProto::set_output_type(::std::string&& value) { function set_output_type (line 8831) | inline void MethodDescriptorProto::set_output_type(const char* value) { function set_output_type (line 8838) | inline void MethodDescriptorProto::set_output_type(const char* value, function std (line 8845) | inline ::std::string* MethodDescriptorProto::mutable_output_type() { function std (line 8850) | inline ::std::string* MethodDescriptorProto::release_output_type() { function set_allocated_output_type (line 8858) | inline void MethodDescriptorProto::set_allocated_output_type(::std::stri... function std (line 8868) | inline ::std::string* MethodDescriptorProto::unsafe_arena_release_output... function unsafe_arena_set_allocated_output_type (line 8875) | inline void MethodDescriptorProto::unsafe_arena_set_allocated_output_type( function set_has_options (line 8892) | inline void MethodDescriptorProto::set_has_options() { function clear_has_options (line 8895) | inline void MethodDescriptorProto::clear_has_options() { function clear_options (line 8898) | inline void MethodDescriptorProto::clear_options() { function google (line 8905) | inline const ::google::protobuf::MethodOptions& MethodDescriptorProto::o... function google (line 8921) | inline ::google::protobuf::MethodOptions* MethodDescriptorProto::unsafe_... function google (line 8928) | inline ::google::protobuf::MethodOptions* MethodDescriptorProto::mutable... function set_allocated_options (line 8937) | inline void MethodDescriptorProto::set_allocated_options(::google::proto... function set_has_client_streaming (line 8961) | inline void MethodDescriptorProto::set_has_client_streaming() { function clear_has_client_streaming (line 8964) | inline void MethodDescriptorProto::clear_has_client_streaming() { function clear_client_streaming (line 8967) | inline void MethodDescriptorProto::clear_client_streaming() { function set_client_streaming (line 8975) | inline void MethodDescriptorProto::set_client_streaming(bool value) { function set_has_server_streaming (line 8985) | inline void MethodDescriptorProto::set_has_server_streaming() { function clear_has_server_streaming (line 8988) | inline void MethodDescriptorProto::clear_has_server_streaming() { function clear_server_streaming (line 8991) | inline void MethodDescriptorProto::clear_server_streaming() { function set_server_streaming (line 8999) | inline void MethodDescriptorProto::set_server_streaming(bool value) { function set_has_java_package (line 9013) | inline void FileOptions::set_has_java_package() { function clear_has_java_package (line 9016) | inline void FileOptions::clear_has_java_package() { function clear_java_package (line 9019) | inline void FileOptions::clear_java_package() { function set_java_package (line 9027) | inline void FileOptions::set_java_package(const ::std::string& value) { function set_java_package (line 9033) | inline void FileOptions::set_java_package(::std::string&& value) { function set_java_package (line 9040) | inline void FileOptions::set_java_package(const char* value) { function set_java_package (line 9047) | inline void FileOptions::set_java_package(const char* value, function std (line 9054) | inline ::std::string* FileOptions::mutable_java_package() { function std (line 9059) | inline ::std::string* FileOptions::release_java_package() { function set_allocated_java_package (line 9067) | inline void FileOptions::set_allocated_java_package(::std::string* java_... function std (line 9077) | inline ::std::string* FileOptions::unsafe_arena_release_java_package() { function unsafe_arena_set_allocated_java_package (line 9084) | inline void FileOptions::unsafe_arena_set_allocated_java_package( function set_has_java_outer_classname (line 9101) | inline void FileOptions::set_has_java_outer_classname() { function clear_has_java_outer_classname (line 9104) | inline void FileOptions::clear_has_java_outer_classname() { function clear_java_outer_classname (line 9107) | inline void FileOptions::clear_java_outer_classname() { function set_java_outer_classname (line 9115) | inline void FileOptions::set_java_outer_classname(const ::std::string& v... function set_java_outer_classname (line 9121) | inline void FileOptions::set_java_outer_classname(::std::string&& value) { function set_java_outer_classname (line 9128) | inline void FileOptions::set_java_outer_classname(const char* value) { function set_java_outer_classname (line 9135) | inline void FileOptions::set_java_outer_classname(const char* value, function std (line 9142) | inline ::std::string* FileOptions::mutable_java_outer_classname() { function std (line 9147) | inline ::std::string* FileOptions::release_java_outer_classname() { function set_allocated_java_outer_classname (line 9155) | inline void FileOptions::set_allocated_java_outer_classname(::std::strin... function std (line 9165) | inline ::std::string* FileOptions::unsafe_arena_release_java_outer_class... function unsafe_arena_set_allocated_java_outer_classname (line 9172) | inline void FileOptions::unsafe_arena_set_allocated_java_outer_classname( function set_has_java_multiple_files (line 9189) | inline void FileOptions::set_has_java_multiple_files() { function clear_has_java_multiple_files (line 9192) | inline void FileOptions::clear_has_java_multiple_files() { function clear_java_multiple_files (line 9195) | inline void FileOptions::clear_java_multiple_files() { function set_java_multiple_files (line 9203) | inline void FileOptions::set_java_multiple_files(bool value) { function set_has_java_generate_equals_and_hash (line 9213) | inline void FileOptions::set_has_java_generate_equals_and_hash() { function clear_has_java_generate_equals_and_hash (line 9216) | inline void FileOptions::clear_has_java_generate_equals_and_hash() { function clear_java_generate_equals_and_hash (line 9219) | inline void FileOptions::clear_java_generate_equals_and_hash() { function set_java_generate_equals_and_hash (line 9227) | inline void FileOptions::set_java_generate_equals_and_hash(bool value) { function set_has_java_string_check_utf8 (line 9237) | inline void FileOptions::set_has_java_string_check_utf8() { function clear_has_java_string_check_utf8 (line 9240) | inline void FileOptions::clear_has_java_string_check_utf8() { function clear_java_string_check_utf8 (line 9243) | inline void FileOptions::clear_java_string_check_utf8() { function set_java_string_check_utf8 (line 9251) | inline void FileOptions::set_java_string_check_utf8(bool value) { function set_has_optimize_for (line 9261) | inline void FileOptions::set_has_optimize_for() { function clear_has_optimize_for (line 9264) | inline void FileOptions::clear_has_optimize_for() { function clear_optimize_for (line 9267) | inline void FileOptions::clear_optimize_for() { function set_optimize_for (line 9275) | inline void FileOptions::set_optimize_for(::google::protobuf::FileOption... function set_has_go_package (line 9286) | inline void FileOptions::set_has_go_package() { function clear_has_go_package (line 9289) | inline void FileOptions::clear_has_go_package() { function clear_go_package (line 9292) | inline void FileOptions::clear_go_package() { function set_go_package (line 9300) | inline void FileOptions::set_go_package(const ::std::string& value) { function set_go_package (line 9306) | inline void FileOptions::set_go_package(::std::string&& value) { function set_go_package (line 9313) | inline void FileOptions::set_go_package(const char* value) { function set_go_package (line 9320) | inline void FileOptions::set_go_package(const char* value, function std (line 9327) | inline ::std::string* FileOptions::mutable_go_package() { function std (line 9332) | inline ::std::string* FileOptions::release_go_package() { function set_allocated_go_package (line 9340) | inline void FileOptions::set_allocated_go_package(::std::string* go_pack... function std (line 9350) | inline ::std::string* FileOptions::unsafe_arena_release_go_package() { function unsafe_arena_set_allocated_go_package (line 9357) | inline void FileOptions::unsafe_arena_set_allocated_go_package( function set_has_cc_generic_services (line 9374) | inline void FileOptions::set_has_cc_generic_services() { function clear_has_cc_generic_services (line 9377) | inline void FileOptions::clear_has_cc_generic_services() { function clear_cc_generic_services (line 9380) | inline void FileOptions::clear_cc_generic_services() { function set_cc_generic_services (line 9388) | inline void FileOptions::set_cc_generic_services(bool value) { function set_has_java_generic_services (line 9398) | inline void FileOptions::set_has_java_generic_services() { function clear_has_java_generic_services (line 9401) | inline void FileOptions::clear_has_java_generic_services() { function clear_java_generic_services (line 9404) | inline void FileOptions::clear_java_generic_services() { function set_java_generic_services (line 9412) | inline void FileOptions::set_java_generic_services(bool value) { function set_has_py_generic_services (line 9422) | inline void FileOptions::set_has_py_generic_services() { function clear_has_py_generic_services (line 9425) | inline void FileOptions::clear_has_py_generic_services() { function clear_py_generic_services (line 9428) | inline void FileOptions::clear_py_generic_services() { function set_py_generic_services (line 9436) | inline void FileOptions::set_py_generic_services(bool value) { function set_has_php_generic_services (line 9446) | inline void FileOptions::set_has_php_generic_services() { function clear_has_php_generic_services (line 9449) | inline void FileOptions::clear_has_php_generic_services() { function clear_php_generic_services (line 9452) | inline void FileOptions::clear_php_generic_services() { function set_php_generic_services (line 9460) | inline void FileOptions::set_php_generic_services(bool value) { function set_has_deprecated (line 9470) | inline void FileOptions::set_has_deprecated() { function clear_has_deprecated (line 9473) | inline void FileOptions::clear_has_deprecated() { function clear_deprecated (line 9476) | inline void FileOptions::clear_deprecated() { function set_deprecated (line 9484) | inline void FileOptions::set_deprecated(bool value) { function set_has_cc_enable_arenas (line 9494) | inline void FileOptions::set_has_cc_enable_arenas() { function clear_has_cc_enable_arenas (line 9497) | inline void FileOptions::clear_has_cc_enable_arenas() { function clear_cc_enable_arenas (line 9500) | inline void FileOptions::clear_cc_enable_arenas() { function set_cc_enable_arenas (line 9508) | inline void FileOptions::set_cc_enable_arenas(bool value) { function set_has_objc_class_prefix (line 9518) | inline void FileOptions::set_has_objc_class_prefix() { function clear_has_objc_class_prefix (line 9521) | inline void FileOptions::clear_has_objc_class_prefix() { function clear_objc_class_prefix (line 9524) | inline void FileOptions::clear_objc_class_prefix() { function set_objc_class_prefix (line 9532) | inline void FileOptions::set_objc_class_prefix(const ::std::string& valu... function set_objc_class_prefix (line 9538) | inline void FileOptions::set_objc_class_prefix(::std::string&& value) { function set_objc_class_prefix (line 9545) | inline void FileOptions::set_objc_class_prefix(const char* value) { function set_objc_class_prefix (line 9552) | inline void FileOptions::set_objc_class_prefix(const char* value, function std (line 9559) | inline ::std::string* FileOptions::mutable_objc_class_prefix() { function std (line 9564) | inline ::std::string* FileOptions::release_objc_class_prefix() { function set_allocated_objc_class_prefix (line 9572) | inline void FileOptions::set_allocated_objc_class_prefix(::std::string* ... function std (line 9582) | inline ::std::string* FileOptions::unsafe_arena_release_objc_class_prefi... function unsafe_arena_set_allocated_objc_class_prefix (line 9589) | inline void FileOptions::unsafe_arena_set_allocated_objc_class_prefix( function set_has_csharp_namespace (line 9606) | inline void FileOptions::set_has_csharp_namespace() { function clear_has_csharp_namespace (line 9609) | inline void FileOptions::clear_has_csharp_namespace() { function clear_csharp_namespace (line 9612) | inline void FileOptions::clear_csharp_namespace() { function set_csharp_namespace (line 9620) | inline void FileOptions::set_csharp_namespace(const ::std::string& value) { function set_csharp_namespace (line 9626) | inline void FileOptions::set_csharp_namespace(::std::string&& value) { function set_csharp_namespace (line 9633) | inline void FileOptions::set_csharp_namespace(const char* value) { function set_csharp_namespace (line 9640) | inline void FileOptions::set_csharp_namespace(const char* value, function std (line 9647) | inline ::std::string* FileOptions::mutable_csharp_namespace() { function std (line 9652) | inline ::std::string* FileOptions::release_csharp_namespace() { function set_allocated_csharp_namespace (line 9660) | inline void FileOptions::set_allocated_csharp_namespace(::std::string* c... function std (line 9670) | inline ::std::string* FileOptions::unsafe_arena_release_csharp_namespace... function unsafe_arena_set_allocated_csharp_namespace (line 9677) | inline void FileOptions::unsafe_arena_set_allocated_csharp_namespace( function set_has_swift_prefix (line 9694) | inline void FileOptions::set_has_swift_prefix() { function clear_has_swift_prefix (line 9697) | inline void FileOptions::clear_has_swift_prefix() { function clear_swift_prefix (line 9700) | inline void FileOptions::clear_swift_prefix() { function set_swift_prefix (line 9708) | inline void FileOptions::set_swift_prefix(const ::std::string& value) { function set_swift_prefix (line 9714) | inline void FileOptions::set_swift_prefix(::std::string&& value) { function set_swift_prefix (line 9721) | inline void FileOptions::set_swift_prefix(const char* value) { function set_swift_prefix (line 9728) | inline void FileOptions::set_swift_prefix(const char* value, function std (line 9735) | inline ::std::string* FileOptions::mutable_swift_prefix() { function std (line 9740) | inline ::std::string* FileOptions::release_swift_prefix() { function set_allocated_swift_prefix (line 9748) | inline void FileOptions::set_allocated_swift_prefix(::std::string* swift... function std (line 9758) | inline ::std::string* FileOptions::unsafe_arena_release_swift_prefix() { function unsafe_arena_set_allocated_swift_prefix (line 9765) | inline void FileOptions::unsafe_arena_set_allocated_swift_prefix( function set_has_php_class_prefix (line 9782) | inline void FileOptions::set_has_php_class_prefix() { function clear_has_php_class_prefix (line 9785) | inline void FileOptions::clear_has_php_class_prefix() { function clear_php_class_prefix (line 9788) | inline void FileOptions::clear_php_class_prefix() { function set_php_class_prefix (line 9796) | inline void FileOptions::set_php_class_prefix(const ::std::string& value) { function set_php_class_prefix (line 9802) | inline void FileOptions::set_php_class_prefix(::std::string&& value) { function set_php_class_prefix (line 9809) | inline void FileOptions::set_php_class_prefix(const char* value) { function set_php_class_prefix (line 9816) | inline void FileOptions::set_php_class_prefix(const char* value, function std (line 9823) | inline ::std::string* FileOptions::mutable_php_class_prefix() { function std (line 9828) | inline ::std::string* FileOptions::release_php_class_prefix() { function set_allocated_php_class_prefix (line 9836) | inline void FileOptions::set_allocated_php_class_prefix(::std::string* p... function std (line 9846) | inline ::std::string* FileOptions::unsafe_arena_release_php_class_prefix... function unsafe_arena_set_allocated_php_class_prefix (line 9853) | inline void FileOptions::unsafe_arena_set_allocated_php_class_prefix( function set_has_php_namespace (line 9870) | inline void FileOptions::set_has_php_namespace() { function clear_has_php_namespace (line 9873) | inline void FileOptions::clear_has_php_namespace() { function clear_php_namespace (line 9876) | inline void FileOptions::clear_php_namespace() { function set_php_namespace (line 9884) | inline void FileOptions::set_php_namespace(const ::std::string& value) { function set_php_namespace (line 9890) | inline void FileOptions::set_php_namespace(::std::string&& value) { function set_php_namespace (line 9897) | inline void FileOptions::set_php_namespace(const char* value) { function set_php_namespace (line 9904) | inline void FileOptions::set_php_namespace(const char* value, function std (line 9911) | inline ::std::string* FileOptions::mutable_php_namespace() { function std (line 9916) | inline ::std::string* FileOptions::release_php_namespace() { function set_allocated_php_namespace (line 9924) | inline void FileOptions::set_allocated_php_namespace(::std::string* php_... function std (line 9934) | inline ::std::string* FileOptions::unsafe_arena_release_php_namespace() { function unsafe_arena_set_allocated_php_namespace (line 9941) | inline void FileOptions::unsafe_arena_set_allocated_php_namespace( function set_has_php_metadata_namespace (line 9958) | inline void FileOptions::set_has_php_metadata_namespace() { function clear_has_php_metadata_namespace (line 9961) | inline void FileOptions::clear_has_php_metadata_namespace() { function clear_php_metadata_namespace (line 9964) | inline void FileOptions::clear_php_metadata_namespace() { function set_php_metadata_namespace (line 9972) | inline void FileOptions::set_php_metadata_namespace(const ::std::string&... function set_php_metadata_namespace (line 9978) | inline void FileOptions::set_php_metadata_namespace(::std::string&& valu... function set_php_metadata_namespace (line 9985) | inline void FileOptions::set_php_metadata_namespace(const char* value) { function set_php_metadata_namespace (line 9992) | inline void FileOptions::set_php_metadata_namespace(const char* value, function std (line 9999) | inline ::std::string* FileOptions::mutable_php_metadata_namespace() { function std (line 10004) | inline ::std::string* FileOptions::release_php_metadata_namespace() { function set_allocated_php_metadata_namespace (line 10012) | inline void FileOptions::set_allocated_php_metadata_namespace(::std::str... function std (line 10022) | inline ::std::string* FileOptions::unsafe_arena_release_php_metadata_nam... function unsafe_arena_set_allocated_php_metadata_namespace (line 10029) | inline void FileOptions::unsafe_arena_set_allocated_php_metadata_namespace( function set_has_ruby_package (line 10046) | inline void FileOptions::set_has_ruby_package() { function clear_has_ruby_package (line 10049) | inline void FileOptions::clear_has_ruby_package() { function clear_ruby_package (line 10052) | inline void FileOptions::clear_ruby_package() { function set_ruby_package (line 10060) | inline void FileOptions::set_ruby_package(const ::std::string& value) { function set_ruby_package (line 10066) | inline void FileOptions::set_ruby_package(::std::string&& value) { function set_ruby_package (line 10073) | inline void FileOptions::set_ruby_package(const char* value) { function set_ruby_package (line 10080) | inline void FileOptions::set_ruby_package(const char* value, function std (line 10087) | inline ::std::string* FileOptions::mutable_ruby_package() { function std (line 10092) | inline ::std::string* FileOptions::release_ruby_package() { function set_allocated_ruby_package (line 10100) | inline void FileOptions::set_allocated_ruby_package(::std::string* ruby_... function std (line 10110) | inline ::std::string* FileOptions::unsafe_arena_release_ruby_package() { function unsafe_arena_set_allocated_ruby_package (line 10117) | inline void FileOptions::unsafe_arena_set_allocated_ruby_package( function clear_uninterpreted_option (line 10134) | inline void FileOptions::clear_uninterpreted_option() { function google (line 10137) | inline ::google::protobuf::UninterpretedOption* FileOptions::mutable_uni... function google (line 10141) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::Uninter... function google (line 10146) | inline const ::google::protobuf::UninterpretedOption& FileOptions::unint... function google (line 10150) | inline ::google::protobuf::UninterpretedOption* FileOptions::add_uninter... function google (line 10154) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::U... function clear_has_message_set_wire_format (line 10171) | inline void MessageOptions::clear_has_message_set_wire_format() { function clear_message_set_wire_format (line 10174) | inline void MessageOptions::clear_message_set_wire_format() { function set_message_set_wire_format (line 10182) | inline void MessageOptions::set_message_set_wire_format(bool value) { function set_has_no_standard_descriptor_accessor (line 10192) | inline void MessageOptions::set_has_no_standard_descriptor_accessor() { function clear_has_no_standard_descriptor_accessor (line 10195) | inline void MessageOptions::clear_has_no_standard_descriptor_accessor() { function clear_no_standard_descriptor_accessor (line 10198) | inline void MessageOptions::clear_no_standard_descriptor_accessor() { function set_no_standard_descriptor_accessor (line 10206) | inline void MessageOptions::set_no_standard_descriptor_accessor(bool val... function set_has_deprecated (line 10216) | inline void MessageOptions::set_has_deprecated() { function clear_has_deprecated (line 10219) | inline void MessageOptions::clear_has_deprecated() { function clear_deprecated (line 10222) | inline void MessageOptions::clear_deprecated() { function set_deprecated (line 10230) | inline void MessageOptions::set_deprecated(bool value) { function set_has_map_entry (line 10240) | inline void MessageOptions::set_has_map_entry() { function clear_has_map_entry (line 10243) | inline void MessageOptions::clear_has_map_entry() { function clear_map_entry (line 10246) | inline void MessageOptions::clear_map_entry() { function set_map_entry (line 10254) | inline void MessageOptions::set_map_entry(bool value) { function clear_uninterpreted_option (line 10264) | inline void MessageOptions::clear_uninterpreted_option() { function google (line 10267) | inline ::google::protobuf::UninterpretedOption* MessageOptions::mutable_... function google (line 10271) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::Uninter... function google (line 10276) | inline const ::google::protobuf::UninterpretedOption& MessageOptions::un... function google (line 10280) | inline ::google::protobuf::UninterpretedOption* MessageOptions::add_unin... function google (line 10284) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::U... function clear_has_ctype (line 10301) | inline void FieldOptions::clear_has_ctype() { function clear_ctype (line 10304) | inline void FieldOptions::clear_ctype() { function set_ctype (line 10312) | inline void FieldOptions::set_ctype(::google::protobuf::FieldOptions_CTy... function set_has_packed (line 10323) | inline void FieldOptions::set_has_packed() { function clear_has_packed (line 10326) | inline void FieldOptions::clear_has_packed() { function clear_packed (line 10329) | inline void FieldOptions::clear_packed() { function set_packed (line 10337) | inline void FieldOptions::set_packed(bool value) { function set_has_jstype (line 10347) | inline void FieldOptions::set_has_jstype() { function clear_has_jstype (line 10350) | inline void FieldOptions::clear_has_jstype() { function clear_jstype (line 10353) | inline void FieldOptions::clear_jstype() { function set_jstype (line 10361) | inline void FieldOptions::set_jstype(::google::protobuf::FieldOptions_JS... function set_has_lazy (line 10372) | inline void FieldOptions::set_has_lazy() { function clear_has_lazy (line 10375) | inline void FieldOptions::clear_has_lazy() { function clear_lazy (line 10378) | inline void FieldOptions::clear_lazy() { function set_lazy (line 10386) | inline void FieldOptions::set_lazy(bool value) { function set_has_deprecated (line 10396) | inline void FieldOptions::set_has_deprecated() { function clear_has_deprecated (line 10399) | inline void FieldOptions::clear_has_deprecated() { function clear_deprecated (line 10402) | inline void FieldOptions::clear_deprecated() { function set_deprecated (line 10410) | inline void FieldOptions::set_deprecated(bool value) { function set_has_weak (line 10420) | inline void FieldOptions::set_has_weak() { function clear_has_weak (line 10423) | inline void FieldOptions::clear_has_weak() { function clear_weak (line 10426) | inline void FieldOptions::clear_weak() { function set_weak (line 10434) | inline void FieldOptions::set_weak(bool value) { function clear_uninterpreted_option (line 10444) | inline void FieldOptions::clear_uninterpreted_option() { function google (line 10447) | inline ::google::protobuf::UninterpretedOption* FieldOptions::mutable_un... function google (line 10451) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::Uninter... function google (line 10456) | inline const ::google::protobuf::UninterpretedOption& FieldOptions::unin... function google (line 10460) | inline ::google::protobuf::UninterpretedOption* FieldOptions::add_uninte... function google (line 10464) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::U... function google (line 10481) | inline ::google::protobuf::UninterpretedOption* OneofOptions::mutable_un... function google (line 10485) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::Uninter... function google (line 10490) | inline const ::google::protobuf::UninterpretedOption& OneofOptions::unin... function google (line 10494) | inline ::google::protobuf::UninterpretedOption* OneofOptions::add_uninte... function google (line 10498) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::U... function clear_has_allow_alias (line 10515) | inline void EnumOptions::clear_has_allow_alias() { function clear_allow_alias (line 10518) | inline void EnumOptions::clear_allow_alias() { function set_allow_alias (line 10526) | inline void EnumOptions::set_allow_alias(bool value) { function set_has_deprecated (line 10536) | inline void EnumOptions::set_has_deprecated() { function clear_has_deprecated (line 10539) | inline void EnumOptions::clear_has_deprecated() { function clear_deprecated (line 10542) | inline void EnumOptions::clear_deprecated() { function set_deprecated (line 10550) | inline void EnumOptions::set_deprecated(bool value) { function clear_uninterpreted_option (line 10560) | inline void EnumOptions::clear_uninterpreted_option() { function google (line 10563) | inline ::google::protobuf::UninterpretedOption* EnumOptions::mutable_uni... function google (line 10567) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::Uninter... function google (line 10572) | inline const ::google::protobuf::UninterpretedOption& EnumOptions::unint... function google (line 10576) | inline ::google::protobuf::UninterpretedOption* EnumOptions::add_uninter... function google (line 10580) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::U... function clear_has_deprecated (line 10597) | inline void EnumValueOptions::clear_has_deprecated() { function clear_deprecated (line 10600) | inline void EnumValueOptions::clear_deprecated() { function set_deprecated (line 10608) | inline void EnumValueOptions::set_deprecated(bool value) { function clear_uninterpreted_option (line 10618) | inline void EnumValueOptions::clear_uninterpreted_option() { function google (line 10621) | inline ::google::protobuf::UninterpretedOption* EnumValueOptions::mutabl... function google (line 10625) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::Uninter... function google (line 10630) | inline const ::google::protobuf::UninterpretedOption& EnumValueOptions::... function google (line 10634) | inline ::google::protobuf::UninterpretedOption* EnumValueOptions::add_un... function google (line 10638) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::U... function clear_has_deprecated (line 10655) | inline void ServiceOptions::clear_has_deprecated() { function clear_deprecated (line 10658) | inline void ServiceOptions::clear_deprecated() { function set_deprecated (line 10666) | inline void ServiceOptions::set_deprecated(bool value) { function clear_uninterpreted_option (line 10676) | inline void ServiceOptions::clear_uninterpreted_option() { function google (line 10679) | inline ::google::protobuf::UninterpretedOption* ServiceOptions::mutable_... function google (line 10683) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::Uninter... function google (line 10688) | inline const ::google::protobuf::UninterpretedOption& ServiceOptions::un... function google (line 10692) | inline ::google::protobuf::UninterpretedOption* ServiceOptions::add_unin... function google (line 10696) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::U... function clear_has_deprecated (line 10713) | inline void MethodOptions::clear_has_deprecated() { function clear_deprecated (line 10716) | inline void MethodOptions::clear_deprecated() { function set_deprecated (line 10724) | inline void MethodOptions::set_deprecated(bool value) { function set_has_idempotency_level (line 10734) | inline void MethodOptions::set_has_idempotency_level() { function clear_has_idempotency_level (line 10737) | inline void MethodOptions::clear_has_idempotency_level() { function clear_idempotency_level (line 10740) | inline void MethodOptions::clear_idempotency_level() { function set_idempotency_level (line 10748) | inline void MethodOptions::set_idempotency_level(::google::protobuf::Met... function clear_uninterpreted_option (line 10759) | inline void MethodOptions::clear_uninterpreted_option() { function google (line 10762) | inline ::google::protobuf::UninterpretedOption* MethodOptions::mutable_u... function google (line 10766) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::Uninter... function google (line 10771) | inline const ::google::protobuf::UninterpretedOption& MethodOptions::uni... function google (line 10775) | inline ::google::protobuf::UninterpretedOption* MethodOptions::add_unint... function google (line 10779) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::U... function clear_has_name_part (line 10796) | inline void UninterpretedOption_NamePart::clear_has_name_part() { function clear_name_part (line 10799) | inline void UninterpretedOption_NamePart::clear_name_part() { function set_name_part (line 10807) | inline void UninterpretedOption_NamePart::set_name_part(const ::std::str... function set_name_part (line 10813) | inline void UninterpretedOption_NamePart::set_name_part(::std::string&& ... function set_name_part (line 10820) | inline void UninterpretedOption_NamePart::set_name_part(const char* valu... function set_name_part (line 10827) | inline void UninterpretedOption_NamePart::set_name_part(const char* value, function std (line 10834) | inline ::std::string* UninterpretedOption_NamePart::mutable_name_part() { function std (line 10839) | inline ::std::string* UninterpretedOption_NamePart::release_name_part() { function set_allocated_name_part (line 10847) | inline void UninterpretedOption_NamePart::set_allocated_name_part(::std:... function std (line 10857) | inline ::std::string* UninterpretedOption_NamePart::unsafe_arena_release... function unsafe_arena_set_allocated_name_part (line 10864) | inline void UninterpretedOption_NamePart::unsafe_arena_set_allocated_nam... function set_has_is_extension (line 10881) | inline void UninterpretedOption_NamePart::set_has_is_extension() { function clear_has_is_extension (line 10884) | inline void UninterpretedOption_NamePart::clear_has_is_extension() { function clear_is_extension (line 10887) | inline void UninterpretedOption_NamePart::clear_is_extension() { function set_is_extension (line 10895) | inline void UninterpretedOption_NamePart::set_is_extension(bool value) { function clear_name (line 10909) | inline void UninterpretedOption::clear_name() { function google (line 10912) | inline ::google::protobuf::UninterpretedOption_NamePart* UninterpretedOp... function google (line 10916) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::Uninter... function google (line 10921) | inline const ::google::protobuf::UninterpretedOption_NamePart& Uninterpr... function google (line 10925) | inline ::google::protobuf::UninterpretedOption_NamePart* UninterpretedOp... function google (line 10929) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::U... function clear_has_identifier_value (line 10942) | inline void UninterpretedOption::clear_has_identifier_value() { function clear_identifier_value (line 10945) | inline void UninterpretedOption::clear_identifier_value() { function set_identifier_value (line 10953) | inline void UninterpretedOption::set_identifier_value(const ::std::strin... function set_identifier_value (line 10959) | inline void UninterpretedOption::set_identifier_value(::std::string&& va... function set_identifier_value (line 10966) | inline void UninterpretedOption::set_identifier_value(const char* value) { function set_identifier_value (line 10973) | inline void UninterpretedOption::set_identifier_value(const char* value, function std (line 10980) | inline ::std::string* UninterpretedOption::mutable_identifier_value() { function std (line 10985) | inline ::std::string* UninterpretedOption::release_identifier_value() { function set_allocated_identifier_value (line 10993) | inline void UninterpretedOption::set_allocated_identifier_value(::std::s... function std (line 11003) | inline ::std::string* UninterpretedOption::unsafe_arena_release_identifi... function unsafe_arena_set_allocated_identifier_value (line 11010) | inline void UninterpretedOption::unsafe_arena_set_allocated_identifier_v... function set_has_positive_int_value (line 11027) | inline void UninterpretedOption::set_has_positive_int_value() { function clear_has_positive_int_value (line 11030) | inline void UninterpretedOption::clear_has_positive_int_value() { function clear_positive_int_value (line 11033) | inline void UninterpretedOption::clear_positive_int_value() { function set_positive_int_value (line 11041) | inline void UninterpretedOption::set_positive_int_value(::google::protob... function set_has_negative_int_value (line 11051) | inline void UninterpretedOption::set_has_negative_int_value() { function clear_has_negative_int_value (line 11054) | inline void UninterpretedOption::clear_has_negative_int_value() { function clear_negative_int_value (line 11057) | inline void UninterpretedOption::clear_negative_int_value() { function set_negative_int_value (line 11065) | inline void UninterpretedOption::set_negative_int_value(::google::protob... function set_has_double_value (line 11075) | inline void UninterpretedOption::set_has_double_value() { function clear_has_double_value (line 11078) | inline void UninterpretedOption::clear_has_double_value() { function clear_double_value (line 11081) | inline void UninterpretedOption::clear_double_value() { function set_double_value (line 11089) | inline void UninterpretedOption::set_double_value(double value) { function set_has_string_value (line 11099) | inline void UninterpretedOption::set_has_string_value() { function clear_has_string_value (line 11102) | inline void UninterpretedOption::clear_has_string_value() { function clear_string_value (line 11105) | inline void UninterpretedOption::clear_string_value() { function set_string_value (line 11113) | inline void UninterpretedOption::set_string_value(const ::std::string& v... function set_string_value (line 11119) | inline void UninterpretedOption::set_string_value(::std::string&& value) { function set_string_value (line 11126) | inline void UninterpretedOption::set_string_value(const char* value) { function set_string_value (line 11133) | inline void UninterpretedOption::set_string_value(const void* value, function std (line 11140) | inline ::std::string* UninterpretedOption::mutable_string_value() { function std (line 11145) | inline ::std::string* UninterpretedOption::release_string_value() { function set_allocated_string_value (line 11153) | inline void UninterpretedOption::set_allocated_string_value(::std::strin... function std (line 11163) | inline ::std::string* UninterpretedOption::unsafe_arena_release_string_v... function unsafe_arena_set_allocated_string_value (line 11170) | inline void UninterpretedOption::unsafe_arena_set_allocated_string_value( function set_has_aggregate_value (line 11187) | inline void UninterpretedOption::set_has_aggregate_value() { function clear_has_aggregate_value (line 11190) | inline void UninterpretedOption::clear_has_aggregate_value() { function clear_aggregate_value (line 11193) | inline void UninterpretedOption::clear_aggregate_value() { function set_aggregate_value (line 11201) | inline void UninterpretedOption::set_aggregate_value(const ::std::string... function set_aggregate_value (line 11207) | inline void UninterpretedOption::set_aggregate_value(::std::string&& val... function set_aggregate_value (line 11214) | inline void UninterpretedOption::set_aggregate_value(const char* value) { function set_aggregate_value (line 11221) | inline void UninterpretedOption::set_aggregate_value(const char* value, function std (line 11228) | inline ::std::string* UninterpretedOption::mutable_aggregate_value() { function std (line 11233) | inline ::std::string* UninterpretedOption::release_aggregate_value() { function set_allocated_aggregate_value (line 11241) | inline void UninterpretedOption::set_allocated_aggregate_value(::std::st... function std (line 11251) | inline ::std::string* UninterpretedOption::unsafe_arena_release_aggregat... function unsafe_arena_set_allocated_aggregate_value (line 11258) | inline void UninterpretedOption::unsafe_arena_set_allocated_aggregate_va... function clear_path (line 11279) | inline void SourceCodeInfo_Location::clear_path() { function set_path (line 11286) | inline void SourceCodeInfo_Location::set_path(int index, ::google::proto... function add_path (line 11290) | inline void SourceCodeInfo_Location::add_path(::google::protobuf::int32 ... function google (line 11299) | inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >* function clear_span (line 11309) | inline void SourceCodeInfo_Location::clear_span() { function set_span (line 11316) | inline void SourceCodeInfo_Location::set_span(int index, ::google::proto... function add_span (line 11320) | inline void SourceCodeInfo_Location::add_span(::google::protobuf::int32 ... function google (line 11329) | inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >* function set_has_leading_comments (line 11339) | inline void SourceCodeInfo_Location::set_has_leading_comments() { function clear_has_leading_comments (line 11342) | inline void SourceCodeInfo_Location::clear_has_leading_comments() { function clear_leading_comments (line 11345) | inline void SourceCodeInfo_Location::clear_leading_comments() { function set_leading_comments (line 11353) | inline void SourceCodeInfo_Location::set_leading_comments(const ::std::s... function set_leading_comments (line 11359) | inline void SourceCodeInfo_Location::set_leading_comments(::std::string&... function set_leading_comments (line 11366) | inline void SourceCodeInfo_Location::set_leading_comments(const char* va... function set_leading_comments (line 11373) | inline void SourceCodeInfo_Location::set_leading_comments(const char* va... function std (line 11380) | inline ::std::string* SourceCodeInfo_Location::mutable_leading_comments() { function std (line 11385) | inline ::std::string* SourceCodeInfo_Location::release_leading_comments() { function set_allocated_leading_comments (line 11393) | inline void SourceCodeInfo_Location::set_allocated_leading_comments(::st... function std (line 11403) | inline ::std::string* SourceCodeInfo_Location::unsafe_arena_release_lead... function unsafe_arena_set_allocated_leading_comments (line 11410) | inline void SourceCodeInfo_Location::unsafe_arena_set_allocated_leading_... function set_has_trailing_comments (line 11427) | inline void SourceCodeInfo_Location::set_has_trailing_comments() { function clear_has_trailing_comments (line 11430) | inline void SourceCodeInfo_Location::clear_has_trailing_comments() { function clear_trailing_comments (line 11433) | inline void SourceCodeInfo_Location::clear_trailing_comments() { function set_trailing_comments (line 11441) | inline void SourceCodeInfo_Location::set_trailing_comments(const ::std::... function set_trailing_comments (line 11447) | inline void SourceCodeInfo_Location::set_trailing_comments(::std::string... function set_trailing_comments (line 11454) | inline void SourceCodeInfo_Location::set_trailing_comments(const char* v... function set_trailing_comments (line 11461) | inline void SourceCodeInfo_Location::set_trailing_comments(const char* v... function std (line 11468) | inline ::std::string* SourceCodeInfo_Location::mutable_trailing_comments... function std (line 11473) | inline ::std::string* SourceCodeInfo_Location::release_trailing_comments... function set_allocated_trailing_comments (line 11481) | inline void SourceCodeInfo_Location::set_allocated_trailing_comments(::s... function std (line 11491) | inline ::std::string* SourceCodeInfo_Location::unsafe_arena_release_trai... function unsafe_arena_set_allocated_trailing_comments (line 11498) | inline void SourceCodeInfo_Location::unsafe_arena_set_allocated_trailing... function clear_leading_detached_comments (line 11515) | inline void SourceCodeInfo_Location::clear_leading_detached_comments() { function std (line 11518) | inline const ::std::string& SourceCodeInfo_Location::leading_detached_co... function std (line 11522) | inline ::std::string* SourceCodeInfo_Location::mutable_leading_detached_... function set_leading_detached_comments (line 11526) | inline void SourceCodeInfo_Location::set_leading_detached_comments(int i... function set_leading_detached_comments (line 11531) | inline void SourceCodeInfo_Location::set_leading_detached_comments(int i... function set_leading_detached_comments (line 11536) | inline void SourceCodeInfo_Location::set_leading_detached_comments(int i... function set_leading_detached_comments (line 11541) | inline void SourceCodeInfo_Location::set_leading_detached_comments(int i... function std (line 11546) | inline ::std::string* SourceCodeInfo_Location::add_leading_detached_comm... function add_leading_detached_comments (line 11550) | inline void SourceCodeInfo_Location::add_leading_detached_comments(const... function add_leading_detached_comments (line 11555) | inline void SourceCodeInfo_Location::add_leading_detached_comments(::std... function add_leading_detached_comments (line 11560) | inline void SourceCodeInfo_Location::add_leading_detached_comments(const... function add_leading_detached_comments (line 11565) | inline void SourceCodeInfo_Location::add_leading_detached_comments(const... function google (line 11574) | inline ::google::protobuf::RepeatedPtrField< ::std::string>* function clear_location (line 11588) | inline void SourceCodeInfo::clear_location() { function google (line 11591) | inline ::google::protobuf::SourceCodeInfo_Location* SourceCodeInfo::muta... function google (line 11595) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::SourceC... function google (line 11600) | inline const ::google::protobuf::SourceCodeInfo_Location& SourceCodeInfo... function google (line 11604) | inline ::google::protobuf::SourceCodeInfo_Location* SourceCodeInfo::add_... function google (line 11608) | inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::S... function set_path (line 11629) | inline void GeneratedCodeInfo_Annotation::set_path(int index, ::google::... function add_path (line 11633) | inline void GeneratedCodeInfo_Annotation::add_path(::google::protobuf::i... function google (line 11642) | inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >* function set_has_source_file (line 11652) | inline void GeneratedCodeInfo_Annotation::set_has_source_file() { function clear_has_source_file (line 11655) | inline void GeneratedCodeInfo_Annotation::clear_has_source_file() { function clear_source_file (line 11658) | inline void GeneratedCodeInfo_Annotation::clear_source_file() { function set_source_file (line 11666) | inline void GeneratedCodeInfo_Annotation::set_source_file(const ::std::s... function set_source_file (line 11672) | inline void GeneratedCodeInfo_Annotation::set_source_file(::std::string&... function set_source_file (line 11679) | inline void GeneratedCodeInfo_Annotation::set_source_file(const char* va... function set_source_file (line 11686) | inline void GeneratedCodeInfo_Annotation::set_source_file(const char* va... function std (line 11693) | inline ::std::string* GeneratedCodeInfo_Annotation::mutable_source_file() { function std (line 11698) | inline ::std::string* GeneratedCodeInfo_Annotation::release_source_file() { function set_allocated_source_file (line 11706) | inline void GeneratedCodeInfo_Annotation::set_allocated_source_file(::st... function std (line 11716) | inline ::std::string* GeneratedCodeInfo_Annotation::unsafe_arena_release... function unsafe_arena_set_allocated_source_file (line 11723) | inline void GeneratedCodeInfo_Annotation::unsafe_arena_set_allocated_sou... function set_has_begin (line 11740) | inline void GeneratedCodeInfo_Annotation::set_has_begin() { function clear_has_begin (line 11743) | inline void GeneratedCodeInfo_Annotation::clear_has_begin() { function clear_begin (line 11746) | inline void GeneratedCodeInfo_Annotation::clear_begin() { function set_begin (line 11754) | inline void GeneratedCodeInfo_Annotation::set_begin(::google::protobuf::... function set_has_end (line 11764) | inline void GeneratedCodeInfo_Annotation::set_has_end() { function clear_has_end (line 11767) | inline void GeneratedCodeInfo_Annotation::clear_has_end() { function clear_end (line 11770) | inline void GeneratedCodeInfo_Annotation::clear_end() { function set_end (line 11778) | inline void GeneratedCodeInfo_Annotation::set_end(::google::protobuf::in... function clear_annotation (line 11792) | inline void GeneratedCodeInfo::clear_annotation() { function google (line 11795) | inline ::google::protobuf::GeneratedCodeInfo_Annotation* GeneratedCodeIn... function google (line 11799) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::Generat... function google (line 11804) | inline const ::google::protobuf::GeneratedCodeInfo_Annotation& Generated... function google (line 11808) | inline ::google::protobuf::GeneratedCodeInfo_Annotation* GeneratedCodeIn... function namespace (line 11879) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/descriptor_database.h function namespace (line 47) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/duration.pb.h function namespace (line 36) | namespace protobuf_google_2fprotobuf_2fduration_2eproto { function namespace (line 48) | namespace google { function namespace (line 55) | namespace google { function namespace (line 60) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/dynamic_message.h function namespace (line 50) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/empty.pb.h function namespace (line 36) | namespace protobuf_google_2fprotobuf_2fempty_2eproto { function namespace (line 48) | namespace google { function namespace (line 55) | namespace google { function namespace (line 60) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/extension_set.h function namespace (line 53) | namespace google { function typename (line 1317) | inline typename _proto_TypeTraits::Singular::ConstType GetExtension( ... function typename (line 1327) | inline typename _proto_TypeTraits::Singular::MutableType MutableExtensio... function SetExtension (line 1337) | inline void SetExtension( ... function SetAllocatedExtension (line 1347) | inline void SetAllocatedExtension( ... function UnsafeArenaSetAllocatedExtension (line 1357) | inline void UnsafeArenaSetAllocatedExtension( ... function typename (line 1367) | inline typename _proto_TypeTraits::Singular::MutableType ReleaseExtensio... function typename (line 1376) | inline typename _proto_TypeTraits::Singular::MutableType ... function typename (line 1388) | inline typename _proto_TypeTraits::Repeated::ConstType GetExtension( ... function typename (line 1398) | inline typename _proto_TypeTraits::Repeated::MutableType MutableExtensio... function SetExtension (line 1408) | inline void SetExtension( ... function typename (line 1418) | inline typename _proto_TypeTraits::Repeated::MutableType AddExtension( ... function AddExtension (line 1427) | inline void AddExtension( ... function typename (line 1449) | inline typename _proto_TypeTraits::Repeated::RepeatedFieldType* ... FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/field_mask.pb.h function namespace (line 36) | namespace protobuf_google_2fprotobuf_2ffield_5fmask_2eproto { function namespace (line 48) | namespace google { function namespace (line 55) | namespace google { function namespace (line 61) | namespace protobuf { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/generated_enum_reflection.h function namespace (line 46) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/generated_enum_util.h function namespace (line 36) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/generated_message_reflection.h function namespace (line 53) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/generated_message_table_driven.h function namespace (line 51) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/generated_message_util.h function namespace (line 56) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/has_bits.h function namespace (line 37) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/implicit_weak_message.h function namespace (line 41) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/inlined_string_field.h function namespace (line 39) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/io/coded_stream.h function namespace (line 139) | namespace google { function Skip (line 1377) | inline bool CodedInputStream::Skip(int count) { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/io/gzip_stream.h function namespace (line 50) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/io/printer.h function namespace (line 45) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/io/strtod.h function namespace (line 38) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/io/tokenizer.h function namespace (line 45) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/io/zero_copy_stream.h function namespace (line 113) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/io/zero_copy_stream_impl.h function namespace (line 50) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/io/zero_copy_stream_impl_lite.h function namespace (line 56) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/map.h function namespace (line 52) | namespace google { type value_type (line 190) | typedef value_type* pointer; type value_type (line 191) | typedef const value_type* const_pointer; type value_type (line 192) | typedef value_type& reference; type value_type (line 193) | typedef const value_type& const_reference; type size_type (line 194) | typedef size_t size_type; type difference_type (line 195) | typedef ptrdiff_t difference_type; function arena_ (line 197) | arena_(NULL) {} function explicit (line 198) | explicit MapAllocator(Arena* arena) : arena_(arena) {} function construct (line 243) | void construct(pointer p, const_reference t) { new (p) value_type(t); } function destroy (line 245) | void destroy(pointer p) { p->~value_type(); } type MapAllocator (line 250) | typedef MapAllocator other; function Arena (line 271) | Arena* arena() const { function class (line 284) | class KeyValuePair { type MapAllocator (line 298) | typedef MapAllocator Allocator; function class (line 329) | class InnerMap : private hasher { type Node (line 355) | struct Node { function Node (line 362) | static Node* NodePtrFromKeyPtr(Key* k) { function Key (line 366) | static Key* KeyPtrFromNodePtr(Node* node) { return &node->kv.key(); } type KeyCompare (line 371) | struct KeyCompare { type typename (line 374) | typedef typename Allocator::template rebind::other KeyPtrAllocator; type std (line 375) | typedef std::set Tree; type typename (line 376) | typedef typename Tree::iterator TreeIterator; type KeyValueType (line 381) | typedef KeyValueType& reference; type KeyValueType (line 382) | typedef KeyValueType* pointer; function explicit (line 393) | explicit iterator_base(const InnerMap* m) : m_(m) { function SearchFrom (line 416) | void SearchFrom(size_type start_bucket) { function reference (line 434) | reference operator*() const { return node_->kv; } function pointer (line 435) | pointer operator->() const { return &(operator*()); } function revalidate_if_necessary (line 475) | bool revalidate_if_necessary(TreeIterator* it) { type iterator_base (line 508) | typedef iterator_base const_iterator; function iterator (line 510) | iterator begin() { return iterator(this); } function iterator (line 511) | iterator end() { return iterator(); } function clear (line 515) | void clear() { function size_type (line 548) | static size_type max_size() { function iterator (line 554) | iterator find(const Key& k) { return iterator(FindHelper(k).first); } function const_iterator (line 555) | const_iterator find(const Key& k) const { return find(k, NULL); } type typename (line 588) | typedef typename Allocator::template rebind::other KeyAllocator; function erase (line 600) | void erase(iterator it) { function iterator (line 670) | iterator InsertUnique(size_type b, Node* node) { function iterator (line 704) | iterator InsertUniqueInList(size_type b, Node* node) { function iterator (line 712) | iterator InsertUniqueInTree(size_type b, Node* node) { function ResizeIfLoadIsOutOfRange (line 730) | bool ResizeIfLoadIsOutOfRange(size_type new_size) { function Resize (line 764) | void Resize(size_t new_num_buckets) { function TransferList (line 782) | void TransferList(void* const* table, size_type index) { function TransferTree (line 791) | void TransferTree(void* const* table, size_type index) { function Node (line 801) | Node* EraseFromLinkedList(Node* item, Node* head) { function TableEntryIsEmpty (line 810) | bool TableEntryIsEmpty(size_type b) const { function TableEntryIsNonEmptyList (line 813) | bool TableEntryIsNonEmptyList(size_type b) const { function TableEntryIsTree (line 816) | bool TableEntryIsTree(size_type b) const { function TableEntryIsList (line 819) | bool TableEntryIsList(size_type b) const { function TableEntryIsEmpty (line 822) | static bool TableEntryIsEmpty(void* const* table, size_type b) { function TableEntryIsNonEmptyList (line 825) | static bool TableEntryIsNonEmptyList(void* const* table, size_type b) { function TableEntryIsTree (line 828) | static bool TableEntryIsTree(void* const* table, size_type b) { function TableEntryIsList (line 832) | static bool TableEntryIsList(void* const* table, size_type b) { function TreeConvert (line 836) | void TreeConvert(size_type b) { function size_type (line 854) | size_type CopyListToTree(size_type b, Tree* tree) { function TableEntryIsTooLong (line 869) | bool TableEntryIsTooLong(size_type b) { function size_type (line 882) | size_type BucketNumber(const Key& k) const { function IsMatch (line 888) | bool IsMatch(const Key& k0, const Key& k1) const { function size_type (line 894) | size_type TableSize(size_type n) { type typename (line 903) | typedef typename Allocator::template rebind::other alloc_type; type typename (line 910) | typedef typename Allocator::template rebind::other alloc_type; function DestroyNode (line 914) | void DestroyNode(Node* node) { function DestroyTree (line 919) | void DestroyTree(Tree* tree) { type typename (line 956) | typedef typename InnerMap::const_iterator InnerIt; type typename (line 960) | typedef typename Map::value_type value_type; type difference_type (line 961) | typedef ptrdiff_t difference_type; type value_type (line 962) | typedef const value_type* pointer; type value_type (line 963) | typedef const value_type& reference; function explicit (line 966) | explicit const_iterator(const InnerIt& it) : it_(it) {} function const_reference (line 968) | const_reference operator*() const { function const_pointer (line 971) | const_pointer operator->() const { return &(operator*()); } function class (line 990) | class iterator { function operator (line 1013) | operator const_iterator() const { function iterator (line 1030) | iterator begin() { return iterator(elements_->begin()); } function iterator (line 1031) | iterator end() { return iterator(elements_->end()); } function T (line 1056) | const T& at(const key_type& key) const { function size_type (line 1068) | size_type count(const key_type& key) const { function const_iterator (line 1073) | const_iterator find(const key_type& key) const { function iterator (line 1076) | iterator find(const key_type& key) { return iterator(elements_->find(key... function insert (line 1115) | void insert(std::initializer_list values) { function size_type (line 1120) | size_type erase(const key_type& key) { function iterator (line 1129) | iterator erase(iterator pos) { function erase (line 1135) | void erase(iterator first, iterator last) { function clear (line 1140) | void clear() { erase(begin(), end()); } function swap (line 1151) | void swap(Map& other) { function value_type (line 1175) | value_type* CreateValueTypeInternal(const Key& key) { function value_type (line 1188) | value_type* CreateValueTypeInternal(const value_type& value) { type InternalArenaConstructable_ (line 1207) | typedef void InternalArenaConstructable_; type DestructorSkippable_ (line 1208) | typedef void DestructorSkippable_; FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/map_entry.h function namespace (line 42) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/map_entry_lite.h function namespace (line 44) | namespace google { type MapTypeHandler (line 103) | typedef MapTypeHandler KeyTypeHandler; type MapTypeHandler (line 104) | typedef MapTypeHandler ValueTypeHandler; type typename (line 108) | typedef typename KeyTypeHandler::TypeOnMemory KeyOnMemory; type typename (line 109) | typedef typename ValueTypeHandler::TypeOnMemory ValueOnMemory; type typename (line 113) | typedef typename KeyTypeHandler::MapEntryAccessorType KeyMapEntryAccesso... type typename (line 114) | typedef typename ValueTypeHandler::MapEntryAccessorType type Derived (line 131) | typedef Derived EntryType; type Key (line 132) | typedef Key EntryKeyType; type Value (line 133) | typedef Value EntryValueType; function arena_ (line 138) | arena_(NULL) { function explicit (line 145) | explicit MapEntryImpl(Arena* arena) : arena_(arena) { function virtual (line 160) | virtual inline const KeyMapEntryAccessorType& key() const { function KeyMapEntryAccessorType (line 167) | inline KeyMapEntryAccessorType* mutable_key() { function ValueMapEntryAccessorType (line 171) | inline ValueMapEntryAccessorType* mutable_value() { function CheckTypeAndMergeFrom (line 182) | void CheckTypeAndMergeFrom(const MessageLite& other) { function MergePartialFromCodedStream (line 186) | bool MergePartialFromCodedStream(::google::protobuf::io::CodedInputStrea... function SerializeWithCachedSizes (line 236) | void SerializeWithCachedSizes(::google::protobuf::io::CodedOutputStream*... function GetCachedSize (line 252) | int GetCachedSize() const { function Base (line 265) | Base* New() const { function Base (line 270) | Base* New(Arena* arena) const { function SpaceUsedLong (line 275) | size_t SpaceUsedLong() const { function InitAsDefaultInstance (line 309) | static void InitAsDefaultInstance() { function Arena (line 315) | Arena* GetArena() const { function Derived (line 323) | static Derived* EnumWrap(const Key& key, const Value value, Arena* arena) { function Derived (line 329) | static Derived* Wrap(const Key& key, const Value& value, Arena* arena) { function MergePartialFromCodedStream (line 343) | bool MergePartialFromCodedStream(::google::protobuf::io::CodedInputStrea... function ReadBeyondKeyValuePair (line 407) | bool ReadBeyondKeyValuePair(::google::protobuf::io::CodedInputStream* in... function clear_has_key (line 441) | void clear_has_key() { _has_bits_[0] &= ~0x00000001u; } function set_has_value (line 442) | void set_has_value() { _has_bits_[0] |= 0x00000002u; } function clear_has_value (line 444) | void clear_has_value() { _has_bits_[0] &= ~0x00000002u; } type Derived (line 458) | typedef Derived BaseClass; type typename (line 459) | typedef typename BaseClass::KeyMapEntryAccessorType KeyMapEntryAccessorT... type typename (line 460) | typedef type InternalArenaConstructable_ (line 477) | typedef void InternalArenaConstructable_; type DestructorSkippable_ (line 478) | typedef void DestructorSkippable_; function class (line 487) | class MapEnumEntryWrapper : public Derived { function Arena (line 510) | inline Arena* GetArenaNoVirtual() const { type InternalArenaConstructable_ (line 522) | typedef void InternalArenaConstructable_; type DestructorSkippable_ (line 523) | typedef void DestructorSkippable_; function explicit (line 545) | explicit MapEntryLite(Arena* arena) : SuperType(arena) {} function MergeFrom (line 546) | void MergeFrom(const MapEntryLite& other) { MergeFromInternal(other); } type DeconstructMapEntry (line 559) | struct DeconstructMapEntry type V (line 561) | typedef V Value; function explicit (line 575) | explicit SortItem(PtrToKeyValuePair p) : first(p->first), second(p) {} function const (line 582) | bool operator()(const T& a, const T& b) const { function const (line 588) | bool operator()(const T& a, const T& b) const { function TYPE_STRING (line 604) | struct FromHelper { function TYPE_BYTES (line 614) | struct FromHelper { function TYPE_MESSAGE (line 624) | struct FromHelper { type MapTypeHandler (line 642) | typedef MapTypeHandler ValueTypeHandler; type typename (line 646) | typedef typename KeyTypeHandler::TypeOnMemory KeyOnMemory; type typename (line 647) | typedef typename ValueTypeHandler::TypeOnMemory ValueOnMemory; FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/map_field.h function namespace (line 49) | namespace google { function MapKey (line 767) | const MapKey& GetKey() { function MapValueRef (line 770) | const MapValueRef& GetValueRef() { function MapValueRef (line 773) | MapValueRef* MutableValueRef() { function GOOGLE_PROTOBUF_HASH_NAMESPACE_DECLARATION_START (line 803) | GOOGLE_PROTOBUF_HASH_NAMESPACE_DECLARATION_START FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/map_field_inl.h function namespace (line 41) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/map_field_lite.h function namespace (line 38) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/map_type_handler.h function namespace (line 37) | namespace google { type typename (line 147) | typedef typename MapWireFieldTypeTraits::AccessorType AccessorType; function T (line 197) | const T& Get(int index, T* scratch_space) const { function T (line 202) | T* NewMessage() const { type IteratorType (line 206) | typedef IteratorType iterator; type IteratorType (line 207) | typedef IteratorType const_iterator; type T (line 208) | typedef T value_type; type T (line 209) | typedef T& reference; type T (line 210) | typedef const T& const_reference; type size_type (line 211) | typedef int size_type; type difference_type (line 212) | typedef ptrdiff_t difference_type; function T (line 256) | const T& Get(int index, T* scratch_space) const { function T (line 261) | T* NewMessage() const { function Set (line 265) | void Set(int index, const T& value) const { function Add (line 268) | void Add(const T& value) const { function SwapElements (line 274) | void SwapElements(int index1, int index2) const { function Swap (line 281) | void Swap(const MutableRepeatedFieldRef& other) const { type typename (line 287) | typedef typename Container::const_iterator Iterator; function namespace (line 317) | namespace internal { function IteratorValueType (line 470) | IteratorValueType operator*() const { function IteratorPointerType (line 476) | IteratorPointerType operator->() const { type RepeatedFieldAccessor (line 537) | typedef RepeatedFieldAccessor AccessorType; type T (line 538) | typedef T AccessorValueType; type T (line 539) | typedef T IteratorValueType; type T (line 540) | typedef T* IteratorPointerType; function Descriptor (line 543) | static const Descriptor* GetMessageFieldDescriptor() { type RepeatedFieldAccessor (line 552) | typedef RepeatedFieldAccessor AccessorType; type int32 (line 554) | typedef int32 AccessorValueType; type T (line 555) | typedef T IteratorValueType; type int32 (line 556) | typedef int32* IteratorPointerType; function Descriptor (line 559) | static const Descriptor* GetMessageFieldDescriptor() { type RepeatedFieldAccessor (line 568) | typedef RepeatedFieldAccessor AccessorType; type string (line 569) | typedef string AccessorValueType; type string (line 570) | typedef const string IteratorValueType; type string (line 571) | typedef const string* IteratorPointerType; function Descriptor (line 574) | static const Descriptor* GetMessageFieldDescriptor() { function Descriptor (line 581) | static const Descriptor* get() { function Message (line 586) | struct MessageDescriptorGetter { type RepeatedFieldAccessor (line 596) | typedef RepeatedFieldAccessor AccessorType; type Message (line 597) | typedef Message AccessorValueType; type T (line 598) | typedef const T& IteratorValueType; type T (line 599) | typedef const T* IteratorPointerType; function Descriptor (line 602) | static const Descriptor* GetMessageFieldDescriptor() { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/reflection_ops.h function namespace (line 44) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/repeated_field.h function namespace (line 68) | namespace google { function namespace (line 1415) | namespace internal { function namespace (line 1435) | namespace internal { function Swap (line 1470) | void RepeatedPtrFieldBase::Swap(RepeatedPtrFieldBase* other) { function typename (line 1503) | const typename TypeHandler::WeakType& function typename (line 1511) | typename TypeHandler::Type* function Delete (line 1519) | void RepeatedPtrFieldBase::Delete(int index) { function typename (line 1526) | typename TypeHandler::Type* RepeatedPtrFieldBase::Add( function Add (line 1542) | void RepeatedPtrFieldBase::Add( function RemoveLast (line 1559) | void RepeatedPtrFieldBase::RemoveLast() { function MergeFrom (line 1585) | void RepeatedPtrFieldBase::MergeFrom(const RepeatedPtrFieldBase& other) { function MergeFromInternal (line 1592) | inline void RepeatedPtrFieldBase::MergeFromInternal( function CopyFrom (line 1635) | void RepeatedPtrFieldBase::CopyFrom(const RepeatedPtrFieldBase& other) { function typename (line 1654) | typename TypeHandler::Type** RepeatedPtrFieldBase::mutable_data() { function typename (line 1661) | const typename TypeHandler::Type* const* function SwapElements (line 1668) | inline void RepeatedPtrFieldBase::SwapElements(int index1, int index2) { function SpaceUsedExcludingSelfLong (line 1674) | size_t RepeatedPtrFieldBase::SpaceUsedExcludingSelfLong() const { function typename (line 1687) | typename TypeHandler::Type* RepeatedPtrFieldBase::AddFromCleared() { function typename (line 1798) | typename TypeHandler::Type* function typename (line 1819) | typename TypeHandler::Type* function typename (line 1829) | typename TypeHandler::Type* function AddCleared (line 1848) | void RepeatedPtrFieldBase::AddCleared( function typename (line 1861) | typename TypeHandler::Type* RepeatedPtrFieldBase::ReleaseCleared() { function RepeatedPtrFieldBase (line 1891) | RepeatedPtrFieldBase(arena) {} function namespace (line 2194) | namespace internal { function reference (line 2283) | reference operator[](difference_type d) const { return *(*this + d); } type typename (line 2312) | typedef typename std::remove_const::type value_type; type typename (line 2316) | typedef typename superclass::reference reference; type typename (line 2317) | typedef typename superclass::pointer pointer; type typename (line 2318) | typedef typename superclass::difference_type difference_type; function it_ (line 2320) | it_(NULL) {} function explicit (line 2321) | explicit RepeatedPtrOverPtrsIterator(VoidPtr* it) : it_(it) {} function reference (line 2324) | reference operator*() const { return *reinterpret_cast(it_); } function pointer (line 2325) | pointer operator->() const { return &(operator*()); } function reference (line 2366) | reference operator[](difference_type d) const { return *(*this + d); } function InternalSwap (line 2379) | void RepeatedPtrFieldBase::InternalSwap(RepeatedPtrFieldBase* other) { function namespace (line 2453) | namespace internal { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/service.h function namespace (line 108) | namespace protobuf { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/source_context.pb.h function namespace (line 36) | namespace protobuf_google_2fprotobuf_2fsource_5fcontext_2eproto { function namespace (line 48) | namespace google { function namespace (line 55) | namespace google { function namespace (line 61) | namespace protobuf { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/struct.pb.h function namespace (line 40) | namespace protobuf_google_2fprotobuf_2fstruct_2eproto { function namespace (line 52) | namespace google { function namespace (line 68) | namespace google { function namespace (line 76) | namespace google { function google (line 861) | inline ::google::protobuf::Struct* Value::release_struct_value() { function google (line 881) | inline ::google::protobuf::Struct* Value::unsafe_arena_release_struct_va... function unsafe_arena_set_allocated_struct_value (line 892) | inline void Value::unsafe_arena_set_allocated_struct_value(::google::pro... function google (line 900) | inline ::google::protobuf::Struct* Value::mutable_struct_value() { function set_has_list_value (line 915) | inline void Value::set_has_list_value() { function clear_list_value (line 918) | inline void Value::clear_list_value() { function google (line 929) | inline ::google::protobuf::ListValue* Value::release_list_value() { function google (line 949) | inline ::google::protobuf::ListValue* Value::unsafe_arena_release_list_v... function unsafe_arena_set_allocated_list_value (line 960) | inline void Value::unsafe_arena_set_allocated_list_value(::google::proto... function google (line 968) | inline ::google::protobuf::ListValue* Value::mutable_list_value() { function clear_has_kind (line 982) | inline void Value::clear_has_kind() { function clear_values (line 996) | inline void ListValue::clear_values() { function google (line 999) | inline ::google::protobuf::Value* ListValue::mutable_values(int index) { function google (line 1003) | inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::Value >* function google (line 1008) | inline const ::google::protobuf::Value& ListValue::values(int index) con... function google (line 1012) | inline ::google::protobuf::Value* ListValue::add_values() { function namespace (line 1037) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/bytestream.h function namespace (line 62) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/callback.h function namespace (line 11) | namespace google { type typename (line 346) | typedef typename std::remove_reference::type base_type; type base_type (line 347) | typedef const base_type& type; function R (line 360) | R Run() { type P2 (line 377) | typedef R (T::*MethodType)(P1, P2, P3, P4, P5, A1, A2); function Closure (line 411) | inline Closure* NewCallback(void (*function)()) { function Closure (line 416) | inline Closure* NewPermanentCallback(void (*function)()) { function Closure (line 434) | Closure* NewCallback(void (*function)(Arg1), function Closure (line 441) | Closure* NewPermanentCallback(void (*function)(Arg1), function Closure (line 462) | Closure* NewCallback(void (*function)(Arg1, Arg2), function Closure (line 470) | Closure* NewPermanentCallback(void (*function)(Arg1, Arg2), FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/casts.h function namespace (line 38) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/common.h function BOOL (line 80) | inline BOOL GetMessage_Win32( function BOOL (line 86) | inline BOOL GetMessage( function namespace (line 93) | namespace std {} function namespace (line 95) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/fastmem.h function namespace (line 54) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/hash.h function namespace (line 174) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/logging.h function namespace (line 40) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/macros.h function namespace (line 36) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/mutex.h function namespace (line 39) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/once.h function namespace (line 84) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/port.h type uint (line 129) | typedef unsigned int uint; type int8 (line 132) | typedef signed __int8 int8; type __int16 (line 133) | typedef __int16 int16; type __int32 (line 134) | typedef __int32 int32; type __int64 (line 135) | typedef __int64 int64; type uint8 (line 137) | typedef unsigned __int8 uint8; type uint16 (line 138) | typedef unsigned __int16 uint16; type uint32 (line 139) | typedef unsigned __int32 uint32; type uint64 (line 140) | typedef unsigned __int64 uint64; type int8 (line 142) | typedef int8_t int8; type int16 (line 143) | typedef int16_t int16; type int32 (line 144) | typedef int32_t int32; type int64 (line 145) | typedef int64_t int64; type uint8 (line 147) | typedef uint8_t uint8; type uint16 (line 148) | typedef uint16_t uint16; type uint32 (line 149) | typedef uint32_t uint32; type uint64 (line 150) | typedef uint64_t uint64; function uint16 (line 292) | inline uint16 GOOGLE_UNALIGNED_LOAD16(const void *p) { function uint32 (line 296) | inline uint32 GOOGLE_UNALIGNED_LOAD32(const void *p) { function uint64 (line 300) | inline uint64 GOOGLE_UNALIGNED_LOAD64(const void *p) { function GOOGLE_UNALIGNED_STORE16 (line 304) | inline void GOOGLE_UNALIGNED_STORE16(void *p, uint16 v) { function GOOGLE_UNALIGNED_STORE32 (line 308) | inline void GOOGLE_UNALIGNED_STORE32(void *p, uint32 v) { function GOOGLE_UNALIGNED_STORE64 (line 312) | inline void GOOGLE_UNALIGNED_STORE64(void *p, uint64 v) { function uint16 (line 327) | inline uint16 GOOGLE_UNALIGNED_LOAD16(const void *p) { function uint32 (line 333) | inline uint32 GOOGLE_UNALIGNED_LOAD32(const void *p) { function uint64 (line 339) | inline uint64 GOOGLE_UNALIGNED_LOAD64(const void *p) { function GOOGLE_UNALIGNED_STORE16 (line 345) | inline void GOOGLE_UNALIGNED_STORE16(void *p, uint16 v) { function GOOGLE_UNALIGNED_STORE32 (line 349) | inline void GOOGLE_UNALIGNED_STORE32(void *p, uint32 v) { function GOOGLE_UNALIGNED_STORE64 (line 353) | inline void GOOGLE_UNALIGNED_STORE64(void *p, uint64 v) { function uint16 (line 385) | static inline uint16 bswap_16(uint16 x) { function uint32 (line 389) | static inline uint32 bswap_32(uint32 x) { function uint64 (line 396) | static inline uint64 bswap_64(uint64 x) { function class (line 413) | class Bits { function class (line 477) | class BigEndian { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/singleton.h function namespace (line 36) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/status.h function namespace (line 39) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/stl_util.h function namespace (line 38) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/stringpiece.h function namespace (line 154) | namespace google { function namespace (line 432) | namespace internal { function GOOGLE_PROTOBUF_HASH_NAMESPACE_DECLARATION_START (line 475) | GOOGLE_PROTOBUF_HASH_NAMESPACE_DECLARATION_START FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/stubs/template_util.h function namespace (line 53) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/text_format.h function namespace (line 51) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/timestamp.pb.h function namespace (line 36) | namespace protobuf_google_2fprotobuf_2ftimestamp_2eproto { function namespace (line 48) | namespace google { function namespace (line 55) | namespace google { function namespace (line 60) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/type.pb.h function namespace (line 39) | namespace protobuf_google_2fprotobuf_2ftype_2eproto { function namespace (line 51) | namespace google { function namespace (line 70) | namespace google { function namespace (line 80) | namespace protobuf { function namespace (line 2385) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/unknown_field_set.h function namespace (line 49) | namespace protobuf { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/util/delimited_message_util.h function namespace (line 13) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/util/field_comparator.h function class (line 58) | class LIBPROTOBUF_EXPORT FieldComparator { type FloatComparison (line 101) | enum FloatComparison { function set_float_comparison (line 122) | void set_float_comparison(FloatComparison float_comparison) { function set_treat_nan_as_equal (line 133) | void set_treat_nan_as_equal(bool treat_nan_as_equal) { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/util/field_mask_util.h function namespace (line 42) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/util/json_util.h function namespace (line 40) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/util/message_differencer.h function namespace (line 54) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/util/time_util.h function namespace (line 48) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/util/type_resolver.h function namespace (line 42) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/util/type_resolver_util.h function namespace (line 39) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/wire_format.h function namespace (line 48) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/wire_format_lite.h function namespace (line 66) | namespace google { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/wire_format_lite_inl.h function namespace (line 50) | namespace google { function ReadGroup (line 430) | bool WireFormatLite::ReadGroup( function ReadMessage (line 443) | bool WireFormatLite::ReadMessage( function WriteTag (line 457) | inline void WireFormatLite::WriteTag(int field_number, WireType type, function WriteInt32NoTag (line 462) | inline void WireFormatLite::WriteInt32NoTag(int32 value, function WriteInt64NoTag (line 466) | inline void WireFormatLite::WriteInt64NoTag(int64 value, function WriteUInt32NoTag (line 470) | inline void WireFormatLite::WriteUInt32NoTag(uint32 value, function WriteUInt64NoTag (line 474) | inline void WireFormatLite::WriteUInt64NoTag(uint64 value, function WriteSInt32NoTag (line 478) | inline void WireFormatLite::WriteSInt32NoTag(int32 value, function WriteSInt64NoTag (line 482) | inline void WireFormatLite::WriteSInt64NoTag(int64 value, function WriteFixed32NoTag (line 486) | inline void WireFormatLite::WriteFixed32NoTag(uint32 value, function WriteFixed64NoTag (line 490) | inline void WireFormatLite::WriteFixed64NoTag(uint64 value, function WriteSFixed32NoTag (line 494) | inline void WireFormatLite::WriteSFixed32NoTag(int32 value, function WriteSFixed64NoTag (line 498) | inline void WireFormatLite::WriteSFixed64NoTag(int64 value, function WriteFloatNoTag (line 502) | inline void WireFormatLite::WriteFloatNoTag(float value, function WriteDoubleNoTag (line 506) | inline void WireFormatLite::WriteDoubleNoTag(double value, function WriteBoolNoTag (line 510) | inline void WireFormatLite::WriteBoolNoTag(bool value, function WriteEnumNoTag (line 514) | inline void WireFormatLite::WriteEnumNoTag(int value, function WriteGroupNoVirtual (line 522) | void WireFormatLite::WriteGroupNoVirtual( function WriteMessageNoVirtual (line 530) | void WireFormatLite::WriteMessageNoVirtual( function uint8 (line 541) | inline uint8* WireFormatLite::WriteTagToArray(int field_number, function uint8 (line 548) | inline uint8* WireFormatLite::WriteInt32NoTagToArray(int32 value, function uint8 (line 552) | inline uint8* WireFormatLite::WriteInt64NoTagToArray(int64 value, function uint8 (line 557) | inline uint8* WireFormatLite::WriteUInt32NoTagToArray(uint32 value, function uint8 (line 561) | inline uint8* WireFormatLite::WriteUInt64NoTagToArray(uint64 value, function uint8 (line 565) | inline uint8* WireFormatLite::WriteSInt32NoTagToArray(int32 value, function uint8 (line 570) | inline uint8* WireFormatLite::WriteSInt64NoTagToArray(int64 value, function uint8 (line 575) | inline uint8* WireFormatLite::WriteFixed32NoTagToArray(uint32 value, function uint8 (line 579) | inline uint8* WireFormatLite::WriteFixed64NoTagToArray(uint64 value, function uint8 (line 583) | inline uint8* WireFormatLite::WriteSFixed32NoTagToArray(int32 value, function uint8 (line 588) | inline uint8* WireFormatLite::WriteSFixed64NoTagToArray(int64 value, function uint8 (line 593) | inline uint8* WireFormatLite::WriteFloatNoTagToArray(float value, function uint8 (line 598) | inline uint8* WireFormatLite::WriteDoubleNoTagToArray(double value, function uint8 (line 603) | inline uint8* WireFormatLite::WriteBoolNoTagToArray(bool value, function uint8 (line 607) | inline uint8* WireFormatLite::WriteEnumNoTagToArray(int value, function uint8 (line 647) | inline uint8* WireFormatLite::WriteInt32NoTagToArray( function uint8 (line 651) | inline uint8* WireFormatLite::WriteInt64NoTagToArray( function uint8 (line 655) | inline uint8* WireFormatLite::WriteUInt32NoTagToArray( function uint8 (line 659) | inline uint8* WireFormatLite::WriteUInt64NoTagToArray( function uint8 (line 663) | inline uint8* WireFormatLite::WriteSInt32NoTagToArray( function uint8 (line 667) | inline uint8* WireFormatLite::WriteSInt64NoTagToArray( function uint8 (line 671) | inline uint8* WireFormatLite::WriteFixed32NoTagToArray( function uint8 (line 675) | inline uint8* WireFormatLite::WriteFixed64NoTagToArray( function uint8 (line 679) | inline uint8* WireFormatLite::WriteSFixed32NoTagToArray( function uint8 (line 683) | inline uint8* WireFormatLite::WriteSFixed64NoTagToArray( function uint8 (line 687) | inline uint8* WireFormatLite::WriteFloatNoTagToArray( function uint8 (line 691) | inline uint8* WireFormatLite::WriteDoubleNoTagToArray( function uint8 (line 695) | inline uint8* WireFormatLite::WriteBoolNoTagToArray( function uint8 (line 699) | inline uint8* WireFormatLite::WriteEnumNoTagToArray( function uint8 (line 704) | inline uint8* WireFormatLite::WriteInt32ToArray(int field_number, function uint8 (line 710) | inline uint8* WireFormatLite::WriteInt64ToArray(int field_number, function uint8 (line 716) | inline uint8* WireFormatLite::WriteUInt32ToArray(int field_number, function uint8 (line 722) | inline uint8* WireFormatLite::WriteUInt64ToArray(int field_number, function uint8 (line 728) | inline uint8* WireFormatLite::WriteSInt32ToArray(int field_number, function uint8 (line 734) | inline uint8* WireFormatLite::WriteSInt64ToArray(int field_number, function uint8 (line 740) | inline uint8* WireFormatLite::WriteFixed32ToArray(int field_number, function uint8 (line 746) | inline uint8* WireFormatLite::WriteFixed64ToArray(int field_number, function uint8 (line 752) | inline uint8* WireFormatLite::WriteSFixed32ToArray(int field_number, function uint8 (line 758) | inline uint8* WireFormatLite::WriteSFixed64ToArray(int field_number, function uint8 (line 764) | inline uint8* WireFormatLite::WriteFloatToArray(int field_number, function uint8 (line 770) | inline uint8* WireFormatLite::WriteDoubleToArray(int field_number, function uint8 (line 776) | inline uint8* WireFormatLite::WriteBoolToArray(int field_number, function uint8 (line 782) | inline uint8* WireFormatLite::WriteEnumToArray(int field_number, function uint8 (line 808) | inline uint8* WireFormatLite::WriteInt32ToArray( function uint8 (line 812) | inline uint8* WireFormatLite::WriteInt64ToArray( function uint8 (line 816) | inline uint8* WireFormatLite::WriteUInt32ToArray( function uint8 (line 820) | inline uint8* WireFormatLite::WriteUInt64ToArray( function uint8 (line 824) | inline uint8* WireFormatLite::WriteSInt32ToArray( function uint8 (line 828) | inline uint8* WireFormatLite::WriteSInt64ToArray( function uint8 (line 832) | inline uint8* WireFormatLite::WriteFixed32ToArray( function uint8 (line 837) | inline uint8* WireFormatLite::WriteFixed64ToArray( function uint8 (line 842) | inline uint8* WireFormatLite::WriteSFixed32ToArray( function uint8 (line 847) | inline uint8* WireFormatLite::WriteSFixed64ToArray( function uint8 (line 852) | inline uint8* WireFormatLite::WriteFloatToArray( function uint8 (line 856) | inline uint8* WireFormatLite::WriteDoubleToArray( function uint8 (line 860) | inline uint8* WireFormatLite::WriteBoolToArray( function uint8 (line 864) | inline uint8* WireFormatLite::WriteEnumToArray( function uint8 (line 868) | inline uint8* WireFormatLite::WriteStringToArray(int field_number, function uint8 (line 878) | inline uint8* WireFormatLite::WriteBytesToArray(int field_number, function Int32Size (line 930) | inline size_t WireFormatLite::Int32Size(int32 value) { function Int64Size (line 933) | inline size_t WireFormatLite::Int64Size(int64 value) { function UInt32Size (line 936) | inline size_t WireFormatLite::UInt32Size(uint32 value) { function UInt64Size (line 939) | inline size_t WireFormatLite::UInt64Size(uint64 value) { function SInt32Size (line 942) | inline size_t WireFormatLite::SInt32Size(int32 value) { function SInt64Size (line 945) | inline size_t WireFormatLite::SInt64Size(int64 value) { function EnumSize (line 948) | inline size_t WireFormatLite::EnumSize(int value) { function StringSize (line 952) | inline size_t WireFormatLite::StringSize(const string& value) { function BytesSize (line 955) | inline size_t WireFormatLite::BytesSize(const string& value) { function GroupSize (line 961) | size_t WireFormatLite::GroupSize(const MessageType& value) { function MessageSize (line 965) | size_t WireFormatLite::MessageSize(const MessageType& value) { function GroupSizeNoVirtual (line 972) | size_t WireFormatLite::GroupSizeNoVirtual( function MessageSizeNoVirtual (line 977) | size_t WireFormatLite::MessageSizeNoVirtual( function LengthDelimitedSize (line 983) | inline size_t WireFormatLite::LengthDelimitedSize(size_t length) { FILE: pkg/gocv/cgo/third_path/protobuf/include/google/protobuf/wrappers.pb.h function namespace (line 36) | namespace protobuf_google_2fprotobuf_2fwrappers_2eproto { function namespace (line 48) | namespace google { function namespace (line 79) | namespace google { function google (line 123) | inline ::google::protobuf::Arena* GetArena() const final { function DoubleValue (line 133) | static inline const DoubleValue* internal_default_instance() { function DoubleValue (line 148) | inline DoubleValue* New() const final { function final (line 152) | const final { function Clear (line 159) | void Clear() final; function value (line 199) | double value() const; FILE: pkg/gocv/cgo/third_path/pybind11/docs/benchmark.py function generate_dummy_code_pybind11 (line 9) | def generate_dummy_code_pybind11(nclasses=10): function generate_dummy_code_boost (line 40) | def generate_dummy_code_boost(nclasses=10): FILE: pkg/gocv/cgo/third_path/pybind11/docs/conf.py function generate_doxygen_xml (line 327) | def generate_doxygen_xml(app): function prepare (line 341) | def prepare(app): function clean_up (line 356) | def clean_up(app, exception): function setup (line 360) | def setup(app): FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/attr.h function is_method (line 18) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) type is_operator (line 30) | struct is_operator {} type is_final (line 33) | struct is_final {} type name (line 48) | struct name { type op_type (line 168) | enum op_type : int type undefined_t (line 169) | struct undefined_t type function_record (line 188) | struct function_record { type type_record (line 266) | struct type_record { function function_call (line 360) | inline function_call::function_call(const function_record &f, handle p) ... type is_new_style_constructor (line 366) | struct is_new_style_constructor {} function init (line 380) | static void init(const T &, function_record *) {} function init (line 381) | static void init(const T &, type_record *) {} function precall (line 382) | static void precall(function_call &) {} function postcall (line 383) | static void postcall(function_call &, handle) {} function name (line 388) | struct process_attribute : process_attribute_default { function doc (line 394) | struct process_attribute : process_attribute_default { type process_attribute (line 400) | struct process_attribute function init (line 401) | static void init(const char *d, function_record *r) { r->doc = const_cas... function init (line 402) | static void init(const char *d, type_record *r) { r->doc = d; } type process_attribute (line 405) | struct process_attribute function return_value_policy (line 409) | struct process_attribute : process_attribute_defaul... function sibling (line 416) | struct process_attribute : process_attribute_default { function is_method (line 422) | struct process_attribute : process_attribute_default : process_attribute_default { function is_operator (line 437) | struct process_attribute : process_attribute_default function check_kw_only_arg (line 449) | inline void check_kw_only_arg(const arg &a, function_record *r) { function append_self_arg_if_needed (line 456) | inline void append_self_arg_if_needed(function_record *r) { function arg (line 464) | struct process_attribute : process_attribute_default { function arg_v (line 475) | struct process_attribute : process_attribute_default { function kw_only (line 516) | struct process_attribute : process_attribute_default { function pos_only (line 529) | struct process_attribute : process_attribute_default { function init (line 545) | static void init(const handle &h, type_record *r) { r->bases.append(h); } function init (line 551) | static void init(const base &, type_record *r) { r->add_base(typeid(T... function multiple_inheritance (line 556) | struct process_attribute : process_attribute_defau... function dynamic_attr (line 563) | struct process_attribute : process_attribute_default { function is_final (line 575) | struct process_attribute : process_attribute_default { function buffer_protocol (line 580) | struct process_attribute : process_attribute_default : process_attribute_default : process_attribute_default : process_attribute_default { function arithmetic (line 602) | struct process_attribute : process_attribute_default f_strides(const std::vector &shape,... function buffer_info (line 40) | PYBIND11_NAMESPACE_END(detail) function Py_buffer (line 150) | Py_buffer *view() const { return m_view; } type private_ctr_tag (line 154) | struct private_ctr_tag {} function compare (line 182) | static bool compare(const buffer_info &b) { FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/cast.h function handle (line 71) | static handle function index_check (line 140) | auto index_check = [](PyObject *o) { return PyIndex_Check(o); } function index_check (line 144) | auto index_check = [](PyObject *o) { return hasattr(o, "__index__"); } function load (line 268) | bool load(handle h, bool) { function handle (line 294) | static handle cast(const void *ptr, return_value_policy /* policy */, ha... function else (line 337) | else if (hasattr(src, PYBIND11_BOOL_ATTR)) { function handle (line 357) | static handle cast(bool src, return_value_policy /* policy */, handle /*... function load (line 385) | bool load(handle src, bool) { function handle (line 437) | static handle function handle (line 542) | static handle cast(const CharT *src, return_value_policy policy, handle ... function handle (line 549) | static handle cast(CharT src, return_value_policy policy, handle parent) { function handle (line 651) | handle cast(T *src, return_value_policy policy, handle parent) { function load (line 753) | bool load(handle src, bool convert) { function handle (line 830) | static handle cast(holder_type &&src, return_value_policy, handle) { function bool_ (line 877) | struct handle_type_name { function bytes (line 881) | struct handle_type_name { function int_ (line 885) | struct handle_type_name { function iterable (line 889) | struct handle_type_name { function iterator (line 893) | struct handle_type_name { function float_ (line 897) | struct handle_type_name { function none (line 901) | struct handle_type_name { function args (line 905) | struct handle_type_name { function kwargs (line 909) | struct handle_type_name { function handle (line 938) | static handle cast(const handle &src, return_value_policy /* policy */, ... function return_value_policy (line 999) | static return_value_policy policy(return_value_policy p) { return p; } function return_value_policy (line 1006) | static return_value_policy policy(return_value_policy p) { function cast (line 1145) | inline void object::cast() && { type override_unused (line 1159) | struct override_unused {} function cast_error (line 1203) | inline cast_error cast_error_unable_to_convert_call_arg(const std::strin... type arg (line 1240) | struct arg { function namespace (line 1339) | inline namespace literals { type function_record (line 1354) | struct function_record type function_call (line 1357) | struct function_call { function load_args (line 1406) | bool load_args(function_call &call) { return load_impl_sequence(call, in... function tuple (line 1461) | tuple args() && { return std::move(m_args); } function object (line 1464) | object call(PyObject *ptr) const { function tuple (line 1494) | tuple args() && { return std::move(m_args); } function dict (line 1495) | dict kwargs() && { return std::move(m_kwargs); } function object (line 1498) | object call(PyObject *ptr) const { function process (line 1522) | void process(list &args_list, detail::args_proxy ap) { function process (line 1528) | void process(list & /*args_list*/, arg_v a) { function process (line 1553) | void process(list & /*args_list*/, detail::kwargs_proxy kp) { function nameless_argument_error (line 1569) | [[noreturn]] static void nameless_argument_error() { function nameless_argument_error (line 1575) | [[noreturn]] static void nameless_argument_error(const std::string &type) { function multiple_values_error (line 1580) | [[noreturn]] static void multiple_values_error() { function multiple_values_error (line 1586) | [[noreturn]] static void multiple_values_error(const std::string &name) { function args_are_all_positional (line 1600) | bool args_are_all_positional() { FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/chrono.h function PYBIND11_NAMESPACE_BEGIN (line 21) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) function handle (line 74) | static handle cast(const type &src, return_value_policy /* policy */, ha... function std (line 102) | inline std::tm *localtime_thread_safe(const std::time_t *time, std::tm *... function load (line 123) | bool load(handle src, bool) { function handle (line 173) | static handle cast(const std::chrono::time_point overload_cast{} function const_ (line 1107) | static constexpr auto const_ = std::true_type{} function operator (line 1153) | operator std::vector &&() && { return std::move(v); } FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/detail/descr.h function descr (line 63) | constexpr descr<0> const_name(char const (&)[1]) { return {}; } FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/detail/init.h function PYBIND11_WARNING_DISABLE_MSVC (line 14) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/detail/internals.h function tls_replace_value (line 97) | inline void tls_replace_value(PYBIND11_TLS_KEY_REF key, void *value) { function same_type (line 118) | inline bool same_type(const std::type_info &lhs, const std::type_info &r... function same_type (line 122) | inline bool same_type(const std::type_info &lhs, const std::type_info &r... type type_hash (line 126) | struct type_hash { type type_equal_to (line 137) | struct type_equal_to { type override_hash (line 147) | struct override_hash { type internals (line 158) | struct internals { type type_info (line 216) | struct type_info { function internals (line 312) | inline internals **&get_internals_pp() { function raise_err (line 340) | inline bool raise_err(PyObject *exc_type, const char *msg) { function translate_exception (line 349) | inline void translate_exception(std::exception_ptr p) { function translate_local_exception (line 409) | inline void translate_local_exception(std::exception_ptr p) { function PYBIND11_NOINLINE (line 425) | PYBIND11_NOINLINE internals &get_internals() { function local_internals (line 539) | inline local_internals &get_local_internals() { function is_function_record_capsule (line 574) | inline bool is_function_record_capsule(const capsule &cap) { function PYBIND11_NOINLINE (line 591) | PYBIND11_NOINLINE void *set_shared_data(const std::string &name, void *d... FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/detail/type_caster_base.h function PYBIND11_NAMESPACE_BEGIN (line 29) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) function PYBIND11_NOINLINE (line 81) | PYBIND11_NOINLINE static void add_patient(handle h) { function PYBIND11_NOINLINE (line 106) | PYBIND11_NOINLINE void all_type_info_populate(PyTypeObject *t, std::vect... function explicit (line 269) | explicit value_and_holder(size_t index) : index{index} type values_and_holders (line 315) | struct values_and_holders { function PYBIND11_NOINLINE (line 465) | PYBIND11_NOINLINE bool isinstance_generic(handle obj, const std::type_in... function PYBIND11_NOINLINE (line 473) | PYBIND11_NOINLINE handle get_object_handle(const void *ptr, const detail... FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/detail/typeid.h function PYBIND11_NAMESPACE_BEGIN (line 21) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) function std (line 51) | inline std::string clean_type_id(const char *typeid_name) { function type_id (line 57) | PYBIND11_NAMESPACE_END(detail) FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/eigen/matrix.h function EigenDStride (line 85) | EigenDStride stride{0, 0}; // Only valid if negativestrides is false! type eigen_extract_stride (line 130) | struct eigen_extract_stride type eigen_extract_stride (line 134) | struct eigen_extract_stride function EigenConformable (line 171) | static EigenConformable conformable(const array &a) { function capsule (line 281) | capsule base(src, [](void *o) { delete static_cast(o); } function load (line 292) | bool load(handle src, bool convert) { function handle (line 337) | handle cast_impl(CType *src, return_value_policy policy, handle parent) { function handle (line 362) | static handle cast(const Type &&src, return_value_policy /* policy */, h... function handle (line 366) | static handle cast(Type &src, return_value_policy policy, handle parent) { function handle (line 374) | static handle cast(const Type &src, return_value_policy policy, handle p... function handle (line 382) | static handle cast(Type *src, return_value_policy policy, handle parent) { function handle (line 386) | static handle cast(const Type *src, return_value_policy policy, handle p... function operator (line 393) | operator Type *() { return &value; } function operator (line 539) | operator Type *() { return ref.get(); } function handle (line 617) | static handle cast(const Type *src, return_value_policy policy, handle p... function load (line 639) | bool load(handle src, bool) { function handle (line 678) | static handle cast(const Type &src, return_value_policy /* policy */, ha... FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/eigen/tensor.h function PYBIND11_WARNING_DISABLE_MSVC (line 31) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) type eigen_tensor_helper (line 54) | struct eigen_tensor_helper function is_correct_shape (line 62) | static constexpr bool function free (line 83) | static void free(Type *tensor) { delete tensor; } type eigen_tensor_helper (line 87) | struct eigen_tensor_helper function load (line 171) | bool load(handle src, bool convert) { function handle (line 214) | static handle cast(Type &&src, return_value_policy policy, handle parent) { function handle (line 222) | static handle cast(const Type &&src, return_value_policy policy, handle ... function handle (line 230) | static handle cast(Type &src, return_value_policy policy, handle parent) { function handle (line 238) | static handle cast(const Type &src, return_value_policy policy, handle p... function handle (line 246) | static handle cast(Type *src, return_value_policy policy, handle parent) { function handle (line 255) | static handle cast(const Type *src, return_value_policy policy, handle p... function handle (line 265) | handle cast_impl(C *src, return_value_policy policy, handle parent) { function handle (line 407) | static handle cast(MapType &&src, return_value_policy policy, handle par... function handle (line 411) | static handle cast(const MapType &&src, return_value_policy policy, hand... function handle (line 415) | static handle cast(MapType &src, return_value_policy policy, handle pare... function handle (line 423) | static handle cast(const MapType &src, return_value_policy policy, handl... function handle (line 431) | static handle cast(MapType *src, return_value_policy policy, handle pare... function handle (line 440) | static handle cast(const MapType *src, return_value_policy policy, handl... FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/embed.h function PYBIND11_NAMESPACE_BEGIN (line 59) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) type wide_char_arg_deleter (line 77) | struct wide_char_arg_deleter { function wchar_t (line 84) | inline wchar_t *widen_chars(const char *safe_arg) { function precheck_interpreter (line 89) | inline void precheck_interpreter() { function initialize_interpreter_pre_pyconfig (line 100) | inline void initialize_interpreter_pre_pyconfig(bool init_signal_handlers, function finalize_interpreter (line 244) | inline void finalize_interpreter() { function class (line 284) | class scoped_interpreter { FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/eval.h function PYBIND11_NAMESPACE_BEGIN (line 18) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) function exec (line 88) | inline void exec(const str &expr, object global = globals(), object loca... FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/functional.h function PYBIND11_NAMESPACE_BEGIN (line 16) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/gil.h function PYBIND11_NAMESPACE_BEGIN (line 18) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) function inc_ref (line 91) | void inc_ref() { ++tstate->gilstate_counter; } function PYBIND11_NOINLINE (line 93) | PYBIND11_NOINLINE void dec_ref() { function PYBIND11_NOINLINE (line 123) | PYBIND11_NOINLINE void disarm() { active = false; } function PYBIND11_NOINLINE (line 125) | PYBIND11_NOINLINE ~gil_scoped_acquire() { function class (line 138) | class gil_scoped_release { function PYBIND11_NOINLINE (line 163) | PYBIND11_NOINLINE void disarm() { active = false; } function class (line 189) | class gil_scoped_acquire { function class (line 200) | class gil_scoped_release { function class (line 215) | class gil_scoped_acquire { function class (line 226) | class gil_scoped_release { FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/iostream.h function PYBIND11_NAMESPACE_BEGIN (line 34) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) function utf8_remainder (line 58) | size_t utf8_remainder() const { function is_leading (line 62) | auto is_leading = [](char c) { return (static_cast(c) & 0... function is_leading_2b (line 63) | auto is_leading_2b = [](char c) { return static_cast(c) <... function is_leading_3b (line 64) | auto is_leading_3b = [](char c) { return static_cast(c) <... function _sync (line 94) | int _sync() { function sync (line 117) | int sync() override { return _sync(); } function class (line 192) | class scoped_estream_redirect : public scoped_ostream_redirect { function OstreamRedirect (line 200) | PYBIND11_NAMESPACE_BEGIN(detail) function exit (line 222) | void exit() { FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/numpy.h function PYBIND11_WARNING_DISABLE_MSVC (line 37) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) type PyArrayDescr_Proxy (line 53) | struct PyArrayDescr_Proxy { type PyArray_Proxy (line 68) | struct PyArray_Proxy { type PyVoidScalarObject_Proxy (line 79) | struct PyVoidScalarObject_Proxy { type numpy_type_info (line 86) | struct numpy_type_info { function if (line 91) | struct numpy_internals { function numpy_internals (line 115) | inline numpy_internals &get_numpy_internals() { function PyArray_Check_ (line 140) | struct npy_api { function PyArrayDescr_Check_ (line 202) | bool PyArrayDescr_Check_(PyObject *obj) const { type functions (line 243) | enum functions { function npy_api (line 265) | static npy_api lookup() { function PyArray_Proxy (line 299) | inline PyArray_Proxy *array_proxy(void *ptr) { return reinterpret_castnd; } function strides (line 817) | ssize_t strides(ssize_t dim) const { function flags (line 825) | int flags() const { return detail::array_proxy(m_ptr)->flags; } function array (line 907) | array squeeze() { function array (line 932) | array reshape(ShapeContainer new_shape) { function array (line 948) | array view(const std::string &dtype) { type detail (line 970) | struct detail function fail_dim_check (line 972) | void fail_dim_check(ssize_t dim, const std::string &msg) const { function check_dimensions_impl (line 994) | void check_dimensions_impl(ssize_t, const ssize_t *) const {} type private_ctor (line 1020) | struct private_ctor {} function explicit (line 1055) | explicit array_t(const buffer_info &info, handle base = handle()) : arra... function array_t (line 1136) | static array_t ensure(handle h) { function check_ (line 1144) | static bool check_(handle h) { function std (line 1171) | static std::string format() { function string (line 1178) | string format() { return std::to_string(N) + 's'; } function string (line 1182) | string format() { return std::to_string(N) + 's'; } function std (line 1187) | static std::string format() { function std (line 1195) | static std::string format() { function load (line 1207) | bool load(handle src, bool convert) { function handle (line 1215) | static handle cast(const handle &src, return_value_policy /* policy */, ... function compare (line 1223) | static bool compare(const buffer_info &b) { function pybind11 (line 1286) | static pybind11::dtype dtype() { function pybind11 (line 1319) | static pybind11::dtype dtype() { function pybind11 (line 1334) | static pybind11::dtype dtype() { return base_descr::dtype(); } type field_descriptor (line 1337) | struct field_descriptor { function pybind11 (line 1425) | static pybind11::dtype dtype() { return reinterpret_borrow fields) { function direct_converter (line 1445) | static bool direct_converter(PyObject *obj, void *&value) { function class (line 1538) | class common_iterator { function init_common_iterator (line 1604) | void init_common_iterator(const buffer_info &buffer, function increment_common_iterator (line 1630) | void increment_common_iterator(size_t dim) { function broadcast_trivial (line 1641) | enum class broadcast_trivial { non_trivial, c_trivial, f_trivial }; function Type (line 1758) | static Type create(broadcast_trivial trivial, const std::vector... function Return (line 1765) | static Return *mutable_data(Type &array) { return array.mutable_data(); } function Return (line 1767) | static Return call(Func &f, Args &...args) { return f(args...); } function call (line 1769) | static void call(Return *out, size_t i, Func &f, Args &...args) { out[i]... function Type (line 1777) | static Type create(broadcast_trivial, const std::vector &) { re... function detail (line 1781) | static detail::void_type call(Func &f, Args &...args) { function call (line 1786) | static void call(void *, size_t, Func &f, Args &...args) { f(args...); } function object (line 1812) | object operator()(typename vectorize_arg::type... args) { FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/operators.h function PYBIND11_NAMESPACE_BEGIN (line 14) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) type op_impl (line 82) | struct op_impl {} FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/options.h function options (line 14) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) function show_user_defined_docstrings (line 62) | static bool show_user_defined_docstrings() { function show_function_signatures (line 66) | static bool show_function_signatures() { return global_state().show_func... function show_enum_members_docstring (line 68) | static bool show_enum_members_docstring() { type state (line 76) | struct state { function state (line 84) | static state &global_state() { FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/pybind11.h function apply_exception_translators (line 53) | PYBIND11_NAMESPACE_BEGIN(detail) type InitializingFunctionRecordDeleter (line 153) | struct InitializingFunctionRecordDeleter { function PYBIND11_NOINLINE (line 162) | PYBIND11_NOINLINE unique_function_record make_function_record() { type capture (line 170) | struct capture { function class (line 312) | class strdup_guard { function release (line 328) | void release() { strings.clear(); } function initialize_generic (line 335) | void initialize_generic(unique_function_record &&unique_rec, function capsule (line 503) | capsule rec_capsule(unique_rec.release(), function loader_life_support (line 938) | loader_life_support guard{} function append_note_if_missing_header_is_suspected (line 1024) | auto append_note_if_missing_header_is_suspected = [](std::string &msg) { function module_ (line 1204) | static module_ import(const char *name) { function reload (line 1213) | void reload() { function module_ (line 1245) | static module_ create_extension_module(const char *name, const char *doc... function dict (line 1280) | inline dict globals() { function object (line 1288) | object make_simple_namespace(Args &&...args_) { function mark_parents_nonsimple (line 1358) | void mark_parents_nonsimple(PyTypeObject *value) { function add_base (line 1557) | void add_base(detail::type_record &rec) { function add_base (line 1564) | void add_base(detail::type_record &) {} type capture (line 1631) | struct capture { function cpp_function (line 1666) | cpp_function fget([pm](const type &c) -> const D & { return c.*pm; } function cpp_function (line 1676) | cpp_function fget([pm](const type &c) -> const D & { return c.*pm; } function cpp_function (line 1683) | cpp_function fget([pm](const object &) -> const D & { return *pm; } function cpp_function (line 1691) | cpp_function fget([pm](const object &) -> const D & { return *pm; } function init_holder (line 1802) | void init_holder(detail::instance *inst, function init_holder_from_existing (line 1820) | static void init_holder_from_existing(const detail::value_and_holder &v_h, function init_holder_from_existing (line 1827) | static void init_holder_from_existing(const detail::value_and_holder &v_h, function init_holder (line 1836) | static void init_holder(detail::instance *inst, function init_instance (line 1853) | static void init_instance(detail::instance *inst, const void *holder_ptr) { function dealloc (line 1863) | static void dealloc(detail::value_and_holder &v_h) { function detail (line 1881) | static detail::function_record *get_function_record(handle h) { function enum_name (line 1935) | PYBIND11_NAMESPACE_BEGIN(detail) function PYBIND11_NOINLINE (line 2108) | PYBIND11_NOINLINE void export_values() { type equivalent_integer (line 2122) | struct equivalent_integer type equivalent_integer (line 2126) | struct equivalent_integer type equivalent_integer (line 2130) | struct equivalent_integer type equivalent_integer (line 2134) | struct equivalent_integer type equivalent_integer (line 2138) | struct equivalent_integer type equivalent_integer (line 2142) | struct equivalent_integer type equivalent_integer (line 2146) | struct equivalent_integer type equivalent_integer (line 2150) | struct equivalent_integer function keep_alive_impl (line 2216) | void keep_alive_impl(handle nurse, handle patient) { function PYBIND11_NOINLINE (line 2246) | PYBIND11_NOINLINE void function std (line 2264) | inline std::pair function result_type (line 2320) | result_type operator()(Iterator &it) const { return *it; } function result_type (line 2342) | result_type operator()(Iterator &it) const { return (*it).first; } function result_type (line 2355) | result_type operator()(Iterator &it) const { return (*it).second; } function set_flag (line 2474) | struct set_flag { function register_exception_translator (line 2504) | inline void register_exception_translator(ExceptionTranslator &&translat... function register_local_exception_translator (line 2515) | inline void register_local_exception_translator(ExceptionTranslator &&tr... function get_exception_object (line 2547) | PYBIND11_NAMESPACE_BEGIN(detail) function register_exception (line 2582) | PYBIND11_NAMESPACE_END(detail) function print (line 2611) | void print(const tuple &args, const dict &kwargs) { function m_fetched_error_deleter (line 2650) | inline void function get_type_override (line 2663) | PYBIND11_NAMESPACE_BEGIN(detail) function get_override (line 2754) | PYBIND11_NAMESPACE_END(detail) function function (line 2860) | inline function FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/pytypes.h function PYBIND11_WARNING_DISABLE_MSVC (line 34) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) function class (line 70) | class pyobject_tag {} function m_ptr (line 227) | m_ptr(ptr) {} function m_ptr (line 238) | m_ptr(obj) {} function PyObject (line 241) | PyObject *ptr() const { return m_ptr; } function throw_gilstate_error (line 301) | void throw_gilstate_error(const std::string &function_name) const { function inc_ref_counter (line 321) | static std::size_t inc_ref_counter(std::size_t add) { function class (line 342) | class object : public handle { function restore (line 629) | void restore() { function matches (line 639) | bool matches(handle exc) const { function std (line 653) | inline std::string error_string() { function PYBIND11_EXPORT_EXCEPTION (line 663) | PYBIND11_EXPORT_EXCEPTION error_already_set : public std::exception { function raise_from (line 721) | inline void raise_from(PyObject *type, const char *message) { function raise_from (line 750) | inline void raise_from(error_already_set &err, PyObject *type, const cha... function isinstance (line 778) | inline bool isinstance(handle obj) { function isinstance (line 784) | inline bool isinstance(handle obj, handle type) { function hasattr (line 794) | inline bool hasattr(handle obj, handle name) { function hasattr (line 798) | inline bool hasattr(handle obj, const char *name) { function delattr (line 802) | inline void delattr(handle obj, handle name) { function delattr (line 808) | inline void delattr(handle obj, const char *name) { function object (line 814) | inline object getattr(handle obj, handle name) { function object (line 822) | inline object getattr(handle obj, const char *name) { function object (line 830) | inline object getattr(handle obj, handle name, handle default_) { function object (line 838) | inline object getattr(handle obj, const char *name, handle default_) { function setattr (line 846) | inline void setattr(handle obj, handle name, handle value) { function setattr (line 852) | inline void setattr(handle obj, const char *name, handle value) { function hash (line 858) | inline ssize_t hash(handle obj) { function get_function (line 868) | PYBIND11_NAMESPACE_BEGIN(detail) function PyObject (line 884) | inline PyObject *dict_getitemstring(PyObject *v, const char *key) { function PyObject (line 899) | inline PyObject *dict_getitem(PyObject *v, PyObject *key) { function handle (line 918) | inline handle object_or_cast(PyObject *ptr) { return ptr; } function PYBIND11_WARNING_PUSH (line 920) | PYBIND11_WARNING_PUSH function PyObject (line 963) | PyObject *ptr() const { return get_cache().ptr(); } function object (line 971) | static object ensure_object(handle h) { return reinterpret_borrow() const { return **this; } function arrow_proxy (line 1149) | PYBIND11_NAMESPACE_BEGIN(iterator_policies) function class (line 1161) | class sequence_fast_readonly { function increment (line 1172) | void increment() { ++ptr; } function decrement (line 1173) | void decrement() { --ptr; } function advance (line 1174) | void advance(ssize_t n) { ptr += n; } function equal (line 1175) | bool equal(const sequence_fast_readonly &b) const { return ptr == b.ptr; } function distance_to (line 1176) | ssize_t distance_to(const sequence_fast_readonly &b) const { return ptr ... function class (line 1183) | class sequence_slow_readwrite { function increment (line 1193) | void increment() { ++index; } function decrement (line 1194) | void decrement() { --index; } function advance (line 1195) | void advance(ssize_t n) { index += n; } function equal (line 1196) | bool equal(const sequence_slow_readwrite &b) const { return index == b.i... function distance_to (line 1197) | ssize_t distance_to(const sequence_slow_readwrite &b) const { return ind... function class (line 1205) | class dict_readonly { function increment (line 1217) | void increment() { function equal (line 1222) | bool equal(const dict_readonly &b) const { return pos == b.pos; } function PyIterable_Check (line 1242) | inline bool PyIterable_Check(PyObject *obj) { function PyNone_Check (line 1252) | inline bool PyNone_Check(PyObject *o) { return o == Py_None; } function PyEllipsis_Check (line 1253) | inline bool PyEllipsis_Check(PyObject *o) { return o == Py_Ellipsis; } function PyUnicode_Check_Permissive (line 1256) | inline bool PyUnicode_Check_Permissive(PyObject *o) { function PyStaticMethod_Check (line 1264) | inline bool PyStaticMethod_Check(PyObject *o) { return o->ob_type == &Py... function class (line 1266) | class kwargs_proxy : public handle { function class (line 1271) | class args_proxy : public handle { function Parent (line 1318) | Name(const object &o) ... function Parent (line 1342) | Name(const object &o) : Parent(o) { ... function class (line 1367) | class iterator : public object { function reference (line 1389) | reference operator*() const { function pointer (line 1397) | pointer operator->() const { function iterator (line 1415) | static iterator sentinel() { return {}; } function class (line 1432) | class type : public object { function class (line 1458) | class iterable : public object { function namespace (line 1552) | inline namespace literals { function bytes (line 1617) | inline bytes::bytes(const pybind11::str &s) { function str (line 1637) | inline str::str(const bytes &b) { function class (line 1655) | class bytearray : public object { function class (line 1685) | class none : public object { function class (line 1691) | class ellipsis : public object { function class (line 1697) | class bool_ : public object { function as_unsigned (line 1718) | PYBIND11_NAMESPACE_BEGIN(detail) function class (line 1769) | class float_ : public object { function class (line 1791) | class weakref : public object { function class (line 1808) | class slice : public object { function compute (line 1836) | bool compute( function object (line 1845) | object index_to_object(T index) { function class (line 1850) | class capsule : public object { function explicit (line 1898) | explicit capsule(void (*destructor)()) { function set_pointer (line 1930) | void set_pointer(const void *value) { function set_name (line 1945) | void set_name(const char *new_name) { function class (line 1965) | class tuple : public object { function args_are_all_keyword_or_ds (line 1991) | bool args_are_all_keyword_or_ds() { function class (line 1995) | class dict : public object { function clear (line 2014) | void clear() /* py-non-const */ { PyDict_Clear(ptr()); } function class (line 2034) | class sequence : public object { function item_accessor (line 2047) | item_accessor operator[](T &&o) const { function class (line 2054) | class list : public object { function class (line 2093) | class args : public tuple { function memoryview (line 2278) | static memoryview from_memory(const void *mem, ssize_t size) { function memoryview (line 2283) | static memoryview from_memory(std::string_view mem) { function memoryview (line 2290) | inline memoryview memoryview::from_buffer(void *ptr, function len (line 2329) | inline size_t len(handle h) { function len_hint (line 2339) | inline size_t len_hint(handle h) { function str (line 2350) | inline str repr(handle h) { function iterator (line 2358) | inline iterator iter(handle obj) { FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/stl.h function PYBIND11_NAMESPACE_BEGIN (line 35) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) function reserve_maybe (line 116) | void reserve_maybe(const dict &, void *) {} function load (line 168) | bool load(handle src, bool convert) { function reserve_maybe (line 190) | void reserve_maybe(const sequence &, void *) {} function load (line 322) | bool load(handle src, bool convert) { type type_caster (line 355) | struct type_caster type variant_caster_visitor (line 360) | struct variant_caster_visitor { type type_caster (line 432) | struct type_caster FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/stl/filesystem.h function PyObject (line 51) | static PyObject *unicode_from_fs_native(const std::wstring &w) { function load (line 65) | bool load(handle handle, bool) { type type_caster (line 108) | struct type_caster type type_caster (line 111) | struct type_caster FILE: pkg/gocv/cgo/third_path/pybind11/include/pybind11/stl_bind.h function PYBIND11_NAMESPACE_BEGIN (line 21) | PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) function explicit (line 667) | explicit KeysViewImpl(Map &map) : map(map) {} function len (line 668) | size_t len() override { return map.size(); } function iterator (line 669) | iterator iter() override { return make_key_iterator(map.begin(), map.end... function contains (line 670) | bool contains(const typename Map::key_type &k) override { return map.fin... function contains (line 671) | bool contains(const object &) override { return false; } function explicit (line 677) | explicit ValuesViewImpl(Map &map) : map(map) {} function len (line 678) | size_t len() override { return map.size(); } function iterator (line 679) | iterator iter() override { return make_value_iterator(map.begin(), map.e... function explicit (line 685) | explicit ItemsViewImpl(Map &map) : map(map) {} function len (line 686) | size_t len() override { return map.size(); } function iterator (line 687) | iterator iter() override { return make_iterator(map.begin(), map.end()); } FILE: pkg/gocv/cgo/third_path/pybind11/noxfile.py function lint (line 25) | def lint(session: nox.Session) -> None: function tests (line 34) | def tests(session: nox.Session) -> None: function tests_packaging (line 55) | def tests_packaging(session: nox.Session) -> None: function docs (line 65) | def docs(session: nox.Session) -> None: function make_changelog (line 87) | def make_changelog(session: nox.Session) -> None: function build (line 96) | def build(session: nox.Session) -> None: FILE: pkg/gocv/cgo/third_path/pybind11/pybind11/__main__.py function print_includes (line 11) | def print_includes() -> None: function main (line 27) | def main() -> None: FILE: pkg/gocv/cgo/third_path/pybind11/pybind11/_version.py function _to_int (line 4) | def _to_int(s: str) -> Union[int, str]: FILE: pkg/gocv/cgo/third_path/pybind11/pybind11/commands.py function get_include (line 6) | def get_include(user: bool = False) -> str: # pylint: disable=unused-ar... function get_cmake_dir (line 16) | def get_cmake_dir() -> str: function get_pkgconfig_dir (line 28) | def get_pkgconfig_dir() -> str: FILE: pkg/gocv/cgo/third_path/pybind11/pybind11/setup_helpers.py class Pybind11Extension (line 87) | class Pybind11Extension(_Extension): # type: ignore[misc] method _add_cflags (line 114) | def _add_cflags(self, flags: List[str]) -> None: method _add_ldflags (line 117) | def _add_ldflags(self, flags: List[str]) -> None: method __init__ (line 120) | def __init__(self, *args: Any, **kwargs: Any) -> None: method cxx_std (line 164) | def cxx_std(self) -> int: method cxx_std (line 175) | def cxx_std(self, level: int) -> None: function tmp_chdir (line 216) | def tmp_chdir() -> Iterator[str]: function has_flag (line 232) | def has_flag(compiler: Any, flag: str) -> bool: function auto_cpp_level (line 256) | def auto_cpp_level(compiler: Any) -> Union[str, int]: class build_ext (line 274) | class build_ext(_build_ext): # type: ignore[misc] # noqa: N801 method build_extensions (line 281) | def build_extensions(self) -> None: function intree_extensions (line 293) | def intree_extensions( function naive_recompile (line 335) | def naive_recompile(obj: str, src: str) -> bool: function no_recompile (line 344) | def no_recompile(obg: str, src: str) -> bool: # pylint: disable=unused-... class ParallelCompile (line 375) | class ParallelCompile: method __init__ (line 413) | def __init__( method function (line 426) | def function(self) -> CCompilerMethod: method install (line 491) | def install(self: S) -> S: method __enter__ (line 498) | def __enter__(self: S) -> S: method __exit__ (line 502) | def __exit__(self, *args: Any) -> None: FILE: pkg/gocv/cgo/third_path/pybind11/setup.py function build_expected_version_hex (line 26) | def build_expected_version_hex(matches: Dict[str, str]) -> str: function get_and_replace (line 87) | def get_and_replace( class SDist (line 99) | class SDist(setuptools.command.sdist.sdist): # type: ignore[misc] method make_release_tree (line 100) | def make_release_tree(self, base_dir: str, files: List[str]) -> None: function remove_output (line 115) | def remove_output(*sources: str) -> Iterator[None]: FILE: pkg/gocv/cgo/third_path/pybind11/tests/conftest.py function always_forkserver_on_unix (line 28) | def always_forkserver_on_unix(): function _strip_and_dedent (line 49) | def _strip_and_dedent(s): function _split_and_sort (line 54) | def _split_and_sort(s): function _make_explanation (line 59) | def _make_explanation(a, b): class Output (line 66) | class Output: method __init__ (line 69) | def __init__(self, string): method __str__ (line 73) | def __str__(self): method __eq__ (line 76) | def __eq__(self, other): class Unordered (line 91) | class Unordered(Output): method __eq__ (line 94) | def __eq__(self, other): class Capture (line 104) | class Capture: method __init__ (line 105) | def __init__(self, capfd): method __enter__ (line 110) | def __enter__(self): method __exit__ (line 114) | def __exit__(self, *args): method __eq__ (line 117) | def __eq__(self, other): method __str__ (line 126) | def __str__(self): method __contains__ (line 129) | def __contains__(self, item): method unordered (line 133) | def unordered(self): method stderr (line 137) | def stderr(self): function capture (line 142) | def capture(capsys): class SanitizedString (line 147) | class SanitizedString: method __init__ (line 148) | def __init__(self, sanitizer): method __call__ (line 153) | def __call__(self, thing): method __eq__ (line 157) | def __eq__(self, other): function _sanitize_general (line 167) | def _sanitize_general(s): function _sanitize_docstring (line 174) | def _sanitize_docstring(thing): function doc (line 181) | def doc(): function _sanitize_message (line 186) | def _sanitize_message(thing): function msg (line 194) | def msg(): function pytest_assertrepr_compare (line 200) | def pytest_assertrepr_compare(op, left, right): function suppress (line 207) | def suppress(exception): function gc_collect (line 215) | def gc_collect(): function pytest_configure (line 222) | def pytest_configure(): function pytest_report_header (line 227) | def pytest_report_header(config): FILE: pkg/gocv/cgo/third_path/pybind11/tests/constructor_stats.h function class (line 75) | class ConstructorStats { function value (line 142) | void value() {} function ConstructorStats (line 178) | static ConstructorStats &get(py::object class_) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/cross_module_gil_utils.cpp function gil_acquire (line 31) | void gil_acquire() { py::gil_scoped_acquire gil; } function gil_multi_acquire_release (line 33) | std::string gil_multi_acquire_release(unsigned bits) { type CustomAutoGIL (line 49) | struct CustomAutoGIL { method CustomAutoGIL (line 50) | CustomAutoGIL() : gstate(PyGILState_Ensure()) {} type CustomAutoNoGIL (line 55) | struct CustomAutoNoGIL { method CustomAutoNoGIL (line 56) | CustomAutoNoGIL() : save(PyEval_SaveThread()) {} function gil_acquire_inner (line 63) | void gil_acquire_inner() { function gil_acquire_nested (line 70) | void gil_acquire_nested() { type PyModuleDef (line 80) | struct PyModuleDef function PYBIND11_EXPORT (line 88) | PYBIND11_EXPORT PyObject *PyInit_cross_module_gil_utils() { FILE: pkg/gocv/cgo/third_path/pybind11/tests/cross_module_interleaved_error_already_set.cpp function interleaved_error_already_set (line 18) | void interleaved_error_already_set() { type PyModuleDef (line 35) | struct PyModuleDef function PYBIND11_EXPORT (line 40) | PYBIND11_EXPORT PyObject *PyInit_cross_module_interleaved_error_already_... FILE: pkg/gocv/cgo/third_path/pybind11/tests/eigen_tensor_avoid_stl_array.cpp function PYBIND11_MODULE (line 14) | PYBIND11_MODULE(eigen_tensor_avoid_stl_array, m) { eigen_tensor_test::te... FILE: pkg/gocv/cgo/third_path/pybind11/tests/env.py function deprecated_call (line 14) | def deprecated_call(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/extra_python_package/test_files.py function read_tz_file (line 125) | def read_tz_file(tar: tarfile.TarFile, name: str) -> bytes: function normalize_line_endings (line 133) | def normalize_line_endings(value: bytes) -> bytes: function test_build_sdist (line 137) | def test_build_sdist(monkeypatch, tmpdir): function test_build_global_dist (line 187) | def test_build_global_dist(monkeypatch, tmpdir): function tests_build_wheel (line 235) | def tests_build_wheel(monkeypatch, tmpdir): function tests_build_global_wheel (line 262) | def tests_build_global_wheel(monkeypatch, tmpdir): FILE: pkg/gocv/cgo/third_path/pybind11/tests/extra_setuptools/test_setuphelper.py function test_simple_setup_py (line 15) | def test_simple_setup_py(monkeypatch, tmpdir, parallel, std): function test_intree_extensions (line 111) | def test_intree_extensions(monkeypatch, tmpdir): function test_intree_extensions_package_dir (line 131) | def test_intree_extensions_package_dir(monkeypatch, tmpdir): FILE: pkg/gocv/cgo/third_path/pybind11/tests/local_bindings.h function class (line 40) | class LocalException : public std::exception { function class (line 50) | class LocalSimpleException : public std::exception { function namespace (line 76) | namespace pets { FILE: pkg/gocv/cgo/third_path/pybind11/tests/object.h function class (line 9) | class Object { function class (line 54) | class ref_tag {} function explicit (line 76) | explicit ref(T *ptr) : m_ptr(ptr) { function m_ptr (line 86) | ref(const ref &r) : m_ptr(r.m_ptr) { function operator (line 169) | bool operator==(const ref &r) const { return m_ptr == r.m_ptr; } function operator (line 172) | bool operator!=(const ref &r) const { return m_ptr != r.m_ptr; } function T (line 184) | const T *operator->() const { return m_ptr; } FILE: pkg/gocv/cgo/third_path/pybind11/tests/pybind11_cross_module_tests.cpp function PYBIND11_MODULE (line 19) | PYBIND11_MODULE(pybind11_cross_module_tests, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/pybind11_tests.cpp function bind_ConstructorStats (line 44) | void bind_ConstructorStats(py::module_ &m) { function PYBIND11_MODULE (line 78) | PYBIND11_MODULE(pybind11_tests, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/pybind11_tests.h function class (line 9) | class test_initializer { type UnregisteredType (line 23) | struct UnregisteredType {} function class (line 26) | class UserType { function class (line 39) | class IncType : public UserType { type RValueCaster (line 57) | struct RValueCaster {} function PYBIND11_NAMESPACE_BEGIN (line 58) | PYBIND11_NAMESPACE_BEGIN(pybind11) FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_async.cpp function TEST_SUBMODULE (line 12) | TEST_SUBMODULE(async_module, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_async.py function event_loop (line 8) | def event_loop(): function get_await_result (line 14) | async def get_await_result(x): function test_await (line 18) | def test_await(event_loop): function test_await_missing (line 22) | def test_await_missing(event_loop): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_buffers.cpp function TEST_SUBMODULE (line 15) | TEST_SUBMODULE(buffers, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_buffers.py function test_from_python (line 14) | def test_from_python(): function test_to_python (line 42) | def test_to_python(): function test_inherited_protocol (line 76) | def test_inherited_protocol(): function test_pointer_to_member_fn (line 84) | def test_pointer_to_member_fn(): function test_readonly_buffer (line 92) | def test_readonly_buffer(): function test_selective_readonly_buffer (line 101) | def test_selective_readonly_buffer(): function test_ctypes_array_1d (line 117) | def test_ctypes_array_1d(): function test_ctypes_array_2d (line 132) | def test_ctypes_array_2d(): function test_ctypes_from_buffer (line 147) | def test_ctypes_from_buffer(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_builtin_casters.cpp type ConstRefCasted (line 14) | struct ConstRefCasted { class type_caster (line 21) | class type_caster { method load (line 27) | bool load(handle, bool) { return true; } function TEST_SUBMODULE (line 75) | TEST_SUBMODULE(builtin_casters, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_builtin_casters.py function test_simple_string (line 10) | def test_simple_string(): function test_unicode_conversion (line 14) | def test_unicode_conversion(): function test_single_char_arguments (line 49) | def test_single_char_arguments(): function test_bytes_to_string (line 122) | def test_bytes_to_string(): function test_bytearray_to_string (line 136) | def test_bytearray_to_string(): function test_string_view (line 146) | def test_string_view(capture): function test_integer_casting (line 225) | def test_integer_casting(): function test_int_convert (line 248) | def test_int_convert(): function test_numpy_int_convert (line 319) | def test_numpy_int_convert(): function test_tuple (line 343) | def test_tuple(doc): function test_builtins_cast_return_none (line 379) | def test_builtins_cast_return_none(): function test_none_deferred (line 389) | def test_none_deferred(): function test_void_caster (line 398) | def test_void_caster(): function test_reference_wrapper (line 403) | def test_reference_wrapper(): function test_complex_cast (line 436) | def test_complex_cast(): function test_bool_caster (line 442) | def test_bool_caster(): function test_numpy_bool (line 485) | def test_numpy_bool(): function test_int_long (line 501) | def test_int_long(): function test_void_caster_2 (line 507) | def test_void_caster_2(): function test_const_ref_caster (line 511) | def test_const_ref_caster(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_call_policies.cpp type CustomGuard (line 12) | struct CustomGuard { method CustomGuard (line 15) | CustomGuard() { enabled = true; } type DependentGuard (line 22) | struct DependentGuard { method DependentGuard (line 25) | DependentGuard() { enabled = CustomGuard::enabled; } function TEST_SUBMODULE (line 32) | TEST_SUBMODULE(call_policies, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_call_policies.py function test_keep_alive_argument (line 9) | def test_keep_alive_argument(capture): function test_keep_alive_return_value (line 61) | def test_keep_alive_return_value(capture): function test_alive_gc (line 119) | def test_alive_gc(capture): function test_alive_gc_derived (line 138) | def test_alive_gc_derived(capture): function test_alive_gc_multi_derived (line 160) | def test_alive_gc_multi_derived(capture): function test_return_none (line 186) | def test_return_none(capture): function test_keep_alive_constructor (line 213) | def test_keep_alive_constructor(capture): function test_call_guard (line 238) | def test_call_guard(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_callbacks.cpp function dummy_function (line 17) | int dummy_function(int i) { return i + 1; } function TEST_SUBMODULE (line 19) | TEST_SUBMODULE(callbacks, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_callbacks.py function test_callbacks (line 10) | def test_callbacks(): function test_bound_method_callback (line 34) | def test_bound_method_callback(): function test_keyword_args_and_generalized_unpacking (line 47) | def test_keyword_args_and_generalized_unpacking(): function test_lambda_closure_cleanup (line 80) | def test_lambda_closure_cleanup(): function test_cpp_callable_cleanup (line 88) | def test_cpp_callable_cleanup(): function test_cpp_function_roundtrip (line 93) | def test_cpp_function_roundtrip(): function test_function_signatures (line 125) | def test_function_signatures(doc): function test_movable_object (line 130) | def test_movable_object(): function test_python_builtins (line 138) | def test_python_builtins(): function test_async_callbacks (line 144) | def test_async_callbacks(): function test_async_async_callbacks (line 167) | def test_async_async_callbacks(): function test_callback_num_times (line 173) | def test_callback_num_times(): function test_custom_func (line 198) | def test_custom_func(): function test_custom_func2 (line 206) | def test_custom_func2(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_chrono.cpp type different_resolutions (line 17) | struct different_resolutions { function TEST_SUBMODULE (line 32) | TEST_SUBMODULE(chrono, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_chrono.py function test_chrono_system_clock (line 9) | def test_chrono_system_clock(): function test_chrono_system_clock_roundtrip (line 30) | def test_chrono_system_clock_roundtrip(): function test_chrono_system_clock_roundtrip_date (line 44) | def test_chrono_system_clock_roundtrip_date(): function test_chrono_system_clock_roundtrip_time (line 100) | def test_chrono_system_clock_roundtrip_time(time1, tz, monkeypatch): function test_chrono_duration_roundtrip (line 123) | def test_chrono_duration_roundtrip(): function test_chrono_duration_subtraction_equivalence (line 143) | def test_chrono_duration_subtraction_equivalence(): function test_chrono_duration_subtraction_equivalence_date (line 153) | def test_chrono_duration_subtraction_equivalence_date(): function test_chrono_steady_clock (line 163) | def test_chrono_steady_clock(): function test_chrono_steady_clock_roundtrip (line 168) | def test_chrono_steady_clock_roundtrip(): function test_floating_point_duration (line 178) | def test_floating_point_duration(): function test_nano_timepoint (line 192) | def test_nano_timepoint(): function test_chrono_different_resolutions (line 198) | def test_chrono_different_resolutions(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_class.cpp type NoBraceInitialization (line 29) | struct NoBraceInitialization { method NoBraceInitialization (line 30) | explicit NoBraceInitialization(std::vector v) : vec{std::move(v)} {} method NoBraceInitialization (line 32) | NoBraceInitialization(std::initializer_list l) : vec(l) {} type test_class (line 37) | namespace test_class { type pr4220_tripped_over_this (line 38) | namespace pr4220_tripped_over_this { // PR #4227 type SoEmpty (line 41) | struct SoEmpty {} function get_msg (line 44) | std::string get_msg(const T &) { function bind_empty0 (line 50) | void bind_empty0(py::module_ &m) { type NoConstructor (line 61) | struct NoConstructor { method NoConstructor (line 62) | NoConstructor() = default; method NoConstructor (line 63) | NoConstructor(const NoConstructor &) = default; method NoConstructor (line 64) | NoConstructor(NoConstructor &&) = default; method NoConstructor (line 65) | static NoConstructor *new_instance() { type NoConstructorNew (line 72) | struct NoConstructorNew { method NoConstructorNew (line 73) | NoConstructorNew() = default; method NoConstructorNew (line 74) | NoConstructorNew(const NoConstructorNew &) = default; method NoConstructorNew (line 75) | NoConstructorNew(NoConstructorNew &&) = default; method NoConstructorNew (line 76) | static NoConstructorNew *new_instance() { class Pet (line 93) | class Pet { method Pet (line 95) | Pet(const std::string &name, const std::string &species) method name (line 97) | std::string name() const { return m_name; } method species (line 98) | std::string species() const { return m_species; } class Dog (line 105) | class Dog : public Pet { method Dog (line 107) | explicit Dog(const std::string &name) : Pet(name, "dog") {} method bark (line 108) | std::string bark() const { return "Woof!"; } class Rabbit (line 111) | class Rabbit : public Pet { method Rabbit (line 113) | explicit Rabbit(const std::string &name) : Pet(name, "parrot") {} class Hamster (line 116) | class Hamster : public Pet { method Hamster (line 118) | explicit Hamster(const std::string &name) : Pet(name, "rodent") {} class Chimera (line 121) | class Chimera : public Pet { method Chimera (line 122) | Chimera() : Pet("Kimmy", "chimera") {} type BaseClass (line 147) | struct BaseClass { method BaseClass (line 148) | BaseClass() = default; method BaseClass (line 149) | BaseClass(const BaseClass &) = default; method BaseClass (line 150) | BaseClass(BaseClass &&) = default; type DerivedClass1 (line 153) | struct DerivedClass1 : BaseClass {} type DerivedClass2 (line 154) | struct DerivedClass2 : BaseClass {} type Invalid (line 184) | struct Invalid {} type MismatchBase1 (line 205) | struct MismatchBase1 {} type MismatchDerived1 (line 206) | struct MismatchDerived1 : MismatchBase1 {} type MismatchBase2 (line 208) | struct MismatchBase2 {} type MismatchDerived2 (line 209) | struct MismatchDerived2 : MismatchBase2 {} type MyBase (line 225) | struct MyBase { method make (line 226) | static std::unique_ptr make() { return std::unique_ptr... type MyDerived (line 229) | struct MyDerived : MyBase { method make (line 230) | static std::unique_ptr make() { type ConvertibleFromUserType (line 242) | struct ConvertibleFromUserType { method ConvertibleFromUserType (line 245) | explicit ConvertibleFromUserType(UserType u) : i(u.value()) {} type HasOpNewDel (line 278) | struct HasOpNewDel { type HasOpNewDelSize (line 293) | struct HasOpNewDelSize { type AliasedHasOpNewDelSize (line 308) | struct AliasedHasOpNewDelSize { method AliasedHasOpNewDelSize (line 323) | AliasedHasOpNewDelSize() = default; method AliasedHasOpNewDelSize (line 324) | AliasedHasOpNewDelSize(const AliasedHasOpNewDelSize &) = delete; type PyAliasedHasOpNewDelSize (line 326) | struct PyAliasedHasOpNewDelSize : AliasedHasOpNewDelSize { method PyAliasedHasOpNewDelSize (line 327) | PyAliasedHasOpNewDelSize() = default; method PyAliasedHasOpNewDelSize (line 328) | explicit PyAliasedHasOpNewDelSize(int) {} type HasOpNewDelBoth (line 331) | struct HasOpNewDelBoth { class ProtectedA (line 364) | class ProtectedA { method foo (line 366) | int foo() const { return value; } class PublicistA (line 372) | class PublicistA : public ProtectedA { class ProtectedB (line 379) | class ProtectedB { method ProtectedB (line 382) | ProtectedB() = default; method ProtectedB (line 383) | ProtectedB(const ProtectedB &) = delete; method foo (line 386) | virtual int foo() const { return value; } function PYBIND11_OVERRIDE (line 397) | PYBIND11_OVERRIDE(void *, ProtectedB, void_foo, ); } class BreaksBase (line 561) | class BreaksBase { method BreaksBase (line 564) | BreaksBase() = default; method BreaksBase (line 565) | BreaksBase(const BreaksBase &) = delete; class BreaksTramp (line 568) | class BreaksTramp : public BreaksBase {} type BreaksBase<-8> (line 654) | struct BreaksBase<-8> : BreaksBase<-6>, BreaksBase<-7> {} FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_class.py function test_obj_class_name (line 8) | def test_obj_class_name(): function test_repr (line 17) | def test_repr(): function test_instance (line 22) | def test_instance(msg): function test_instance_new (line 35) | def test_instance_new(msg): function test_type (line 43) | def test_type(): function test_type_of_py (line 58) | def test_type_of_py(): function test_type_of_classic (line 64) | def test_type_of_classic(): function test_type_of_py_nodelete (line 70) | def test_type_of_py_nodelete(): function test_as_type_py (line 75) | def test_as_type_py(): function test_docstrings (line 85) | def test_docstrings(doc): function test_qualname (line 112) | def test_qualname(doc): function test_inheritance (line 152) | def test_inheritance(msg): function test_inheritance_init (line 187) | def test_inheritance_init(msg): function test_automatic_upcasting (line 209) | def test_automatic_upcasting(): function test_isinstance (line 223) | def test_isinstance(): function test_mismatched_holder (line 229) | def test_mismatched_holder(): function test_override_static (line 249) | def test_override_static(): function test_implicit_conversion_life_support (line 260) | def test_implicit_conversion_life_support(): function test_operator_new_delete (line 268) | def test_operator_new_delete(capture): function test_bind_protected_functions (line 317) | def test_bind_protected_functions(): function test_brace_initialization (line 338) | def test_brace_initialization(): function test_class_refcount (line 352) | def test_class_refcount(): function test_reentrant_implicit_conversion_failure (line 372) | def test_reentrant_implicit_conversion_failure(msg): function test_error_after_conversions (line 387) | def test_error_after_conversions(): function test_aligned (line 395) | def test_aligned(): function test_final (line 403) | def test_final(): function test_non_final_final (line 414) | def test_non_final_final(): function test_exception_rvalue_abort (line 424) | def test_exception_rvalue_abort(): function test_multiple_instances_with_same_pointer (line 430) | def test_multiple_instances_with_same_pointer(capture): function test_base_and_derived_nested_scope (line 445) | def test_base_and_derived_nested_scope(): function test_register_duplicate_class (line 452) | def test_register_duplicate_class(): function test_pr4220_tripped_over_this (line 484) | def test_pr4220_tripped_over_this(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_cmake_build/embed.cpp function PYBIND11_EMBEDDED_MODULE (line 4) | PYBIND11_EMBEDDED_MODULE(test_cmake_build, m) { function main (line 8) | int main(int argc, char *argv[]) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_cmake_build/main.cpp function PYBIND11_MODULE (line 4) | PYBIND11_MODULE(test_cmake_build, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_const_name.cpp function TEST_SUBMODULE (line 47) | TEST_SUBMODULE(const_name, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_const_name.py function test_const_name (line 25) | def test_const_name(func, selector, expected): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_constants_and_functions.cpp type MyEnum (line 13) | enum MyEnum { EFirstEntry = 1, ESecondEntry } function test_function1 (line 15) | std::string test_function1() { return "test_function()"; } function test_function2 (line 17) | std::string test_function2(MyEnum k) { return "test_function(enum=" + st... function test_function3 (line 19) | std::string test_function3(int i) { return "test_function(" + std::to_st... function test_function4 (line 21) | py::str test_function4() { return "test_function()"; } function test_function4 (line 22) | py::str test_function4(char *) { return "test_function(char *)"; } function test_function4 (line 23) | py::str test_function4(int, float) { return "test_function(int, float)"; } function test_function4 (line 24) | py::str test_function4(float, int) { return "test_function(float, int)"; } function return_bytes (line 26) | py::bytes return_bytes() { function print_bytes (line 31) | std::string print_bytes(const py::bytes &bytes) { type test_exc_sp (line 44) | namespace test_exc_sp { function f1 (line 49) | int f1(int x) noexcept(true) { return x + 1; } function f1 (line 51) | int f1(int x) noexcept { return x + 1; } function f2 (line 53) | int f2(int x) noexcept(true) { return x + 2; } function f3 (line 54) | int f3(int x) noexcept(false) { return x + 3; } function f4 (line 59) | int f4(int x) throw() { return x + 4; } function PYBIND11_WARNING_POP (line 60) | PYBIND11_WARNING_POP function TEST_SUBMODULE (line 79) | TEST_SUBMODULE(constants_and_functions, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_constants_and_functions.py function test_constants (line 6) | def test_constants(): function test_function_overloading (line 10) | def test_function_overloading(): function test_bytes (line 23) | def test_bytes(): function test_exception_specifiers (line 27) | def test_exception_specifiers(): function test_function_record_leaks (line 44) | def test_function_record_leaks(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_copy_move.cpp type empty (line 17) | struct empty { method derived (line 18) | static const derived &get_one() { return instance_; } type lacking_copy_ctor (line 22) | struct lacking_copy_ctor : public empty { method lacking_copy_ctor (line 23) | lacking_copy_ctor() = default; method lacking_copy_ctor (line 24) | lacking_copy_ctor(const lacking_copy_ctor &other) = delete; type lacking_move_ctor (line 30) | struct lacking_move_ctor : public empty { method lacking_move_ctor (line 31) | lacking_move_ctor() = default; method lacking_move_ctor (line 32) | lacking_move_ctor(const lacking_move_ctor &other) = delete; method lacking_move_ctor (line 33) | lacking_move_ctor(lacking_move_ctor &&other) = delete; class MoveOnlyInt (line 40) | class MoveOnlyInt { method MoveOnlyInt (line 42) | MoveOnlyInt() { print_default_created(this); } method MoveOnlyInt (line 43) | explicit MoveOnlyInt(int v) : value{v} { print_created(this, value); } method MoveOnlyInt (line 44) | MoveOnlyInt(MoveOnlyInt &&m) noexcept { method MoveOnlyInt (line 48) | MoveOnlyInt &operator=(MoveOnlyInt &&m) noexcept { method MoveOnlyInt (line 53) | MoveOnlyInt(const MoveOnlyInt &) = delete; method MoveOnlyInt (line 54) | MoveOnlyInt &operator=(const MoveOnlyInt &) = delete; class MoveOrCopyInt (line 59) | class MoveOrCopyInt { method MoveOrCopyInt (line 61) | MoveOrCopyInt() { print_default_created(this); } method MoveOrCopyInt (line 62) | explicit MoveOrCopyInt(int v) : value{v} { print_created(this, value); } method MoveOrCopyInt (line 63) | MoveOrCopyInt(MoveOrCopyInt &&m) noexcept { method MoveOrCopyInt (line 67) | MoveOrCopyInt &operator=(MoveOrCopyInt &&m) noexcept { method MoveOrCopyInt (line 72) | MoveOrCopyInt(const MoveOrCopyInt &c) { method MoveOrCopyInt (line 77) | MoveOrCopyInt &operator=(const MoveOrCopyInt &c) { class CopyOnlyInt (line 86) | class CopyOnlyInt { method CopyOnlyInt (line 88) | CopyOnlyInt() { print_default_created(this); } method CopyOnlyInt (line 89) | explicit CopyOnlyInt(int v) : value{v} { print_created(this, value); } method CopyOnlyInt (line 90) | CopyOnlyInt(const CopyOnlyInt &c) { method CopyOnlyInt (line 95) | CopyOnlyInt &operator=(const CopyOnlyInt &c) { type type_caster (line 107) | struct type_caster { method load (line 109) | bool load(handle src, bool) { method handle (line 113) | static handle cast(const MoveOnlyInt &m, return_value_policy r, handle... type type_caster (line 119) | struct type_caster { method load (line 121) | bool load(handle src, bool) { method handle (line 125) | static handle cast(const MoveOrCopyInt &m, return_value_policy r, hand... type type_caster (line 131) | struct type_caster { method load (line 137) | bool load(handle src, bool) { method handle (line 141) | static handle cast(const CopyOnlyInt &m, return_value_policy r, handle... method handle (line 144) | static handle cast(const CopyOnlyInt *src, return_value_policy policy,... function TEST_SUBMODULE (line 158) | TEST_SUBMODULE(copy_move_policies, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_copy_move.py function test_lacking_copy_ctor (line 6) | def test_lacking_copy_ctor(): function test_lacking_move_ctor (line 12) | def test_lacking_move_ctor(): function test_move_and_copy_casts (line 18) | def test_move_and_copy_casts(): function test_move_and_copy_loads (line 45) | def test_move_and_copy_loads(): function test_move_and_copy_load_optional (line 78) | def test_move_and_copy_load_optional(): function test_private_op_new (line 109) | def test_private_op_new(): function test_move_fallback (line 119) | def test_move_fallback(): function test_pytype_rvalue_cast (line 128) | def test_pytype_rvalue_cast(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_custom_type_casters.cpp class ArgInspector1 (line 14) | class ArgInspector1 { class ArgInspector2 (line 18) | class ArgInspector2 { class ArgAlwaysConverts (line 22) | class ArgAlwaysConverts {} type PYBIND11_NAMESPACE (line 24) | namespace PYBIND11_NAMESPACE { type detail (line 25) | namespace detail { type type_caster (line 27) | struct type_caster { method load (line 36) | bool load(handle src, bool convert) { method handle (line 44) | static handle cast(const ArgInspector1 &src, return_value_policy, ... type type_caster (line 49) | struct type_caster { method load (line 53) | bool load(handle src, bool convert) { method handle (line 61) | static handle cast(const ArgInspector2 &src, return_value_policy, ... type type_caster (line 66) | struct type_caster { method load (line 70) | bool load(handle, bool convert) { return convert; } method handle (line 72) | static handle cast(const ArgAlwaysConverts &, return_value_policy,... type type_caster (line 98) | struct type_caster { method load (line 100) | bool load(handle, bool) { return true; } method handle (line 102) | static handle cast(const DestructionTester &, return_value_policy,... type type_caster (line 133) | struct type_caster : public other_lib::my_caster {} type detail (line 96) | namespace detail { type type_caster (line 27) | struct type_caster { method load (line 36) | bool load(handle src, bool convert) { method handle (line 44) | static handle cast(const ArgInspector1 &src, return_value_policy, ... type type_caster (line 49) | struct type_caster { method load (line 53) | bool load(handle src, bool convert) { method handle (line 61) | static handle cast(const ArgInspector2 &src, return_value_policy, ... type type_caster (line 66) | struct type_caster { method load (line 70) | bool load(handle, bool convert) { return convert; } method handle (line 72) | static handle cast(const ArgAlwaysConverts &, return_value_policy,... type type_caster (line 98) | struct type_caster { method load (line 100) | bool load(handle, bool) { return true; } method handle (line 102) | static handle cast(const DestructionTester &, return_value_policy,... type type_caster (line 133) | struct type_caster : public other_lib::my_caster {} type detail (line 131) | namespace detail { type type_caster (line 27) | struct type_caster { method load (line 36) | bool load(handle src, bool convert) { method handle (line 44) | static handle cast(const ArgInspector1 &src, return_value_policy, ... type type_caster (line 49) | struct type_caster { method load (line 53) | bool load(handle src, bool convert) { method handle (line 61) | static handle cast(const ArgInspector2 &src, return_value_policy, ... type type_caster (line 66) | struct type_caster { method load (line 70) | bool load(handle, bool convert) { return convert; } method handle (line 72) | static handle cast(const ArgAlwaysConverts &, return_value_policy,... type type_caster (line 98) | struct type_caster { method load (line 100) | bool load(handle, bool) { return true; } method handle (line 102) | static handle cast(const DestructionTester &, return_value_policy,... type type_caster (line 133) | struct type_caster : public other_lib::my_caster {} class DestructionTester (line 80) | class DestructionTester { method DestructionTester (line 82) | DestructionTester() { print_default_created(this); } method DestructionTester (line 84) | DestructionTester(const DestructionTester &) { print_copy_created(this... method DestructionTester (line 85) | DestructionTester(DestructionTester &&) noexcept { print_move_created(... method DestructionTester (line 86) | DestructionTester &operator=(const DestructionTester &) { method DestructionTester (line 90) | DestructionTester &operator=(DestructionTester &&) noexcept { type PYBIND11_NAMESPACE (line 95) | namespace PYBIND11_NAMESPACE { type detail (line 25) | namespace detail { type type_caster (line 27) | struct type_caster { method load (line 36) | bool load(handle src, bool convert) { method handle (line 44) | static handle cast(const ArgInspector1 &src, return_value_policy, ... type type_caster (line 49) | struct type_caster { method load (line 53) | bool load(handle src, bool convert) { method handle (line 61) | static handle cast(const ArgInspector2 &src, return_value_policy, ... type type_caster (line 66) | struct type_caster { method load (line 70) | bool load(handle, bool convert) { return convert; } method handle (line 72) | static handle cast(const ArgAlwaysConverts &, return_value_policy,... type type_caster (line 98) | struct type_caster { method load (line 100) | bool load(handle, bool) { return true; } method handle (line 102) | static handle cast(const DestructionTester &, return_value_policy,... type type_caster (line 133) | struct type_caster : public other_lib::my_caster {} type detail (line 96) | namespace detail { type type_caster (line 27) | struct type_caster { method load (line 36) | bool load(handle src, bool convert) { method handle (line 44) | static handle cast(const ArgInspector1 &src, return_value_policy, ... type type_caster (line 49) | struct type_caster { method load (line 53) | bool load(handle src, bool convert) { method handle (line 61) | static handle cast(const ArgInspector2 &src, return_value_policy, ... type type_caster (line 66) | struct type_caster { method load (line 70) | bool load(handle, bool convert) { return convert; } method handle (line 72) | static handle cast(const ArgAlwaysConverts &, return_value_policy,... type type_caster (line 98) | struct type_caster { method load (line 100) | bool load(handle, bool) { return true; } method handle (line 102) | static handle cast(const DestructionTester &, return_value_policy,... type type_caster (line 133) | struct type_caster : public other_lib::my_caster {} type detail (line 131) | namespace detail { type type_caster (line 27) | struct type_caster { method load (line 36) | bool load(handle src, bool convert) { method handle (line 44) | static handle cast(const ArgInspector1 &src, return_value_policy, ... type type_caster (line 49) | struct type_caster { method load (line 53) | bool load(handle src, bool convert) { method handle (line 61) | static handle cast(const ArgInspector2 &src, return_value_policy, ... type type_caster (line 66) | struct type_caster { method load (line 70) | bool load(handle, bool convert) { return convert; } method handle (line 72) | static handle cast(const ArgAlwaysConverts &, return_value_policy,... type type_caster (line 98) | struct type_caster { method load (line 100) | bool load(handle, bool) { return true; } method handle (line 102) | static handle cast(const DestructionTester &, return_value_policy,... type type_caster (line 133) | struct type_caster : public other_lib::my_caster {} type other_lib (line 110) | namespace other_lib { type MyType (line 111) | struct MyType {} type py (line 113) | namespace py {} type PYBIND11_NAMESPACE (line 115) | namespace PYBIND11_NAMESPACE {} type my_caster (line 120) | struct my_caster { method load (line 122) | bool load(py_::handle, bool) { return true; } method cast (line 124) | static py_::handle cast(const MyType &, py_::return_value_policy, py... type PYBIND11_NAMESPACE (line 130) | namespace PYBIND11_NAMESPACE { type detail (line 25) | namespace detail { type type_caster (line 27) | struct type_caster { method load (line 36) | bool load(handle src, bool convert) { method handle (line 44) | static handle cast(const ArgInspector1 &src, return_value_policy, ... type type_caster (line 49) | struct type_caster { method load (line 53) | bool load(handle src, bool convert) { method handle (line 61) | static handle cast(const ArgInspector2 &src, return_value_policy, ... type type_caster (line 66) | struct type_caster { method load (line 70) | bool load(handle, bool convert) { return convert; } method handle (line 72) | static handle cast(const ArgAlwaysConverts &, return_value_policy,... type type_caster (line 98) | struct type_caster { method load (line 100) | bool load(handle, bool) { return true; } method handle (line 102) | static handle cast(const DestructionTester &, return_value_policy,... type type_caster (line 133) | struct type_caster : public other_lib::my_caster {} type detail (line 96) | namespace detail { type type_caster (line 27) | struct type_caster { method load (line 36) | bool load(handle src, bool convert) { method handle (line 44) | static handle cast(const ArgInspector1 &src, return_value_policy, ... type type_caster (line 49) | struct type_caster { method load (line 53) | bool load(handle src, bool convert) { method handle (line 61) | static handle cast(const ArgInspector2 &src, return_value_policy, ... type type_caster (line 66) | struct type_caster { method load (line 70) | bool load(handle, bool convert) { return convert; } method handle (line 72) | static handle cast(const ArgAlwaysConverts &, return_value_policy,... type type_caster (line 98) | struct type_caster { method load (line 100) | bool load(handle, bool) { return true; } method handle (line 102) | static handle cast(const DestructionTester &, return_value_policy,... type type_caster (line 133) | struct type_caster : public other_lib::my_caster {} type detail (line 131) | namespace detail { type type_caster (line 27) | struct type_caster { method load (line 36) | bool load(handle src, bool convert) { method handle (line 44) | static handle cast(const ArgInspector1 &src, return_value_policy, ... type type_caster (line 49) | struct type_caster { method load (line 53) | bool load(handle src, bool convert) { method handle (line 61) | static handle cast(const ArgInspector2 &src, return_value_policy, ... type type_caster (line 66) | struct type_caster { method load (line 70) | bool load(handle, bool convert) { return convert; } method handle (line 72) | static handle cast(const ArgAlwaysConverts &, return_value_policy,... type type_caster (line 98) | struct type_caster { method load (line 100) | bool load(handle, bool) { return true; } method handle (line 102) | static handle cast(const DestructionTester &, return_value_policy,... type type_caster (line 133) | struct type_caster : public other_lib::my_caster {} function TEST_SUBMODULE (line 137) | TEST_SUBMODULE(custom_type_casters, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_custom_type_casters.py function test_noconvert_args (line 6) | def test_noconvert_args(msg): function test_custom_caster_destruction (line 95) | def test_custom_caster_destruction(): function test_custom_caster_other_lib (line 120) | def test_custom_caster_other_lib(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_custom_type_setup.cpp type OwnsPythonObjects (line 18) | struct OwnsPythonObjects { function TEST_SUBMODULE (line 23) | TEST_SUBMODULE(custom_type_setup, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_custom_type_setup.py function gc_tester (line 11) | def gc_tester(): function test_self_cycle (line 36) | def test_self_cycle(gc_tester): function test_indirect_cycle (line 44) | def test_indirect_cycle(gc_tester): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_docstring_options.cpp function TEST_SUBMODULE (line 12) | TEST_SUBMODULE(docstring_options, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_docstring_options.py function test_docstring_options (line 4) | def test_docstring_options(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_eigen_matrix.cpp function reset_ref (line 25) | void reset_ref(M &x) { function MatrixXdR (line 43) | MatrixXdR &get_rm() { function reset_refs (line 52) | void reset_refs() { function get_elem (line 58) | double get_elem(const Eigen::Ref &m) { return m(2... function adjust_matrix (line 63) | Eigen::MatrixXd adjust_matrix(MatrixArgType m) { type CustomOperatorNew (line 73) | struct CustomOperatorNew { method CustomOperatorNew (line 74) | CustomOperatorNew() = default; function TEST_SUBMODULE (line 82) | TEST_SUBMODULE(eigen_matrix, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_eigen_matrix.py function assert_equal_ref (line 20) | def assert_equal_ref(mat): function assert_sparse_equal_ref (line 24) | def assert_sparse_equal_ref(sparse_mat): function test_fixed (line 28) | def test_fixed(): function test_dense (line 37) | def test_dense(): function test_partially_fixed (line 46) | def test_partially_fixed(): function test_mutator_descriptors (line 84) | def test_mutator_descriptors(): function test_cpp_casting (line 116) | def test_cpp_casting(): function test_pass_readonly_array (line 139) | def test_pass_readonly_array(): function test_nonunit_stride_from_python (line 148) | def test_nonunit_stride_from_python(): function test_negative_stride_from_python (line 171) | def test_negative_stride_from_python(msg): function test_block_runtime_error_type_caster_eigen_ref_made_a_copy (line 220) | def test_block_runtime_error_type_caster_eigen_ref_made_a_copy(): function test_nonunit_stride_to_python (line 226) | def test_nonunit_stride_to_python(): function test_eigen_ref_to_python (line 240) | def test_eigen_ref_to_python(): function assign_both (line 249) | def assign_both(a1, a2, r, c, v): function array_copy_but_one (line 254) | def array_copy_but_one(a, r, c, v): function test_eigen_return_references (line 260) | def test_eigen_return_references(): function assert_keeps_alive (line 377) | def assert_keeps_alive(cl, method, *args): function test_eigen_keepalive (line 392) | def test_eigen_keepalive(): function test_eigen_ref_mutators (line 425) | def test_eigen_ref_mutators(): function test_numpy_ref_mutators (line 494) | def test_numpy_ref_mutators(): function test_both_ref_mutators (line 541) | def test_both_ref_mutators(): function test_nocopy_wrapper (line 585) | def test_nocopy_wrapper(): function test_eigen_ref_life_support (line 640) | def test_eigen_ref_life_support(): function test_special_matrix_objects (line 654) | def test_special_matrix_objects(): function test_dense_signature (line 669) | def test_dense_signature(doc): function test_named_arguments (line 696) | def test_named_arguments(): function test_sparse (line 717) | def test_sparse(): function test_sparse_signature (line 727) | def test_sparse_signature(doc): function test_issue738 (line 743) | def test_issue738(): function test_zero_length (line 758) | def test_zero_length(func, sizes): function test_issue1105 (line 763) | def test_issue1105(): function test_custom_operator_new (line 778) | def test_custom_operator_new(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_eigen_tensor.py function cleanup (line 34) | def cleanup(): function test_import_avoid_stl_array (line 44) | def test_import_avoid_stl_array(): function assert_equal_tensor_ref (line 49) | def assert_equal_tensor_ref(mat, writeable=True, modified=None): function test_reference_internal (line 61) | def test_reference_internal(m, member_name): function test_convert_tensor_to_py (line 103) | def test_convert_tensor_to_py(m, func_name): function test_bad_cpp_to_python_casts (line 109) | def test_bad_cpp_to_python_casts(m): function test_bad_python_to_cpp_casts (line 131) | def test_bad_python_to_cpp_casts(m): function test_references_actually_refer (line 193) | def test_references_actually_refer(m): function test_round_trip (line 209) | def test_round_trip(m): function test_round_trip_references_actually_refer (line 257) | def test_round_trip_references_actually_refer(m): function test_doc_string (line 269) | def test_doc_string(m, doc): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_embed/catch.cpp function main (line 20) | int main(int argc, char *argv[]) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_embed/external_module.cpp function PYBIND11_MODULE (line 9) | PYBIND11_MODULE(external_module, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_embed/test_interpreter.cpp function get_sys_path_size (line 17) | size_t get_sys_path_size() { class Widget (line 22) | class Widget { method Widget (line 24) | explicit Widget(std::string message) : message(std::move(message)) {} method the_message (line 27) | std::string the_message() const { return message; } class PyWidget (line 35) | class PyWidget final : public Widget { method the_answer (line 38) | int the_answer() const override { PYBIND11_OVERRIDE_PURE(int, Widget, ... method argv0 (line 39) | std::string argv0() const override { PYBIND11_OVERRIDE_PURE(std::strin... class test_override_cache_helper (line 42) | class test_override_cache_helper { method func (line 45) | virtual int func() { return 0; } method test_override_cache_helper (line 47) | test_override_cache_helper() = default; method test_override_cache_helper (line 50) | test_override_cache_helper &operator=(test_override_cache_helper const... method test_override_cache_helper (line 51) | test_override_cache_helper(test_override_cache_helper const &Copy) = d... class test_override_cache_helper_trampoline (line 54) | class test_override_cache_helper_trampoline : public test_override_cache... method func (line 55) | int func() override { PYBIND11_OVERRIDE(int, test_override_cache_helpe... function PYBIND11_EMBEDDED_MODULE (line 58) | PYBIND11_EMBEDDED_MODULE(widget_module, m) { function PYBIND11_EMBEDDED_MODULE (line 66) | PYBIND11_EMBEDDED_MODULE(trampoline_module, m) { function has_pybind11_internals_builtin (line 238) | bool has_pybind11_internals_builtin() { function has_pybind11_internals_static (line 243) | bool has_pybind11_internals_static() { type scope_exit (line 381) | struct scope_exit { method scope_exit (line 383) | explicit scope_exit(std::function f) noexcept : f_(std::move(f... FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_embed/test_interpreter.py class DerivedWidget (line 6) | class DerivedWidget(Widget): method __init__ (line 7) | def __init__(self, message): method the_answer (line 10) | def the_answer(self): method argv0 (line 13) | def argv0(self): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_embed/test_trampoline.py function func (line 4) | def func(): function func2 (line 12) | def func2(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_enum.cpp function TEST_SUBMODULE (line 12) | TEST_SUBMODULE(enums, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_enum.py function test_unscoped_enum (line 6) | def test_unscoped_enum(): function test_scoped_enum (line 128) | def test_scoped_enum(): function test_implicit_conversion (line 163) | def test_implicit_conversion(): function test_binary_operators (line 195) | def test_binary_operators(): function test_enum_to_int (line 217) | def test_enum_to_int(): function test_duplicate_enum_name (line 232) | def test_duplicate_enum_name(): function test_char_underlying_enum (line 238) | def test_char_underlying_enum(): # Issue #1331/PR #1334: function test_bool_underlying_enum (line 249) | def test_bool_underlying_enum(): function test_docstring_signatures (line 260) | def test_docstring_signatures(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_eval.cpp function TEST_SUBMODULE (line 16) | TEST_SUBMODULE(eval_, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_eval.py function test_evals (line 9) | def test_evals(capture): function test_eval_file (line 21) | def test_eval_file(): function test_eval_empty_globals (line 28) | def test_eval_empty_globals(): function test_eval_closure (line 36) | def test_eval_closure(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_exceptions.cpp class MyException (line 19) | class MyException : public std::exception { method MyException (line 21) | explicit MyException(const char *m) : message{m} {} class MyException2 (line 29) | class MyException2 : public std::exception { method MyException2 (line 31) | explicit MyException2(const char *m) : message{m} {} class MyException3 (line 39) | class MyException3 { method MyException3 (line 41) | explicit MyException3(const char *m) : message{m} {} method MyException3 (line 44) | MyException3(const MyException3 &) = default; method MyException3 (line 45) | MyException3(MyException3 &&) = default; method MyException3 (line 46) | MyException3 &operator=(const MyException3 &) = default; method MyException3 (line 47) | MyException3 &operator=(MyException3 &&) = default; class MyException4 (line 56) | class MyException4 : public std::exception { method MyException4 (line 58) | explicit MyException4(const char *m) : message{m} {} class MyException5 (line 66) | class MyException5 : public std::logic_error { method MyException5 (line 68) | explicit MyException5(const std::string &what) : std::logic_error(what... class MyException5_1 (line 72) | class MyException5_1 : public MyException5 { class MyException6 (line 77) | class MyException6 : public std::exception { method MyException6 (line 79) | explicit MyException6(const char *m) : message{m} {} type PythonCallInDestructor (line 86) | struct PythonCallInDestructor { method PythonCallInDestructor (line 87) | explicit PythonCallInDestructor(const py::dict &d) : d(d) {} type PythonAlreadySetInDestructor (line 93) | struct PythonAlreadySetInDestructor { method PythonAlreadySetInDestructor (line 94) | explicit PythonAlreadySetInDestructor(const py::str &s) : s(s) {} function TEST_SUBMODULE (line 108) | TEST_SUBMODULE(exceptions, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_exceptions.py function test_std_exception (line 11) | def test_std_exception(msg): function test_error_already_set (line 17) | def test_error_already_set(msg): function test_raise_from (line 30) | def test_raise_from(msg): function test_raise_from_already_set (line 37) | def test_raise_from_already_set(msg): function test_cross_module_exceptions (line 44) | def test_cross_module_exceptions(msg): function test_cross_module_exception_translator (line 80) | def test_cross_module_exception_translator(): function test_python_call_in_catch (line 86) | def test_python_call_in_catch(): function ignore_pytest_unraisable_warning (line 92) | def ignore_pytest_unraisable_warning(f): function test_python_alreadyset_in_destructor (line 104) | def test_python_alreadyset_in_destructor(monkeypatch, capsys): function test_exception_matches (line 133) | def test_exception_matches(): function test_custom (line 139) | def test_custom(msg): function test_nested_throws (line 194) | def test_nested_throws(capture): function test_throw_nested_exception (line 244) | def test_throw_nested_exception(): function test_invalid_repr (line 252) | def test_invalid_repr(): function test_local_translator (line 261) | def test_local_translator(msg): function test_error_already_set_message_with_unicode_surrogate (line 279) | def test_error_already_set_message_with_unicode_surrogate(): # Issue #4288 function test_error_already_set_message_with_malformed_utf8 (line 286) | def test_error_already_set_message_with_malformed_utf8(): class FlakyException (line 293) | class FlakyException(Exception): method __init__ (line 294) | def __init__(self, failure_point): method __str__ (line 299) | def __str__(self): function test_error_already_set_what_with_happy_exceptions (line 313) | def test_error_already_set_what_with_happy_exceptions( function test_flaky_exception_failure_point_init (line 322) | def test_flaky_exception_failure_point_init(): function test_flaky_exception_failure_point_str (line 339) | def test_flaky_exception_failure_point_str(): function test_cross_module_interleaved_error_already_set (line 361) | def test_cross_module_interleaved_error_already_set(): function test_error_already_set_double_restore (line 370) | def test_error_already_set_double_restore(): function test_pypy_oserror_normalization (line 380) | def test_pypy_oserror_normalization(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_factory_constructors.cpp class TestFactory1 (line 20) | class TestFactory1 { method TestFactory1 (line 22) | TestFactory1() : value("(empty)") { print_default_created(this); } method TestFactory1 (line 23) | explicit TestFactory1(int v) : value(std::to_string(v)) { print_create... method TestFactory1 (line 24) | explicit TestFactory1(std::string v) : value(std::move(v)) { print_cre... method TestFactory1 (line 28) | TestFactory1(TestFactory1 &&) = delete; method TestFactory1 (line 29) | TestFactory1(const TestFactory1 &) = delete; method TestFactory1 (line 30) | TestFactory1 &operator=(TestFactory1 &&) = delete; method TestFactory1 (line 31) | TestFactory1 &operator=(const TestFactory1 &) = delete; class TestFactory2 (line 35) | class TestFactory2 { method TestFactory2 (line 37) | TestFactory2() : value("(empty2)") { print_default_created(this); } method TestFactory2 (line 38) | explicit TestFactory2(int v) : value(std::to_string(v)) { print_create... method TestFactory2 (line 39) | explicit TestFactory2(std::string v) : value(std::move(v)) { print_cre... method TestFactory2 (line 42) | TestFactory2(TestFactory2 &&m) noexcept : value{std::move(m.value)} { method TestFactory2 (line 45) | TestFactory2 &operator=(TestFactory2 &&m) noexcept { class TestFactory3 (line 54) | class TestFactory3 { method TestFactory3 (line 57) | TestFactory3() : value("(empty3)") { print_default_created(this); } method TestFactory3 (line 58) | explicit TestFactory3(int v) : value(std::to_string(v)) { print_create... method TestFactory3 (line 61) | explicit TestFactory3(std::string v) : value(std::move(v)) { print_cre... method TestFactory3 (line 62) | TestFactory3(TestFactory3 &&m) noexcept : value{std::move(m.value)} { method TestFactory3 (line 65) | TestFactory3 &operator=(TestFactory3 &&m) noexcept { class TestFactory4 (line 74) | class TestFactory4 : public TestFactory3 { method TestFactory4 (line 76) | TestFactory4() : TestFactory3() { print_default_created(this); } method TestFactory4 (line 77) | explicit TestFactory4(int v) : TestFactory3(v) { print_created(this, v... class TestFactory5 (line 81) | class TestFactory5 : public TestFactory3 { method TestFactory5 (line 83) | explicit TestFactory5(int i) : TestFactory3(i) { print_created(this, i... class TestFactory6 (line 87) | class TestFactory6 { method TestFactory6 (line 93) | explicit TestFactory6(int i) : value{i} { print_created(this, i); } method TestFactory6 (line 94) | TestFactory6(TestFactory6 &&f) noexcept { method TestFactory6 (line 101) | TestFactory6(const TestFactory6 &f) { method get (line 109) | virtual int get() { return value; } method has_alias (line 110) | bool has_alias() const { return alias; } function PyTF6 (line 116) | explicit PyTF6(TestFactory6 &&base) : TestFactory6(std::move(base)) { function PyTF6 (line 120) | explicit PyTF6(int i) : TestFactory6(i) { function PyTF6 (line 124) | PyTF6(PyTF6 &&f) noexcept : TestFactory6(std::move(f)) { print_move_crea... function PyTF6 (line 125) | PyTF6(const PyTF6 &f) : TestFactory6(f) { print_copy_created(this); } function PyTF6 (line 126) | explicit PyTF6(std::string s) : TestFactory6((int) s.size()) { function PYBIND11_OVERRIDE (line 131) | PYBIND11_OVERRIDE(int, TestFactory6, get, /*no args*/); } function PyTF7 (line 167) | PyTF7(const PyTF7 &f) : TestFactory7(f) { print_copy_created(this); } function PYBIND11_OVERRIDE (line 169) | PYBIND11_OVERRIDE(int, TestFactory7, get, /*no args*/); } FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_factory_constructors.py function test_init_factory_basic (line 10) | def test_init_factory_basic(): function test_init_factory_signature (line 70) | def test_init_factory_signature(msg): function test_init_factory_casting (line 103) | def test_init_factory_casting(): function test_init_factory_alias (line 151) | def test_init_factory_alias(): function test_init_factory_dual (line 221) | def test_init_factory_dual(): function test_no_placement_new (line 303) | def test_no_placement_new(capture): function test_multiple_inheritance (line 329) | def test_multiple_inheritance(): function create_and_destroy (line 340) | def create_and_destroy(*args): function strip_comments (line 347) | def strip_comments(s): function test_reallocation_a (line 351) | def test_reallocation_a(capture, msg): function test_reallocation_b (line 373) | def test_reallocation_b(capture, msg): function test_reallocation_c (line 389) | def test_reallocation_c(capture, msg): function test_reallocation_d (line 403) | def test_reallocation_d(capture, msg): function test_reallocation_e (line 418) | def test_reallocation_e(capture, msg): function test_reallocation_f (line 433) | def test_reallocation_f(capture, msg): function test_reallocation_g (line 449) | def test_reallocation_g(capture, msg): function test_invalid_self (line 466) | def test_invalid_self(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_gil_scoped.cpp class VirtClass (line 21) | class VirtClass { method VirtClass (line 24) | VirtClass() = default; method VirtClass (line 25) | VirtClass(const VirtClass &) = delete; method virtual_func (line 26) | virtual void virtual_func() {} function PYBIND11_OVERRIDE_PURE (line 33) | PYBIND11_OVERRIDE_PURE(void, VirtClass, pure_virtual_func, ); FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_gil_scoped.py class ExtendedVirtClass (line 12) | class ExtendedVirtClass(m.VirtClass): method virtual_func (line 13) | def virtual_func(self): method pure_virtual_func (line 16) | def pure_virtual_func(self): function test_callback_py_obj (line 20) | def test_callback_py_obj(): function test_callback_std_func (line 24) | def test_callback_std_func(): function test_callback_virtual_func (line 28) | def test_callback_virtual_func(): function test_callback_pure_virtual_func (line 33) | def test_callback_pure_virtual_func(): function test_cross_module_gil_released (line 38) | def test_cross_module_gil_released(): function test_cross_module_gil_acquired (line 43) | def test_cross_module_gil_acquired(): function test_cross_module_gil_inner_custom_released (line 48) | def test_cross_module_gil_inner_custom_released(): function test_cross_module_gil_inner_custom_acquired (line 54) | def test_cross_module_gil_inner_custom_acquired(): function test_cross_module_gil_inner_pybind11_released (line 60) | def test_cross_module_gil_inner_pybind11_released(): function test_cross_module_gil_inner_pybind11_acquired (line 66) | def test_cross_module_gil_inner_pybind11_acquired(): function test_cross_module_gil_nested_custom_released (line 72) | def test_cross_module_gil_nested_custom_released(): function test_cross_module_gil_nested_custom_acquired (line 78) | def test_cross_module_gil_nested_custom_acquired(): function test_cross_module_gil_nested_pybind11_released (line 84) | def test_cross_module_gil_nested_pybind11_released(): function test_cross_module_gil_nested_pybind11_acquired (line 90) | def test_cross_module_gil_nested_pybind11_acquired(): function test_release_acquire (line 96) | def test_release_acquire(): function test_nested_acquire (line 100) | def test_nested_acquire(): function test_multi_acquire_release_cross_module (line 104) | def test_multi_acquire_release_cross_module(): function test_all_basic_tests_completeness (line 133) | def test_all_basic_tests_completeness(): function _intentional_deadlock (line 143) | def _intentional_deadlock(): function _run_in_process (line 150) | def _run_in_process(target, *args, **kwargs): function _run_in_threads (line 193) | def _run_in_threads(test_fn, num_threads, parallel): function test_run_in_process_one_thread (line 209) | def test_run_in_process_one_thread(test_fn): function test_run_in_process_multiple_threads_parallel (line 219) | def test_run_in_process_multiple_threads_parallel(test_fn): function test_run_in_process_multiple_threads_sequential (line 229) | def test_run_in_process_multiple_threads_sequential(test_fn): function test_run_in_process_direct (line 239) | def test_run_in_process_direct(test_fn): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_iostream.cpp function noisy_function (line 20) | void noisy_function(const std::string &msg, bool flush) { function noisy_funct_dual (line 28) | void noisy_funct_dual(const std::string &msg, const std::string &emsg) { type TestThread (line 36) | struct TestThread { method TestThread (line 37) | TestThread() : stop_{false} { method stop (line 59) | void stop() { stop_ = true; } method join (line 61) | void join() const { method sleep (line 66) | void sleep() { function TEST_SUBMODULE (line 75) | TEST_SUBMODULE(iostream, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_iostream.py function test_captured (line 7) | def test_captured(capsys): function test_captured_large_string (line 25) | def test_captured_large_string(capsys): function test_captured_utf8_2byte_offset0 (line 36) | def test_captured_utf8_2byte_offset0(capsys): function test_captured_utf8_2byte_offset1 (line 46) | def test_captured_utf8_2byte_offset1(capsys): function test_captured_utf8_3byte_offset0 (line 56) | def test_captured_utf8_3byte_offset0(capsys): function test_captured_utf8_3byte_offset1 (line 66) | def test_captured_utf8_3byte_offset1(capsys): function test_captured_utf8_3byte_offset2 (line 76) | def test_captured_utf8_3byte_offset2(capsys): function test_captured_utf8_4byte_offset0 (line 86) | def test_captured_utf8_4byte_offset0(capsys): function test_captured_utf8_4byte_offset1 (line 96) | def test_captured_utf8_4byte_offset1(capsys): function test_captured_utf8_4byte_offset2 (line 106) | def test_captured_utf8_4byte_offset2(capsys): function test_captured_utf8_4byte_offset3 (line 116) | def test_captured_utf8_4byte_offset3(capsys): function test_guard_capture (line 126) | def test_guard_capture(capsys): function test_series_captured (line 134) | def test_series_captured(capture): function test_flush (line 141) | def test_flush(capfd): function test_not_captured (line 160) | def test_not_captured(capfd): function test_err (line 179) | def test_err(capfd): function test_multi_captured (line 198) | def test_multi_captured(capfd): function test_dual (line 210) | def test_dual(capsys): function test_redirect (line 217) | def test_redirect(capfd): function test_redirect_err (line 242) | def test_redirect_err(capfd): function test_redirect_both (line 257) | def test_redirect_both(capfd): function test_threading (line 275) | def test_threading(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_kwargs_and_defaults.cpp function TEST_SUBMODULE (line 17) | TEST_SUBMODULE(kwargs_and_defaults, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_kwargs_and_defaults.py function test_function_signatures (line 6) | def test_function_signatures(doc): function test_named_arguments (line 28) | def test_named_arguments(msg): function test_arg_and_kwargs (line 57) | def test_arg_and_kwargs(): function test_mixed_args_and_kwargs (line 66) | def test_mixed_args_and_kwargs(msg): function test_keyword_only_args (line 190) | def test_keyword_only_args(msg): function test_positional_only_args (line 244) | def test_positional_only_args(msg): function test_signatures (line 333) | def test_signatures(): function test_args_refcount (line 344) | def test_args_refcount(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_local_bindings.cpp function TEST_SUBMODULE (line 20) | TEST_SUBMODULE(local_bindings, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_local_bindings.py function test_load_external (line 7) | def test_load_external(): function test_local_bindings (line 23) | def test_local_bindings(): function test_nonlocal_failure (line 50) | def test_nonlocal_failure(): function test_duplicate_local (line 61) | def test_duplicate_local(): function test_stl_bind_local (line 74) | def test_stl_bind_local(): function test_stl_bind_global (line 108) | def test_stl_bind_global(): function test_mixed_local_global (line 130) | def test_mixed_local_global(): function test_internal_locals_differ (line 175) | def test_internal_locals_differ(): function test_stl_caster_vs_stl_bind (line 183) | def test_stl_caster_vs_stl_bind(msg): function test_cross_module_calls (line 207) | def test_cross_module_calls(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_methods_and_attributes.cpp class ExampleMandA (line 19) | class ExampleMandA { method ExampleMandA (line 21) | ExampleMandA() { print_default_created(this); } method ExampleMandA (line 22) | explicit ExampleMandA(int value) : value(value) { print_created(this, ... method ExampleMandA (line 23) | ExampleMandA(const ExampleMandA &e) : value(e.value) { print_copy_crea... method ExampleMandA (line 24) | explicit ExampleMandA(std::string &&) {} method ExampleMandA (line 25) | ExampleMandA(ExampleMandA &&e) noexcept : value(e.value) { print_move_... method toString (line 28) | std::string toString() const { return "ExampleMandA[value=" + std::to_... method add1 (line 40) | void add1(ExampleMandA other) { value += other.value; } method add2 (line 41) | void add2(ExampleMandA &other) { value += other.value; } method add3 (line 42) | void add3(const ExampleMandA &other) { value += other.value; } method add4 (line 43) | void add4(ExampleMandA *other) { value += other->value; } method add5 (line 44) | void add5(const ExampleMandA *other) { value += other->value; } method add6 (line 46) | void add6(int other) { value += other; } method add7 (line 47) | void add7(int &other) { value += other; } method add8 (line 48) | void add8(const int &other) { value += other; } method add9 (line 50) | void add9(int *other) { value += *other; } method add10 (line 51) | void add10(const int *other) { value += *other; } method consume_str (line 53) | void consume_str(std::string &&) {} method ExampleMandA (line 55) | ExampleMandA self1() { return *this; } method ExampleMandA (line 56) | ExampleMandA &self2() { return *this; } method ExampleMandA (line 57) | const ExampleMandA &self3() const { return *this; } method ExampleMandA (line 58) | ExampleMandA *self4() { return this; } method ExampleMandA (line 59) | const ExampleMandA *self5() const { return this; } method internal1 (line 61) | int internal1() const { return value; } method overloaded (line 67) | py::str overloaded() { return "()"; } method overloaded (line 68) | py::str overloaded(int) { return "(int)"; } method overloaded (line 69) | py::str overloaded(int, float) { return "(int, float)"; } method overloaded (line 70) | py::str overloaded(float, int) { return "(float, int)"; } method overloaded (line 71) | py::str overloaded(int, int) { return "(int, int)"; } method overloaded (line 72) | py::str overloaded(float, float) { return "(float, float)"; } method overloaded (line 73) | py::str overloaded(int) const { return "(int) const"; } method overloaded (line 74) | py::str overloaded(int, float) const { return "(int, float) const"; } method overloaded (line 75) | py::str overloaded(float, int) const { return "(float, int) const"; } method overloaded (line 76) | py::str overloaded(int, int) const { return "(int, int) const"; } method overloaded (line 77) | py::str overloaded(float, float) const { return "(float, float) const"; } method overloaded (line 79) | static py::str overloaded(float) { return "static float"; } type TestProperties (line 84) | struct TestProperties { method get (line 88) | int get() const { return value; } method set (line 89) | void set(int v) { value = v; } method static_get (line 91) | static int static_get() { return static_value; } method static_set (line 92) | static void static_set(int v) { static_value = v; } type TestPropertiesOverride (line 96) | struct TestPropertiesOverride : TestProperties { type TestPropRVP (line 102) | struct TestPropRVP { method UserType (line 108) | const UserType &get1() const { return v1; } method UserType (line 109) | const UserType &get2() const { return v2; } method UserType (line 110) | UserType get_rvalue() const { return v2; } method set1 (line 111) | void set1(int v) { v1.set(v); } method set2 (line 112) | void set2(int v) { v2.set(v); } class NoneTester (line 118) | class NoneTester { function none1 (line 122) | int none1(const NoneTester &obj) { return obj.answer; } function none2 (line 123) | int none2(NoneTester *obj) { return obj ? obj->answer : -1; } function none3 (line 124) | int none3(std::shared_ptr &obj) { return obj ? obj->answer :... function none4 (line 125) | int none4(std::shared_ptr *obj) { return obj && *obj ? (*obj... function none5 (line 126) | int none5(const std::shared_ptr &obj) { return obj ? obj->an... class NoneCastTester (line 129) | class NoneCastTester { method NoneCastTester (line 132) | NoneCastTester() = default; method NoneCastTester (line 133) | explicit NoneCastTester(int v) : answer(v) {} type StrIssue (line 136) | struct StrIssue { method StrIssue (line 139) | StrIssue() = default; method StrIssue (line 140) | explicit StrIssue(int i) : val{i} {} class UnregisteredBase (line 145) | class UnregisteredBase { method do_nothing (line 147) | void do_nothing() const {} method increase_value (line 148) | void increase_value() { method set_int (line 152) | void set_int(int v) { rw_value = v; } method get_int (line 153) | int get_int() const { return rw_value; } method get_double (line 154) | double get_double() const { return ro_value; } class RegisteredDerived (line 158) | class RegisteredDerived : public UnregisteredBase { method sum (line 161) | double sum() const { return rw_value + ro_value; } type RefQualified (line 165) | struct RefQualified { method refQualified (line 168) | void refQualified(int other) & { value += other; } method constRefQualified (line 169) | int constRefQualified(int other) const & { return value + other; } type RValueRefParam (line 173) | struct RValueRefParam { method func1 (line 174) | std::size_t func1(std::string &&s) { return s.size(); } method func2 (line 175) | std::size_t func2(std::string &&s) const { return s.size(); } method func3 (line 176) | std::size_t func3(std::string &&s) & { return s.size(); } method func4 (line 177) | std::size_t func4(std::string &&s) const & { return s.size(); } function TEST_SUBMODULE (line 180) | TEST_SUBMODULE(methods_and_attributes, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_methods_and_attributes.py function test_methods_and_attributes (line 20) | def test_methods_and_attributes(): function test_copy_method (line 81) | def test_copy_method(): function test_properties (line 98) | def test_properties(): function test_static_properties (line 131) | def test_static_properties(): function test_static_cls (line 198) | def test_static_cls(): function test_metaclass_override (line 212) | def test_metaclass_override(): function test_no_mixed_overloads (line 230) | def test_no_mixed_overloads(): function test_property_return_value_policies (line 258) | def test_property_return_value_policies(access): function test_property_rvalue_policy (line 281) | def test_property_rvalue_policy(): function test_dynamic_attributes (line 295) | def test_dynamic_attributes(): function test_cyclic_gc (line 337) | def test_cyclic_gc(): function test_bad_arg_default (line 358) | def test_bad_arg_default(msg): function test_accepts_none (line 382) | def test_accepts_none(msg): function test_casts_none (line 444) | def test_casts_none(): function test_str_issue (line 455) | def test_str_issue(msg): function test_unregistered_base_implementations (line 474) | def test_unregistered_base_implementations(): function test_ref_qualified (line 492) | def test_ref_qualified(): function test_overload_ordering (line 503) | def test_overload_ordering(): function test_rvalue_ref_param (line 522) | def test_rvalue_ref_param(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_modules.cpp function TEST_SUBMODULE (line 14) | TEST_SUBMODULE(modules, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_modules.py function test_nested_modules (line 9) | def test_nested_modules(): function test_reference_internal (line 24) | def test_reference_internal(): function test_importing (line 58) | def test_importing(): function test_pydoc (line 67) | def test_pydoc(): function test_duplicate_registration (line 78) | def test_duplicate_registration(): function test_builtin_key_type (line 84) | def test_builtin_key_type(): function test_def_submodule_failures (line 98) | def test_def_submodule_failures(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_multiple_inheritance.cpp type BaseN (line 19) | struct BaseN { method BaseN (line 20) | explicit BaseN(int i) : i(i) {} type Vanilla (line 25) | struct Vanilla { method vanilla (line 26) | std::string vanilla() { return "Vanilla"; } type WithStatic1 (line 28) | struct WithStatic1 { method static_func1 (line 29) | static std::string static_func1() { return "WithStatic1"; } type WithStatic2 (line 32) | struct WithStatic2 { method static_func2 (line 33) | static std::string static_func2() { return "WithStatic2"; } type VanillaStaticMix1 (line 36) | struct VanillaStaticMix1 : Vanilla, WithStatic1, WithStatic2 { method static_func (line 37) | static std::string static_func() { return "VanillaStaticMix1"; } type VanillaStaticMix2 (line 40) | struct VanillaStaticMix2 : WithStatic1, Vanilla, WithStatic2 { method static_func (line 41) | static std::string static_func() { return "VanillaStaticMix2"; } type Base1a (line 50) | struct Base1a { method Base1a (line 51) | explicit Base1a(int i) : i(i) {} method foo (line 52) | int foo() const { return i; } type Base2a (line 55) | struct Base2a { method Base2a (line 56) | explicit Base2a(int i) : i(i) {} method bar (line 57) | int bar() const { return i; } type Base12a (line 60) | struct Base12a : Base1a, Base2a { method Base12a (line 61) | Base12a(int i, int j) : Base1a(i), Base2a(j) {} type I801B1 (line 66) | struct I801B1 { method I801B1 (line 68) | I801B1() = default; method I801B1 (line 69) | I801B1(const I801B1 &) = default; type I801B2 (line 72) | struct I801B2 { method I801B2 (line 74) | I801B2() = default; method I801B2 (line 75) | I801B2(const I801B2 &) = default; type I801C (line 78) | struct I801C : I801B1, I801B2 {} type I801D (line 79) | struct I801D : I801C {} function TEST_SUBMODULE (line 83) | TEST_SUBMODULE(multiple_inheritance, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_multiple_inheritance.py function test_multiple_inheritance_cpp (line 8) | def test_multiple_inheritance_cpp(): function test_multiple_inheritance_mix1 (line 16) | def test_multiple_inheritance_mix1(): function test_multiple_inheritance_mix2 (line 35) | def test_multiple_inheritance_mix2(): function test_multiple_inheritance_python (line 55) | def test_multiple_inheritance_python(): function test_multiple_inheritance_python_many_bases (line 160) | def test_multiple_inheritance_python_many_bases(): function test_multiple_inheritance_virtbase (line 229) | def test_multiple_inheritance_virtbase(): function test_mi_static_properties (line 240) | def test_mi_static_properties(): function test_mi_dynamic_attributes (line 265) | def test_mi_dynamic_attributes(): function test_mi_unaligned_base (line 273) | def test_mi_unaligned_base(): function test_mi_base_return (line 298) | def test_mi_base_return(): function test_diamond_inheritance (line 345) | def test_diamond_inheritance(): function test_pr3635_diamond_b (line 360) | def test_pr3635_diamond_b(): function test_pr3635_diamond_c (line 367) | def test_pr3635_diamond_c(): function test_pr3635_diamond_d0 (line 378) | def test_pr3635_diamond_d0(): function test_pr3635_diamond_d1 (line 394) | def test_pr3635_diamond_d1(): function test_pr3635_diamond_e (line 410) | def test_pr3635_diamond_e(): function test_pr3635_diamond_f (line 438) | def test_pr3635_diamond_f(): function test_python_inherit_from_mi (line 474) | def test_python_inherit_from_mi(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_numpy_array.cpp type DtypeCheck (line 19) | struct DtypeCheck { function DtypeCheck (line 25) | DtypeCheck get_dtype_check(const char *name) { function get_concrete_dtype_checks (line 33) | std::vector get_concrete_dtype_checks() { type DtypeSizeCheck (line 45) | struct DtypeSizeCheck { function DtypeSizeCheck (line 54) | DtypeSizeCheck get_dtype_size_check() { function get_platform_dtype_size_checks (line 63) | std::vector get_platform_dtype_size_checks() { function arr (line 82) | arr data(const arr &a, Ix... index) { function arr (line 87) | arr data_t(const arr_t &a, Ix... index) { function arr (line 92) | arr &mutate_data(arr &a, Ix... index) { function arr_t (line 101) | arr_t &mutate_data_t(arr_t &a, Ix... index) { function index_at (line 110) | py::ssize_t index_at(const arr &a, Ix... idx) { function index_at_t (line 114) | py::ssize_t index_at_t(const arr_t &a, Ix... idx) { function offset_at (line 118) | py::ssize_t offset_at(const arr &a, Ix... idx) { function offset_at_t (line 122) | py::ssize_t offset_at_t(const arr_t &a, Ix... idx) { function at_t (line 126) | py::ssize_t at_t(const arr_t &a, Ix... idx) { function arr_t (line 130) | arr_t &mutate_at_t(arr_t &a, Ix... idx) { function auxiliaries (line 142) | py::handle auxiliaries(T &&r, T2 &&r2) { function TEST_SUBMODULE (line 162) | TEST_SUBMODULE(numpy_array, sm) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_numpy_array.py function test_dtypes (line 9) | def test_dtypes(): function arr (line 26) | def arr(): function test_array_attributes (line 30) | def test_array_attributes(): function test_index_offset (line 72) | def test_index_offset(arr, args, ret): function test_dim_check_fail (line 79) | def test_dim_check_fail(arr): function test_data (line 104) | def test_data(arr, args, ret): function test_at_fail (line 113) | def test_at_fail(arr, dim): function test_at (line 120) | def test_at(arr): function test_mutate_readonly (line 128) | def test_mutate_readonly(arr): function test_mutate_data (line 140) | def test_mutate_data(arr): function test_bounds_check (line 154) | def test_bounds_check(arr): function test_make_c_f_array (line 173) | def test_make_c_f_array(): function test_make_empty_shaped_array (line 180) | def test_make_empty_shaped_array(): function test_wrap (line 189) | def test_wrap(): function test_numpy_view (line 245) | def test_numpy_view(capture): function test_cast_numpy_int64_to_uint64 (line 278) | def test_cast_numpy_int64_to_uint64(): function test_isinstance (line 283) | def test_isinstance(): function test_constructors (line 288) | def test_constructors(): function test_overload_resolution (line 304) | def test_overload_resolution(msg): function test_greedy_string_overload (line 374) | def test_greedy_string_overload(): function test_array_unchecked_fixed_dims (line 382) | def test_array_unchecked_fixed_dims(msg): function test_array_unchecked_dyn_dims (line 408) | def test_array_unchecked_dyn_dims(): function test_array_failure (line 420) | def test_array_failure(): function test_initializer_list (line 434) | def test_initializer_list(): function test_array_resize (line 441) | def test_array_resize(): function test_array_create_and_resize (line 467) | def test_array_create_and_resize(): function test_array_view (line 473) | def test_array_view(): function test_array_view_invalid (line 482) | def test_array_view_invalid(): function test_reshape_initializer_list (line 488) | def test_reshape_initializer_list(): function test_reshape_tuple (line 498) | def test_reshape_tuple(): function test_index_using_ellipsis (line 513) | def test_index_using_ellipsis(): function test_format_descriptors_for_floating_point_types (line 527) | def test_format_descriptors_for_floating_point_types(test_func): function test_argument_conversions (line 537) | def test_argument_conversions(forcecast, contiguity, noconvert): function test_dtype_refcount_leak (line 579) | def test_dtype_refcount_leak(): function test_round_trip_float (line 590) | def test_round_trip_float(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_numpy_dtypes.cpp type SimpleStruct (line 22) | struct SimpleStruct { type SimpleStructReordered (line 33) | struct SimpleStructReordered { type PackedStruct (line 40) | struct PackedStruct { type NestedStruct (line 51) | struct NestedStruct { type PartialStruct (line 60) | struct PartialStruct { type PartialNestedStruct (line 68) | struct PartialNestedStruct { type UnboundStruct (line 74) | struct UnboundStruct {} type StringStruct (line 76) | struct StringStruct { type ComplexStruct (line 81) | struct ComplexStruct { type ArrayStruct (line 90) | struct ArrayStruct { type StructWithUglyNames (line 97) | struct StructWithUglyNames { type E1 (line 102) | enum class E1 : int64_t { A = -1, B = 1 } type E2 (line 103) | enum E2 : uint8_t { X = 1, Y = 2 } type EnumStruct (line 105) | struct EnumStruct { function mkarray_via_buffer (line 151) | py::array mkarray_via_buffer(size_t n) { function create_recarray (line 165) | py::array_t create_recarray(size_t n) { function print_recarray (line 176) | py::list print_recarray(py::array_t arr) { function test_array_ctors (line 188) | py::array_t test_array_ctors(int i) { function test_dtype_ctors (line 273) | py::list test_dtype_ctors() { type A (line 298) | struct A {} type B (line 299) | struct B {} function TEST_SUBMODULE (line 301) | TEST_SUBMODULE(numpy_dtypes, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_numpy_dtypes.py function simple_dtype (line 12) | def simple_dtype(): function packed_dtype (line 24) | def packed_dtype(): function dt_fmt (line 28) | def dt_fmt(): function simple_dtype_fmt (line 39) | def simple_dtype_fmt(): function packed_dtype_fmt (line 45) | def packed_dtype_fmt(): function partial_ld_offset (line 53) | def partial_ld_offset(): function partial_dtype_fmt (line 62) | def partial_dtype_fmt(): function partial_nested_fmt (line 72) | def partial_nested_fmt(): function assert_equal (line 84) | def assert_equal(actual, expected_data, expected_dtype): function test_format_descriptors (line 88) | def test_format_descriptors(): function test_dtype (line 120) | def test_dtype(simple_dtype): function test_recarray (line 188) | def test_recarray(simple_dtype, packed_dtype): function test_array_constructors (line 261) | def test_array_constructors(): function test_string_array (line 271) | def test_string_array(): function test_array_array (line 287) | def test_array_array(): function test_enum_array (line 317) | def test_enum_array(): function test_complex_array (line 331) | def test_complex_array(): function test_signature (line 349) | def test_signature(doc): function test_scalar_conversion (line 356) | def test_scalar_conversion(): function test_vectorize (line 376) | def test_vectorize(): function test_cls_and_dtype_conversion (line 385) | def test_cls_and_dtype_conversion(simple_dtype): function test_register_dtype (line 425) | def test_register_dtype(): function test_str_leak (line 432) | def test_str_leak(): function test_compare_buffer_info (line 445) | def test_compare_buffer_info(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_numpy_vectorize.cpp function my_func (line 17) | double my_func(int x, float y, double z) { function TEST_SUBMODULE (line 22) | TEST_SUBMODULE(numpy_vectorize, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_numpy_vectorize.py function test_vectorize (line 8) | def test_vectorize(capture): function test_type_selection (line 138) | def test_type_selection(): function test_docs (line 147) | def test_docs(doc): function test_trivial_broadcasting (line 156) | def test_trivial_broadcasting(): function test_passthrough_arguments (line 207) | def test_passthrough_arguments(doc): function test_method_vectorization (line 240) | def test_method_vectorization(): function test_array_collapse (line 247) | def test_array_collapse(): function test_vectorized_noreturn (line 258) | def test_vectorized_noreturn(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_opaque_types.cpp function TEST_SUBMODULE (line 25) | TEST_SUBMODULE(opaque_types, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_opaque_types.py function test_string_list (line 7) | def test_string_list(): function test_pointers (line 27) | def test_pointers(msg): function test_unions (line 53) | def test_unions(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_operator_overloading.cpp class Vector2 (line 18) | class Vector2 { method Vector2 (line 20) | Vector2(float x, float y) : x(x), y(y) { print_created(this, toString(... method Vector2 (line 21) | Vector2(const Vector2 &v) : x(v.x), y(v.y) { print_copy_created(this); } method Vector2 (line 22) | Vector2(Vector2 &&v) noexcept : x(v.x), y(v.y) { method Vector2 (line 26) | Vector2 &operator=(const Vector2 &v) { method Vector2 (line 32) | Vector2 &operator=(Vector2 &&v) noexcept { method toString (line 41) | std::string toString() const { method Vector2 (line 45) | Vector2 operator-() const { return Vector2(-x, -y); } method Vector2 (line 46) | Vector2 operator+(const Vector2 &v) const { return Vector2(x + v.x, y ... method Vector2 (line 47) | Vector2 operator-(const Vector2 &v) const { return Vector2(x - v.x, y ... method Vector2 (line 48) | Vector2 operator-(float value) const { return Vector2(x - value, y - v... method Vector2 (line 49) | Vector2 operator+(float value) const { return Vector2(x + value, y + v... method Vector2 (line 50) | Vector2 operator*(float value) const { return Vector2(x * value, y * v... method Vector2 (line 51) | Vector2 operator/(float value) const { return Vector2(x / value, y / v... method Vector2 (line 52) | Vector2 operator*(const Vector2 &v) const { return Vector2(x * v.x, y ... method Vector2 (line 53) | Vector2 operator/(const Vector2 &v) const { return Vector2(x / v.x, y ... method Vector2 (line 54) | Vector2 &operator+=(const Vector2 &v) { method Vector2 (line 59) | Vector2 &operator-=(const Vector2 &v) { method Vector2 (line 64) | Vector2 &operator*=(float v) { method Vector2 (line 69) | Vector2 &operator/=(float v) { method Vector2 (line 74) | Vector2 &operator*=(const Vector2 &v) { method Vector2 (line 79) | Vector2 &operator/=(const Vector2 &v) { method Vector2 (line 85) | Vector2 operator+(float f, const Vector2 &v) { return Vector2(f + v.x,... method Vector2 (line 86) | Vector2 operator-(float f, const Vector2 &v) { return Vector2(f - v.x,... method Vector2 (line 87) | Vector2 operator*(float f, const Vector2 &v) { return Vector2(f * v.x,... method Vector2 (line 88) | Vector2 operator/(float f, const Vector2 &v) { return Vector2(f / v.x,... class C1 (line 97) | class C1 {} class C2 (line 98) | class C2 {} type HashMe (line 105) | struct HashMe { type std (line 116) | namespace std { type hash (line 118) | struct hash { type hash (line 125) | struct hash { function abs (line 133) | std::string abs(const Vector2 &) { return "abs(Vector2)"; } function TEST_SUBMODULE (line 150) | TEST_SUBMODULE(operators, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_operator_overloading.py function test_operator_overloading (line 7) | def test_operator_overloading(): function test_operators_notimplemented (line 84) | def test_operators_notimplemented(): function test_nested (line 94) | def test_nested(): function test_overriding_eq_reset_hash (line 132) | def test_overriding_eq_reset_hash(): function test_return_set_of_unhashable (line 148) | def test_return_set_of_unhashable(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_pickling.cpp type exercise_trampoline (line 17) | namespace exercise_trampoline { type SimpleBase (line 19) | struct SimpleBase { method SimpleBase (line 24) | SimpleBase() = default; method SimpleBase (line 25) | SimpleBase(const SimpleBase &) = default; type SimpleBaseTrampoline (line 28) | struct SimpleBaseTrampoline : SimpleBase {} type SimpleCppDerived (line 30) | struct SimpleCppDerived : SimpleBase {} function wrap (line 32) | void wrap(py::module m) { function TEST_SUBMODULE (line 63) | TEST_SUBMODULE(pickling, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_pickling.py function test_pickle_simple_callable (line 10) | def test_pickle_simple_callable(): function test_roundtrip (line 25) | def test_roundtrip(cls_name): function test_roundtrip_with_dict (line 40) | def test_roundtrip_with_dict(cls_name): function test_enum_pickle (line 53) | def test_enum_pickle(): class SimplePyDerived (line 63) | class SimplePyDerived(m.SimpleBase): function test_roundtrip_simple_py_derived (line 67) | def test_roundtrip_simple_py_derived(): function test_roundtrip_simple_cpp_derived (line 78) | def test_roundtrip_simple_cpp_derived(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_pytypes.cpp type external (line 14) | namespace external { type detail (line 15) | namespace detail { function check (line 16) | bool check(PyObject *o) { return PyFloat_Check(o) != 0; } function PyObject (line 18) | PyObject *conv(PyObject *o) { function PyObject (line 31) | PyObject *default_constructed() { return PyFloat_FromDouble(0.0); } class float_ (line 33) | class float_ : public py::object { method float_ (line 36) | float_() : py::object(external::detail::default_constructed(), stole... method get_value (line 38) | double get_value() const { return PyFloat_AsDouble(this->ptr()); } type implicit_conversion_from_0_to_handle (line 42) | namespace implicit_conversion_from_0_to_handle { function pure_compile_tests_for_handle_from_PyObject_pointers (line 48) | void pure_compile_tests_for_handle_from_PyObject_pointers() { type handle_from_move_only_type_with_operator_PyObject (line 66) | namespace handle_from_move_only_type_with_operator_PyObject { type operator_ncnst (line 70) | struct operator_ncnst { method operator_ncnst (line 71) | operator_ncnst() = default; method operator_ncnst (line 72) | operator_ncnst(operator_ncnst &&) = default; type operator_const (line 76) | struct operator_const { method operator_const (line 77) | operator_const() = default; method operator_const (line 78) | operator_const(operator_const &&) = default; function from_ncnst (line 82) | bool from_ncnst() { function from_const (line 88) | bool from_const() { function m_defs (line 94) | void m_defs(py::module_ &m) { function TEST_SUBMODULE (line 101) | TEST_SUBMODULE(pytypes, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_pytypes.py function test_obj_class_name (line 12) | def test_obj_class_name(): function test_handle_from_move_only_type_with_operator_PyObject (line 18) | def test_handle_from_move_only_type_with_operator_PyObject(): # noqa: N802 function test_bool (line 23) | def test_bool(doc): function test_int (line 27) | def test_int(doc): function test_iterator (line 31) | def test_iterator(doc): function test_from_iterable (line 44) | def test_from_iterable(pytype, from_iter_func): function test_iterable (line 51) | def test_iterable(doc): function test_float (line 55) | def test_float(doc): function test_list (line 59) | def test_list(capture, doc): function test_none (line 90) | def test_none(capture, doc): function test_set (line 95) | def test_set(capture, doc): function test_frozenset (line 127) | def test_frozenset(capture, doc): function test_dict (line 152) | def test_dict(capture, doc): class CustomContains (line 177) | class CustomContains: method __contains__ (line 180) | def __contains__(self, m): function test_unhashable_exceptions (line 193) | def test_unhashable_exceptions(arg, func): function test_tuple (line 202) | def test_tuple(): function test_simple_namespace (line 209) | def test_simple_namespace(): function test_str (line 217) | def test_str(doc): function test_surrogate_pairs_unicode_error (line 261) | def test_surrogate_pairs_unicode_error(func): function test_bytes (line 267) | def test_bytes(doc): function test_bytearray (line 276) | def test_bytearray(doc): function test_capsule (line 283) | def test_capsule(capture): function test_accessors (line 359) | def test_accessors(): function test_accessor_moves (line 398) | def test_accessor_moves(): function test_constructors (line 406) | def test_constructors(): function test_non_converting_constructors (line 443) | def test_non_converting_constructors(): function test_pybind11_str_raw_str (line 460) | def test_pybind11_str_raw_str(): function test_implicit_casting (line 498) | def test_implicit_casting(): function test_print (line 518) | def test_print(capture): function test_hash (line 543) | def test_hash(): function test_number_protocol (line 559) | def test_number_protocol(): function test_list_slicing (line 581) | def test_list_slicing(): function test_issue2361 (line 586) | def test_issue2361(): function test_memoryview (line 605) | def test_memoryview(method, args, fmt, expected_view): function test_memoryview_refcount (line 620) | def test_memoryview_refcount(method): function test_memoryview_from_buffer_empty_shape (line 629) | def test_memoryview_from_buffer_empty_shape(): function test_test_memoryview_from_buffer_invalid_strides (line 636) | def test_test_memoryview_from_buffer_invalid_strides(): function test_test_memoryview_from_buffer_nullptr (line 641) | def test_test_memoryview_from_buffer_nullptr(): function test_memoryview_from_memory (line 646) | def test_memoryview_from_memory(): function test_builtin_functions (line 653) | def test_builtin_functions(): function test_isinstance_string_types (line 663) | def test_isinstance_string_types(): function test_pass_bytes_or_unicode_to_string_types (line 674) | def test_pass_bytes_or_unicode_to_string_types(): function test_weakref (line 704) | def test_weakref(create_weakref, create_weakref_with_callback): function test_weakref_err (line 741) | def test_weakref_err(create_weakref, has_callback): function test_cpp_iterators (line 757) | def test_cpp_iterators(): function test_implementation_details (line 763) | def test_implementation_details(): function test_external_float_ (line 784) | def test_external_float_(): function test_tuple_rvalue_getter (line 789) | def test_tuple_rvalue_getter(): function test_list_rvalue_getter (line 795) | def test_list_rvalue_getter(): function test_populate_dict_rvalue (line 801) | def test_populate_dict_rvalue(): function test_populate_obj_str_attrs (line 807) | def test_populate_obj_str_attrs(): function test_inplace_append (line 819) | def test_inplace_append(a, b): function test_inplace_subtract (line 825) | def test_inplace_subtract(a, b): function test_inplace_multiply (line 831) | def test_inplace_multiply(a, b): function test_inplace_divide (line 837) | def test_inplace_divide(a, b): function test_inplace_or (line 854) | def test_inplace_or(a, b): function test_inplace_and (line 871) | def test_inplace_and(a, b): function test_inplace_lshift (line 877) | def test_inplace_lshift(a, b): function test_inplace_rshift (line 883) | def test_inplace_rshift(a, b): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_sequences_and_iterators.cpp class NonZeroIterator (line 26) | class NonZeroIterator { method NonZeroIterator (line 30) | explicit NonZeroIterator(const T *ptr) : ptr_(ptr) {} method T (line 31) | const T &operator*() const { return *ptr_; } method NonZeroIterator (line 32) | NonZeroIterator &operator++() { class NonZeroSentinel (line 38) | class NonZeroSentinel {} class NonRefIterator (line 47) | class NonRefIterator { method NonRefIterator (line 51) | explicit NonRefIterator(const T *ptr) : ptr_(ptr) {} method T (line 52) | T operator*() const { return T(*ptr_); } method NonRefIterator (line 53) | NonRefIterator &operator++() { class NonCopyableInt (line 60) | class NonCopyableInt { method NonCopyableInt (line 62) | explicit NonCopyableInt(int value) : value_(value) {} method NonCopyableInt (line 63) | NonCopyableInt(const NonCopyableInt &) = delete; method NonCopyableInt (line 64) | NonCopyableInt(NonCopyableInt &&other) noexcept : value_(other.value_) { method NonCopyableInt (line 67) | NonCopyableInt &operator=(const NonCopyableInt &) = delete; method NonCopyableInt (line 68) | NonCopyableInt &operator=(NonCopyableInt &&other) noexcept { method get (line 73) | int get() const { return value_; } method set (line 74) | void set(int value) { value_ = value; } function test_random_access_iterator (line 85) | py::list test_random_access_iterator(PythonType x) { function TEST_SUBMODULE (line 128) | TEST_SUBMODULE(sequences_and_iterators, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_sequences_and_iterators.py function test_slice_constructors (line 8) | def test_slice_constructors(): function test_slice_constructors_explicit_optional (line 14) | def test_slice_constructors_explicit_optional(): function test_generalized_iterators (line 19) | def test_generalized_iterators(): function test_nonref_iterators (line 44) | def test_nonref_iterators(): function test_generalized_iterators_simple (line 51) | def test_generalized_iterators_simple(): function test_iterator_referencing (line 61) | def test_iterator_referencing(): function test_sliceable (line 85) | def test_sliceable(): function test_sequence (line 98) | def test_sequence(): function test_sequence_length (line 153) | def test_sequence_length(): function test_map_iterator (line 173) | def test_map_iterator(): function test_python_iterator_in_cpp (line 197) | def test_python_iterator_in_cpp(): function test_iterator_passthrough (line 229) | def test_iterator_passthrough(): function test_iterator_rvp (line 237) | def test_iterator_rvp(): function test_carray_iterator (line 246) | def test_carray_iterator(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_smart_ptr.cpp class huge_unique_ptr (line 20) | class huge_unique_ptr { method huge_unique_ptr (line 25) | explicit huge_unique_ptr(T *p) : ptr(p) {} method T (line 26) | T *get() { return ptr.get(); } class custom_unique_ptr (line 31) | class custom_unique_ptr { method custom_unique_ptr (line 35) | explicit custom_unique_ptr(T *p) : impl(p) {} method T (line 36) | T *get() const { return impl.get(); } method T (line 37) | T *release_ptr() { return impl.release(); } class shared_ptr_with_addressof_operator (line 44) | class shared_ptr_with_addressof_operator { method shared_ptr_with_addressof_operator (line 48) | shared_ptr_with_addressof_operator() = default; method shared_ptr_with_addressof_operator (line 49) | explicit shared_ptr_with_addressof_operator(T *p) : impl(p) {} method T (line 50) | T *get() const { return impl.get(); } method T (line 51) | T **operator&() { throw std::logic_error("Call of overloaded operator&... class unique_ptr_with_addressof_operator (line 58) | class unique_ptr_with_addressof_operator { method unique_ptr_with_addressof_operator (line 62) | unique_ptr_with_addressof_operator() = default; method unique_ptr_with_addressof_operator (line 63) | explicit unique_ptr_with_addressof_operator(T *p) : impl(p) {} method T (line 64) | T *get() const { return impl.get(); } method T (line 65) | T *release_ptr() { return impl.release(); } method T (line 66) | T **operator&() { throw std::logic_error("Call of overloaded operator&... class MyObject1 (line 70) | class MyObject1 : public Object { method MyObject1 (line 72) | explicit MyObject1(int value) : value(value) { print_created(this, toS... method toString (line 73) | std::string toString() const override { return "MyObject1[" + std::to_... class MyObject2 (line 83) | class MyObject2 { method MyObject2 (line 85) | MyObject2(const MyObject2 &) = default; method MyObject2 (line 86) | explicit MyObject2(int value) : value(value) { print_created(this, toS... method toString (line 87) | std::string toString() const { return "MyObject2[" + std::to_string(va... class MyObject3 (line 95) | class MyObject3 : public std::enable_shared_from_this { method MyObject3 (line 97) | MyObject3(const MyObject3 &) = default; method MyObject3 (line 98) | explicit MyObject3(int value) : value(value) { print_created(this, toS... method toString (line 99) | std::string toString() const { return "MyObject3[" + std::to_string(va... class MyObject4 (line 108) | class MyObject4 method MyObject4 (line 112) | explicit MyObject4(int value) : value{value} { method cleanupAllInstances (line 118) | static void cleanupAllInstances() { class MyObject4 (line 110) | class MyObject4 { method MyObject4 (line 112) | explicit MyObject4(int value) : value{value} { method cleanupAllInstances (line 118) | static void cleanupAllInstances() { class MyObject4a (line 136) | class MyObject4a method MyObject4a (line 140) | explicit MyObject4a(int i) : value{i} { method cleanupAllInstances (line 146) | static void cleanupAllInstances() { class MyObject4a (line 138) | class MyObject4a { method MyObject4a (line 140) | explicit MyObject4a(int i) : value{i} { method cleanupAllInstances (line 146) | static void cleanupAllInstances() { class MyObject4b (line 162) | class MyObject4b : public MyObject4a { method MyObject4b (line 164) | explicit MyObject4b(int i) : MyObject4a(i) { print_created(this); } class MyObject5 (line 169) | class MyObject5 { // managed by huge_unique_ptr method MyObject5 (line 171) | explicit MyObject5(int value) : value{value} { print_created(this); } type SharedPtrRef (line 177) | struct SharedPtrRef { type A (line 178) | struct A { method A (line 179) | A() { print_created(this); } method A (line 180) | A(const A &) { print_copy_created(this); } method A (line 181) | A(A &&) noexcept { print_move_created(this); } type SharedFromThisRef (line 190) | struct SharedFromThisRef { type B (line 191) | struct B : std::enable_shared_from_this { method B (line 192) | B() { print_created(this); } method B (line 194) | B(const B &) : std::enable_shared_from_this() { print_copy_create... method B (line 195) | B(B &&) noexcept : std::enable_shared_from_this() { print_move_cr... type SharedFromThisVBase (line 204) | struct SharedFromThisVBase : std::enable_shared_from_this &e) { l.push_back(e); } type PYBIND11_NAMESPACE (line 269) | namespace PYBIND11_NAMESPACE { type detail (line 270) | namespace detail { type holder_helper> (line 272) | struct holder_helper> { method T (line 273) | static const T *get(const ref &p) { return p.get_ptr(); } function TEST_SUBMODULE (line 287) | TEST_SUBMODULE(smart_ptr, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_smart_ptr.py function test_smart_ptr (line 7) | def test_smart_ptr(capture): function test_smart_ptr_refcounting (line 115) | def test_smart_ptr_refcounting(): function test_unique_nodelete (line 119) | def test_unique_nodelete(): function test_unique_nodelete4a (line 130) | def test_unique_nodelete4a(): function test_unique_deleter (line 141) | def test_unique_deleter(): function test_large_holder (line 157) | def test_large_holder(): function test_shared_ptr_and_references (line 166) | def test_shared_ptr_and_references(): function test_shared_ptr_from_this_and_references (line 197) | def test_shared_ptr_from_this_and_references(): function test_move_only_holder (line 243) | def test_move_only_holder(): function test_holder_with_addressof_operator (line 254) | def test_holder_with_addressof_operator(): function test_move_only_holder_with_addressof_operator (line 284) | def test_move_only_holder_with_addressof_operator(): function test_smart_ptr_from_default (line 298) | def test_smart_ptr_from_default(): function test_shared_ptr_gc (line 308) | def test_shared_ptr_gc(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_stl.cpp type PYBIND11_NAMESPACE (line 26) | namespace PYBIND11_NAMESPACE { type detail (line 27) | namespace detail { type type_caster> (line 29) | struct type_caster> : optional_caster (line 32) | struct type_caster : void_caster {} type visit_helper (line 52) | struct visit_helper { method call (line 54) | static auto call(Args &&...args) -> decltype(boost::apply_visitor(... type type_caster> (line 165) | struct type_caster> type detail (line 47) | namespace detail { type type_caster> (line 29) | struct type_caster> : optional_caster (line 32) | struct type_caster : void_caster {} type visit_helper (line 52) | struct visit_helper { method call (line 54) | static auto call(Args &&...args) -> decltype(boost::apply_visitor(... type type_caster> (line 165) | struct type_caster> type detail (line 163) | namespace detail { type type_caster> (line 29) | struct type_caster> : optional_caster (line 32) | struct type_caster : void_caster {} type visit_helper (line 52) | struct visit_helper { method call (line 54) | static auto call(Args &&...args) -> decltype(boost::apply_visitor(... type type_caster> (line 165) | struct type_caster> type PYBIND11_NAMESPACE (line 46) | namespace PYBIND11_NAMESPACE { type detail (line 27) | namespace detail { type type_caster> (line 29) | struct type_caster> : optional_caster (line 32) | struct type_caster : void_caster {} type visit_helper (line 52) | struct visit_helper { method call (line 54) | static auto call(Args &&...args) -> decltype(boost::apply_visitor(... type type_caster> (line 165) | struct type_caster> type detail (line 47) | namespace detail { type type_caster> (line 29) | struct type_caster> : optional_caster (line 32) | struct type_caster : void_caster {} type visit_helper (line 52) | struct visit_helper { method call (line 54) | static auto call(Args &&...args) -> decltype(boost::apply_visitor(... type type_caster> (line 165) | struct type_caster> type detail (line 163) | namespace detail { type type_caster> (line 29) | struct type_caster> : optional_caster (line 32) | struct type_caster : void_caster {} type visit_helper (line 52) | struct visit_helper { method call (line 54) | static auto call(Args &&...args) -> decltype(boost::apply_visitor(... type type_caster> (line 165) | struct type_caster> type type_caster> (line 49) | struct type_caster> : variant_caster (line 73) | struct hash { type OptionalHolder (line 79) | struct OptionalHolder { method OptionalHolder (line 81) | OptionalHolder(){} method member_initialized (line 82) | bool member_initialized() const { return member && member->initialized; } type EnumType (line 86) | enum class EnumType { class OptionalProperties (line 96) | class OptionalProperties { method OptionalProperties (line 100) | OptionalProperties() : value(EnumType::kSet) {} method OptionalEnumValue (line 108) | OptionalEnumValue &access_by_ref() { return value; } method OptionalEnumValue (line 109) | OptionalEnumValue access_by_copy() { return value; } class ReferenceSensitiveOptional (line 122) | class ReferenceSensitiveOptional { method ReferenceSensitiveOptional (line 126) | ReferenceSensitiveOptional() = default; method ReferenceSensitiveOptional (line 128) | ReferenceSensitiveOptional(const T &value) : storage{value} {} method ReferenceSensitiveOptional (line 130) | ReferenceSensitiveOptional(T &&value) : storage{std::move(value)} {} method ReferenceSensitiveOptional (line 131) | ReferenceSensitiveOptional &operator=(const T &value) { method ReferenceSensitiveOptional (line 135) | ReferenceSensitiveOptional &operator=(T &&value) { method T (line 141) | T &emplace(Args &&...args) { method T (line 147) | const T &value() const noexcept { method T (line 152) | const T &operator*() const noexcept { return value(); } method T (line 154) | const T *operator->() const noexcept { return &value(); } type PYBIND11_NAMESPACE (line 162) | namespace PYBIND11_NAMESPACE { type detail (line 27) | namespace detail { type type_caster> (line 29) | struct type_caster> : optional_caster (line 32) | struct type_caster : void_caster {} type visit_helper (line 52) | struct visit_helper { method call (line 54) | static auto call(Args &&...args) -> decltype(boost::apply_visitor(... type type_caster> (line 165) | struct type_caster> type detail (line 47) | namespace detail { type type_caster> (line 29) | struct type_caster> : optional_caster (line 32) | struct type_caster : void_caster {} type visit_helper (line 52) | struct visit_helper { method call (line 54) | static auto call(Args &&...args) -> decltype(boost::apply_visitor(... type type_caster> (line 165) | struct type_caster> type detail (line 163) | namespace detail { type type_caster> (line 29) | struct type_caster> : optional_caster (line 32) | struct type_caster : void_caster {} type visit_helper (line 52) | struct visit_helper { method call (line 54) | static auto call(Args &&...args) -> decltype(boost::apply_visitor(... type type_caster> (line 165) | struct type_caster> function TEST_SUBMODULE (line 170) | TEST_SUBMODULE(stl, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_stl.py function test_vector (line 7) | def test_vector(doc): function test_deque (line 26) | def test_deque(doc): function test_array (line 35) | def test_array(doc): function test_valarray (line 46) | def test_valarray(doc): function test_map (line 57) | def test_map(doc): function test_set (line 70) | def test_set(doc): function test_recursive_casting (line 82) | def test_recursive_casting(): function test_move_out_container (line 101) | def test_move_out_container(): function test_optional (line 112) | def test_optional(): function test_exp_optional (line 146) | def test_exp_optional(): function test_boost_optional (line 176) | def test_boost_optional(): function test_reference_sensitive_optional (line 205) | def test_reference_sensitive_optional(): function test_fs_path (line 235) | def test_fs_path(): function test_variant (line 254) | def test_variant(doc): function test_variant_monostate (line 273) | def test_variant_monostate(doc): function test_vec_of_reference_wrapper (line 286) | def test_vec_of_reference_wrapper(): function test_stl_pass_by_pointer (line 294) | def test_stl_pass_by_pointer(msg): function test_missing_header_message (line 323) | def test_missing_header_message(): function test_function_with_string_and_vector_string_arg (line 344) | def test_function_with_string_and_vector_string_arg(): function test_stl_ownership (line 352) | def test_stl_ownership(): function test_array_cast_sequence (line 361) | def test_array_cast_sequence(): function test_issue_1561 (line 365) | def test_issue_1561(): function test_return_vector_bool_raw_ptr (line 373) | def test_return_vector_bool_raw_ptr(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_stl_binders.cpp class El (line 19) | class El { method El (line 21) | El() = delete; method El (line 22) | explicit El(int v) : a(v) {} class E_nc (line 33) | class E_nc { method E_nc (line 35) | explicit E_nc(int i) : value{i} {} method E_nc (line 36) | E_nc(const E_nc &) = delete; method E_nc (line 37) | E_nc &operator=(const E_nc &) = delete; method E_nc (line 38) | E_nc(E_nc &&) = default; method E_nc (line 39) | E_nc &operator=(E_nc &&) = default; function Container (line 45) | Container *one_to_n(int n) { function Map (line 54) | Map *times_ten(int n) { function NestMap (line 63) | NestMap *times_hundred(int n) { function TEST_SUBMODULE (line 73) | TEST_SUBMODULE(stl_binders, m) { FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_stl_binders.py function test_vector_int (line 6) | def test_vector_int(): function test_vector_buffer (line 69) | def test_vector_buffer(): function test_vector_buffer_numpy (line 88) | def test_vector_buffer_numpy(): function test_vector_bool (line 127) | def test_vector_bool(): function test_vector_custom (line 138) | def test_vector_custom(): function test_map_string_double (line 150) | def test_map_string_double(): function test_map_string_double_const (line 196) | def test_map_string_double_const(): function test_noncopyable_containers (line 209) | def test_noncopyable_containers(): function test_map_delitem (line 292) | def test_map_delitem(): function test_map_view_types (line 314) | def test_map_view_types(): FILE: pkg/gocv/cgo/third_path/pybind11/tests/test_tagbased_polymorphic.cpp type Animal (line 14) | struct Animal { type Kind (line 21) | enum class Kind { method Animal (line 38) | Animal(const std::string &_name, Kind _kind) : kind(_kind), name(_name... type Dog (line 41) | struct Dog : Animal { method Dog (line 42) | explicit Dog(const std::string &_name, Kind _kind = Kind::Dog) : Anima... method bark (line 43) | std::string bark() const { return name_of_kind(kind) + " " + name + " ... type Labrador (line 47) | struct Labrador : Dog { method Labrador (line 48) | explicit Labrador(const std::string &_name, int _excitement = 9001) type Chihuahua (line 53) | struct Chihuahua : Dog { method Chihuahua (line 54) | explicit Chihuahua(const std::string &_name) : Dog(_name, Kind::Chihua... method bark (line 57) | std::string bark() const { return Dog::bark() + " and runs in circles"; } type Cat (line 60) | struct Cat : Animal { method Cat (line 61) | explicit Cat(const std::string &_name, Kind _kind = Kind::Cat) : Anima... method purr (line 62) | std::string purr() const { return "mrowr"; } type Panther (line 65) | struct Panther : Cat { method Panther (line 66) | explicit Panther(const std::string &_name) : Cat(_name, Kind::Panther) {} method purr (line 67) | std::string purr() const { return "mrrrRRRRRR"; } function create_zoo (line 70) | std::vector> create_zoo() { type PYBIND11_NAMESPACE (line 120) | namespace PYBIND11_NAMESPACE { type polymorphic_type_hook::value>> (line 122) | struct polymorphic_type_hook None: FILE: pkg/gocv/cvtable/cvtable.go constant validateRows (line 34) | validateRows = 101 constant maxScore (line 35) | maxScore = 100 constant minScore (line 36) | minScore = 0 type CVTable (line 39) | type CVTable struct method Validate (line 68) | func (c CVTable) Validate() error { method Sim (line 77) | func (c CVTable) Sim(score float64) float64 { method Score (line 95) | func (c CVTable) Score(sim float64) float64 { function NewCVTable (line 43) | func NewCVTable(filepath string) (*CVTable, error) { FILE: pkg/gocv/cvtable/cvtable_test.go function TestSim (line 10) | func TestSim(t *testing.T) { function TestScore (line 38) | func TestScore(t *testing.T) { FILE: pkg/gocv/point.go type Point (line 24) | type Point struct type Pointf (line 29) | type Pointf struct type Polygonf (line 34) | type Polygonf FILE: pkg/gocv/rect.go type Rect (line 24) | type Rect struct method Scale (line 33) | func (r Rect) Scale(factor float32) Rect { method Empty (line 45) | func (r Rect) Empty() bool { method Area (line 49) | func (r Rect) Area() int32 { method Intersect (line 53) | func (r Rect) Intersect(s Rect) Rect { method Union (line 91) | func (r Rect) Union(s Rect) Rect { method In (line 123) | func (r Rect) In(s Rect) bool { method Closest (line 134) | func (r Rect) Closest(rects ...Rect) (float32, Rect) { FILE: pkg/gocv/rect_test.go function TestScale (line 31) | func TestScale(t *testing.T) { function TestClosest (line 69) | func TestClosest(t *testing.T) { FILE: pkg/gocv/vector/vector.go type Vector (line 34) | type Vector struct function NewVector (line 38) | func NewVector[T constraints.Integer | constraints.Float](data ...T) *Ve... method Append (line 48) | func (v *Vector[T]) Append(t T) { method Norm (line 52) | func (v *Vector[T]) Norm() { method Assign (line 64) | func (v *Vector[T]) Assign(data []byte) error { method Dims (line 70) | func (v *Vector[T]) Dims() int { method Len (line 74) | func (v *Vector[T]) Len() int { method Data (line 78) | func (v *Vector[T]) Data() []T { method Bytes (line 82) | func (v Vector[T]) Bytes() ([]byte, error) { method String (line 88) | func (v Vector[T]) String() (string, error) { method CosineDistance (line 108) | func (v Vector[T]) CosineDistance(r *Vector[T]) float64 { method EuclideanDistance (line 127) | func (v Vector[T]) EuclideanDistance(r *Vector[T]) float64 { function CreateNormalizedVector (line 140) | func CreateNormalizedVector[T constraints.Integer | constraints.Float](d... function CosineDistance (line 150) | func CosineDistance[T constraints.Integer | constraints.Float](l, r []T)... function EuclideanDistance (line 156) | func EuclideanDistance[T constraints.Integer | constraints.Float](l, r [... FILE: pkg/gocv/vector/vector_test.go function TestVector (line 32) | func TestVector(t *testing.T) { function TestCreateNormalizedVector (line 52) | func TestCreateNormalizedVector(t *testing.T) { function TestCosineDistance (line 58) | func TestCosineDistance(t *testing.T) { function TestEuclideanDistance (line 74) | func TestEuclideanDistance(t *testing.T) { FILE: pkg/grpc-gateway/date/date.pb.go constant _ (line 40) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 42) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type DateRequest (line 45) | type DateRequest struct method Reset (line 53) | func (x *DateRequest) Reset() { method String (line 62) | func (x *DateRequest) String() string { method ProtoMessage (line 66) | func (*DateRequest) ProtoMessage() {} method ProtoReflect (line 68) | func (x *DateRequest) ProtoReflect() protoreflect.Message { method Descriptor (line 81) | func (*DateRequest) Descriptor() ([]byte, []int) { method GetRequestId (line 85) | func (x *DateRequest) GetRequestId() string { type DateResponse (line 92) | type DateResponse struct method Reset (line 101) | func (x *DateResponse) Reset() { method String (line 110) | func (x *DateResponse) String() string { method ProtoMessage (line 114) | func (*DateResponse) ProtoMessage() {} method ProtoReflect (line 116) | func (x *DateResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 129) | func (*DateResponse) Descriptor() ([]byte, []int) { method GetRequestId (line 133) | func (x *DateResponse) GetRequestId() string { method GetDate (line 140) | func (x *DateResponse) GetDate() string { function file_date_date_proto_rawDescGZIP (line 178) | func file_date_date_proto_rawDescGZIP() []byte { function init (line 200) | func init() { file_date_date_proto_init() } function file_date_date_proto_init (line 201) | func file_date_date_proto_init() { FILE: pkg/grpc-gateway/date/date.pb.gw.go function request_DateService_Now_0 (line 55) | func request_DateService_Now_0(ctx context.Context, marshaler runtime.Ma... function local_request_DateService_Now_0 (line 72) | func local_request_DateService_Now_0(ctx context.Context, marshaler runt... function RegisterDateServiceHandlerServer (line 93) | func RegisterDateServiceHandlerServer(ctx context.Context, mux *runtime.... function RegisterDateServiceHandlerFromEndpoint (line 123) | func RegisterDateServiceHandlerFromEndpoint(ctx context.Context, mux *ru... function RegisterDateServiceHandler (line 148) | func RegisterDateServiceHandler(ctx context.Context, mux *runtime.ServeM... function RegisterDateServiceHandlerClient (line 157) | func RegisterDateServiceHandlerClient(ctx context.Context, mux *runtime.... FILE: pkg/grpc-gateway/date/date_grpc.pb.go constant _ (line 36) | _ = grpc.SupportPackageIsVersion7 type DateServiceClient (line 41) | type DateServiceClient interface type dateServiceClient (line 45) | type dateServiceClient struct method Now (line 53) | func (c *dateServiceClient) Now(ctx context.Context, in *DateRequest, ... function NewDateServiceClient (line 49) | func NewDateServiceClient(cc grpc.ClientConnInterface) DateServiceClient { type DateServiceServer (line 65) | type DateServiceServer interface type UnimplementedDateServiceServer (line 71) | type UnimplementedDateServiceServer struct method Now (line 74) | func (UnimplementedDateServiceServer) Now(context.Context, *DateReques... method mustEmbedUnimplementedDateServiceServer (line 77) | func (UnimplementedDateServiceServer) mustEmbedUnimplementedDateServic... type UnsafeDateServiceServer (line 82) | type UnsafeDateServiceServer interface function RegisterDateServiceServer (line 86) | func RegisterDateServiceServer(s grpc.ServiceRegistrar, srv DateServiceS... function _DateService_Now_Handler (line 90) | func _DateService_Now_Handler(srv interface{}, ctx context.Context, dec ... FILE: pkg/grpc-gateway/gateway_handler.go type GRPCHandler (line 35) | type GRPCHandler interface type GRPCHandlerFunc (line 39) | type GRPCHandlerFunc method Register (line 41) | func (h GRPCHandlerFunc) Register(srv *grpc.Server) { type HTTPHandler (line 45) | type HTTPHandler interface type HTTPHandlerFunc (line 49) | type HTTPHandlerFunc method Register (line 57) | func (h HTTPHandlerFunc) Register( function grpcHandlerFunc (line 68) | func grpcHandlerFunc(grpcServer *grpc.Server, otherHandler http.Handler)... FILE: pkg/grpc-gateway/grpc_gateway.go type InterceptorOption (line 36) | type InterceptorOption struct type GRPCGateway (line 52) | type GRPCGateway struct method initOnce (line 80) | func (g *GRPCGateway) initOnce() { method ServeHTTP (line 122) | func (g *GRPCGateway) ServeHTTP(w http.ResponseWriter, r *http.Request) { method ListenAndServe (line 126) | func (g *GRPCGateway) ListenAndServe() error { method registerGRPCFunc (line 131) | func (g *GRPCGateway) registerGRPCFunc(h GRPCHandler) { method RegisterGRPCHandler (line 136) | func (g *GRPCGateway) RegisterGRPCHandler(h func(srv *grpc.Server)) { method registerHTTPFunc (line 141) | func (g *GRPCGateway) registerHTTPFunc(ctx context.Context, h HTTPHand... method RegisterHTTPHandler (line 146) | func (g *GRPCGateway) RegisterHTTPHandler(ctx context.Context, function NewGRPCGateWay (line 69) | func NewGRPCGateWay(addr string, options ...GRPCGatewayOption) *GRPCGate... FILE: pkg/grpc-gateway/grpc_gateway_grpc.option.go type QPSLimitConfig (line 45) | type QPSLimitConfig struct function WithServerOptions (line 61) | func WithServerOptions(opts ...grpc.ServerOption) GRPCGatewayOption { function WithClientDialOptions (line 67) | func WithClientDialOptions(opts ...grpc.DialOption) GRPCGatewayOption { function WithServerUnaryInterceptorsOptions (line 73) | func WithServerUnaryInterceptorsOptions(opts ...grpc.UnaryServerIntercep... function WithServerStreamInterceptorsOptions (line 81) | func WithServerStreamInterceptorsOptions(opts ...grpc.StreamServerInterc... function WithServerInterceptorsLogrusOptions (line 89) | func WithServerInterceptorsLogrusOptions( function WithServerInterceptorsRecoveryOptions (line 100) | func WithServerInterceptorsRecoveryOptions() GRPCGatewayOption { function WithServerUnaryInterceptorsTimerOptions (line 121) | func WithServerUnaryInterceptorsTimerOptions(enabledMetric bool) GRPCGat... function WithServerUnaryInterceptorsCodeMessageOptions (line 130) | func WithServerUnaryInterceptorsCodeMessageOptions(enabledMetric bool) G... function WithServerUnaryMetricInterceptorOptions (line 142) | func WithServerUnaryMetricInterceptorOptions() GRPCGatewayOption { function WithServerUnaryTraceInterceptorOptions (line 153) | func WithServerUnaryTraceInterceptorOptions() GRPCGatewayOption { function WithServerUnaryInterceptorsRequestIdOptions (line 164) | func WithServerUnaryInterceptorsRequestIdOptions() GRPCGatewayOption { function WithServerUnaryInterceptorsErrorOptions (line 170) | func WithServerUnaryInterceptorsErrorOptions() GRPCGatewayOption { function WithServerInterceptorsLimitRateOptions (line 178) | func WithServerInterceptorsLimitRateOptions(burstUnary, burstStream int)... function WithServerInterceptorsQPSLimitOptions (line 194) | func WithServerInterceptorsQPSLimitOptions(config QPSLimitConfig) GRPCGa... function WithServerUnaryInterceptorsInOutPacketOptions (line 241) | func WithServerUnaryInterceptorsInOutPacketOptions() GRPCGatewayOption { function WithServerInterceptorTimeoutOptions (line 248) | func WithServerInterceptorTimeoutOptions(timeout time.Duration) GRPCGate... FILE: pkg/grpc-gateway/grpc_gateway_http.option.go function WithGatewayMuxOptions (line 43) | func WithGatewayMuxOptions(opts ...runtime.ServeMuxOption) GRPCGatewayOp... function WithServerInterceptorsHTTPForwardResponseOptions (line 50) | func WithServerInterceptorsHTTPForwardResponseOptions() GRPCGatewayOption { function WithServerInterceptorsTrivialV1HTTPForwardResponseOptions (line 57) | func WithServerInterceptorsTrivialV1HTTPForwardResponseOptions() GRPCGat... function WithServerInterceptorsTCloud30HTTPResponseOptions (line 64) | func WithServerInterceptorsTCloud30HTTPResponseOptions() GRPCGatewayOpti... function WithServerInterceptorsTrivialV1HTTPResponseOptions (line 81) | func WithServerInterceptorsTrivialV1HTTPResponseOptions() GRPCGatewayOpt... function WithServerInterceptorsTrivialV2HTTPResponseOptions (line 98) | func WithServerInterceptorsTrivialV2HTTPResponseOptions() GRPCGatewayOpt... function WithServerInterceptorsHttpBodyProtoOptions (line 115) | func WithServerInterceptorsHttpBodyProtoOptions() GRPCGatewayOption { function WithServerInterceptorsTCloud30HttpErrorOptions (line 129) | func WithServerInterceptorsTCloud30HttpErrorOptions() GRPCGatewayOption { function WithServerInterceptorsTrivialV1HttpErrorOptions (line 136) | func WithServerInterceptorsTrivialV1HttpErrorOptions() GRPCGatewayOption { function WithServerInterceptorsTrivialV2HttpErrorOptions (line 143) | func WithServerInterceptorsTrivialV2HttpErrorOptions() GRPCGatewayOption { function WithHttpPreHandlerInterceptorOptions (line 150) | func WithHttpPreHandlerInterceptorOptions( function WithHttpHandlerInterceptorOptions (line 162) | func WithHttpHandlerInterceptorOptions(handlers ...http_.HandlerIntercep... function WithHttpPostHandlerInterceptorOptions (line 174) | func WithHttpPostHandlerInterceptorOptions( function WithHttpHandlerInterceptorRequestIDAndTraceIDOptions (line 188) | func WithHttpHandlerInterceptorRequestIDAndTraceIDOptions() GRPCGatewayO... function WithHttpHandlerInterceptorRequestIDOptions (line 196) | func WithHttpHandlerInterceptorRequestIDOptions() GRPCGatewayOption { function WithHttpHandlerInterceptorsTimerOptions (line 200) | func WithHttpHandlerInterceptorsTimerOptions() GRPCGatewayOption { function WithHttpHandlerInterceptorsMetricOptions (line 206) | func WithHttpHandlerInterceptorsMetricOptions() GRPCGatewayOption { function WithHttpHandlerInterceptorsTraceOptions (line 213) | func WithHttpHandlerInterceptorsTraceOptions() GRPCGatewayOption { function WithHttpHandlerInterceptorInOutputPrinterOptions (line 219) | func WithHttpHandlerInterceptorInOutputPrinterOptions(enabled bool) GRPC... function WithHttpHandlerInterceptorInOutputHeaderPrinterOptions (line 229) | func WithHttpHandlerInterceptorInOutputHeaderPrinterOptions(enabled bool... function WithHttpHandlerInterceptorTimeoutOptions (line 239) | func WithHttpHandlerInterceptorTimeoutOptions(timeout time.Duration) GRP... function WithHttpHandlerInterceptorsLimitAllOptions (line 245) | func WithHttpHandlerInterceptorsLimitAllOptions(burst int) GRPCGatewayOp... type HTTPQPSLimitConfig (line 255) | type HTTPQPSLimitConfig struct function WithHttpHandlerInterceptorsQPSLimitOptions (line 273) | func WithHttpHandlerInterceptorsQPSLimitOptions(config HTTPQPSLimitConfi... function WithHttpHandlerInterceptorCleanPathOptions (line 317) | func WithHttpHandlerInterceptorCleanPathOptions() GRPCGatewayOption { function WithHttpHandlerInterceptorRecoveryOptions (line 324) | func WithHttpHandlerInterceptorRecoveryOptions() GRPCGatewayOption { function WithHttpHandlerInterceptorCORSOptions (line 332) | func WithHttpHandlerInterceptorCORSOptions(config httpinterceptorcors_.C... function WithHttpHandlerInterceptorCORSAllowAllOptions (line 340) | func WithHttpHandlerInterceptorCORSAllowAllOptions() GRPCGatewayOption { function WithHttpHandlerInterceptorStripPrefixOptions (line 350) | func WithHttpHandlerInterceptorStripPrefixOptions(prefix string) GRPCGat... FILE: pkg/grpc-gateway/grpc_gateway_option.go type GRPCGatewayOption (line 25) | type GRPCGatewayOption interface type EmptyGRPCGatewayOption (line 33) | type EmptyGRPCGatewayOption struct method apply (line 35) | func (EmptyGRPCGatewayOption) apply(*GRPCGateway) {} type GRPCGatewayOptionFunc (line 39) | type GRPCGatewayOptionFunc method apply (line 41) | func (f GRPCGatewayOptionFunc) apply(do *GRPCGateway) { function _GRPCGatewayOptionWithDefault (line 46) | func _GRPCGatewayOptionWithDefault() GRPCGatewayOption { method ApplyOptions (line 51) | func (o *GRPCGateway) ApplyOptions(options ...GRPCGatewayOption) *GRPCGa... FILE: pkg/grpc-gateway/grpc_gateway_test.go type Controller (line 37) | type Controller struct method Now (line 44) | func (c *Controller) Now( function TestGRPCGateway (line 55) | func TestGRPCGateway(t *testing.T) { FILE: pkg/logs/config.go constant DefaultMaxAge (line 40) | DefaultMaxAge = 72 * time.Hour constant DefaultMaxCount (line 41) | DefaultMaxCount = 72 constant DefaultRotateInterval (line 42) | DefaultRotateInterval = time.Hour constant DefaultRotateSize (line 44) | DefaultRotateSize = 104857600 type Config (line 47) | type Config struct method Complete (line 156) | func (c *Config) Complete() CompletedConfig { method parseViper (line 168) | func (c *Config) parseViper() { method loadViper (line 172) | func (c *Config) loadViper() error { type completedConfig (line 56) | type completedConfig struct method Validate (line 67) | func (c *completedConfig) Validate() error { method Apply (line 71) | func (c *completedConfig) Apply() error { method install (line 82) | func (c *completedConfig) install() error { type CompletedConfig (line 61) | type CompletedConfig struct function NewConfig (line 180) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/logs/config.option.go function WithViper (line 28) | func WithViper(v *viper.Viper) ConfigOption { FILE: pkg/logs/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/logs/hook.go type HookHandler (line 26) | type HookHandler method Levels (line 28) | func (h HookHandler) Levels() []logrus.Level { method Fire (line 32) | func (h HookHandler) Fire(entry *logrus.Entry) error { FILE: pkg/logs/log.go type Rotate (line 35) | type Rotate struct function WithRotate (line 44) | func WithRotate(log *logrus.Logger, filedir string, redirect Log_Redirec... function GetLogger (line 99) | func GetLogger(ctx context.Context) *logrus.Entry { function GetLoggerOrFallback (line 109) | func GetLoggerOrFallback(ctx context.Context, defaultValue string) *logr... FILE: pkg/logs/log.option.go function WithPrefixName (line 32) | func WithPrefixName(prefixName string) RotateOption { function WithSuffixName (line 38) | func WithSuffixName(suffixName string) RotateOption { function WithMaxAge (line 44) | func WithMaxAge(maxAge time.Duration) RotateOption { function WithMaxCount (line 50) | func WithMaxCount(maxCount int64) RotateOption { function WithRotateSize (line 56) | func WithRotateSize(rotateSize int64) RotateOption { function WithRotateInterval (line 62) | func WithRotateInterval(rotateInterval time.Duration) RotateOption { type CallerPrettyfierFunc (line 68) | type CallerPrettyfierFunc function GenShortCallPrettyfier (line 70) | func GenShortCallPrettyfier() CallerPrettyfierFunc { FILE: pkg/logs/log.pb.go constant _ (line 20) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 22) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Log_Level (line 25) | type Log_Level method Enum (line 59) | func (x Log_Level) Enum() *Log_Level { method String (line 65) | func (x Log_Level) String() string { method Descriptor (line 69) | func (Log_Level) Descriptor() protoreflect.EnumDescriptor { method Type (line 73) | func (Log_Level) Type() protoreflect.EnumType { method Number (line 77) | func (x Log_Level) Number() protoreflect.EnumNumber { method EnumDescriptor (line 82) | func (Log_Level) EnumDescriptor() ([]byte, []int) { constant Log_panic (line 28) | Log_panic Log_Level = 0 constant Log_fatal (line 29) | Log_fatal Log_Level = 1 constant Log_error (line 30) | Log_error Log_Level = 2 constant Log_warn (line 31) | Log_warn Log_Level = 3 constant Log_info (line 32) | Log_info Log_Level = 4 constant Log_debug (line 33) | Log_debug Log_Level = 5 constant Log_trace (line 34) | Log_trace Log_Level = 6 type Log_Formatter (line 86) | type Log_Formatter method Enum (line 108) | func (x Log_Formatter) Enum() *Log_Formatter { method String (line 114) | func (x Log_Formatter) String() string { method Descriptor (line 118) | func (Log_Formatter) Descriptor() protoreflect.EnumDescriptor { method Type (line 122) | func (Log_Formatter) Type() protoreflect.EnumType { method Number (line 126) | func (x Log_Formatter) Number() protoreflect.EnumNumber { method EnumDescriptor (line 131) | func (Log_Formatter) EnumDescriptor() ([]byte, []int) { constant Log_text (line 89) | Log_text Log_Formatter = 0 constant Log_json (line 90) | Log_json Log_Formatter = 1 constant Log_glog (line 91) | Log_glog Log_Formatter = 2 type Log_Redirect (line 135) | type Log_Redirect method Enum (line 154) | func (x Log_Redirect) Enum() *Log_Redirect { method String (line 160) | func (x Log_Redirect) String() string { method Descriptor (line 164) | func (Log_Redirect) Descriptor() protoreflect.EnumDescriptor { method Type (line 168) | func (Log_Redirect) Type() protoreflect.EnumType { method Number (line 172) | func (x Log_Redirect) Number() protoreflect.EnumNumber { method EnumDescriptor (line 177) | func (Log_Redirect) EnumDescriptor() ([]byte, []int) { constant Log_stdout (line 138) | Log_stdout Log_Redirect = 0 constant Log_file (line 139) | Log_file Log_Redirect = 1 type Log (line 181) | type Log struct method Reset (line 197) | func (x *Log) Reset() { method String (line 204) | func (x *Log) String() string { method ProtoMessage (line 208) | func (*Log) ProtoMessage() {} method ProtoReflect (line 210) | func (x *Log) ProtoReflect() protoreflect.Message { method Descriptor (line 223) | func (*Log) Descriptor() ([]byte, []int) { method GetLevel (line 227) | func (x *Log) GetLevel() Log_Level { method GetFormatter (line 234) | func (x *Log) GetFormatter() Log_Formatter { method GetFilepath (line 241) | func (x *Log) GetFilepath() string { method GetMaxAge (line 248) | func (x *Log) GetMaxAge() *durationpb.Duration { method GetMaxCount (line 255) | func (x *Log) GetMaxCount() int64 { method GetRotateInterval (line 262) | func (x *Log) GetRotateInterval() *durationpb.Duration { method GetRotateSize (line 269) | func (x *Log) GetRotateSize() int64 { method GetReportCaller (line 276) | func (x *Log) GetReportCaller() bool { method GetEnableGoroutineId (line 283) | func (x *Log) GetEnableGoroutineId() bool { method GetRedirect (line 290) | func (x *Log) GetRedirect() Log_Redirect { constant file_log_proto_rawDesc (line 299) | file_log_proto_rawDesc = "" + function file_log_proto_rawDescGZIP (line 337) | func file_log_proto_rawDescGZIP() []byte { function init (line 366) | func init() { file_log_proto_init() } function file_log_proto_init (line 367) | func file_log_proto_init() { FILE: pkg/logs/log_option.go type RotateOption (line 25) | type RotateOption interface type EmptyRotateOption (line 33) | type EmptyRotateOption struct method apply (line 35) | func (EmptyRotateOption) apply(*Rotate) {} type RotateOptionFunc (line 39) | type RotateOptionFunc method apply (line 41) | func (f RotateOptionFunc) apply(do *Rotate) { function _RotateOptionWithDefault (line 46) | func _RotateOptionWithDefault() RotateOption { method ApplyOptions (line 52) | func (o *Rotate) ApplyOptions(options ...RotateOption) *Rotate { FILE: pkg/logs/log_test.go function TestInit (line 36) | func TestInit(t *testing.T) { FILE: pkg/logs/logrus/formatter.go constant defaultTimestampFormat (line 32) | defaultTimestampFormat = time.RFC3339 constant FieldKeyMsg (line 33) | FieldKeyMsg = "msg" constant FieldKeyLevel (line 34) | FieldKeyLevel = "level" constant FieldKeyTime (line 35) | FieldKeyTime = "time" constant FieldKeyLogrusError (line 36) | FieldKeyLogrusError = "logrus_error" constant FieldKeyFunc (line 37) | FieldKeyFunc = "func" constant FieldKeyFile (line 38) | FieldKeyFile = "file" type fieldKey (line 41) | type fieldKey type FieldMap (line 44) | type FieldMap method resolve (line 46) | func (f FieldMap) resolve(key fieldKey) string { function prefixFieldClashes (line 66) | func prefixFieldClashes(data logrus.Fields, fieldMap FieldMap, reportCal... FILE: pkg/logs/logrus/glog_formatter.go constant red (line 41) | red = 31 constant yellow (line 42) | yellow = 33 constant blue (line 43) | blue = 36 constant gray (line 44) | gray = 37 function init (line 52) | func init() { type GlogFormatter (line 69) | type GlogFormatter struct method init (line 145) | func (f *GlogFormatter) init(entry *logrus.Entry) { method isColored (line 158) | func (f *GlogFormatter) isColored() bool { method Format (line 174) | func (f *GlogFormatter) Format(entry *logrus.Entry) ([]byte, error) { method level (line 245) | func (f *GlogFormatter) level(entry *logrus.Entry) string { method needsQuoting (line 263) | func (f *GlogFormatter) needsQuoting(text string) bool { method appendKeyValue (line 284) | func (f *GlogFormatter) appendKeyValue(b *bytes.Buffer, key string, va... method appendValue (line 293) | func (f *GlogFormatter) appendValue(b *bytes.Buffer, value interface{}) { method formatHeader (line 307) | func (f *GlogFormatter) formatHeader(entry *logrus.Entry, levelText st... FILE: pkg/logs/logrus/glog_formatter_test.go function TestGlogFormatting (line 31) | func TestGlogFormatting(t *testing.T) { FILE: pkg/logs/logrus/terminal_check_bsd.go constant ioctlReadTermios (line 31) | ioctlReadTermios = unix.TIOCGETA function isTerminal (line 33) | func isTerminal(fd int) bool { FILE: pkg/logs/logrus/terminal_check_js.go function isTerminal (line 28) | func isTerminal(fd int) bool { FILE: pkg/logs/logrus/terminal_check_notappengine.go function checkIfTerminal (line 33) | func checkIfTerminal(w io.Writer) bool { FILE: pkg/logs/logrus/terminal_check_solaris.go function isTerminal (line 29) | func isTerminal(fd int) bool { FILE: pkg/logs/logrus/terminal_check_unix.go constant ioctlReadTermios (line 31) | ioctlReadTermios = unix.TCGETS function isTerminal (line 33) | func isTerminal(fd int) bool { FILE: pkg/logs/logrus/terminal_check_windows.go function checkIfTerminal (line 35) | func checkIfTerminal(w io.Writer) bool { FILE: pkg/logs/slog_test.go type Address (line 11) | type Address struct type Contact (line 19) | type Contact struct type Person (line 26) | type Person struct type Company (line 33) | type Company struct function TestSlog (line 40) | func TestSlog(t *testing.T) { FILE: pkg/middleware/api/tcloud/v3.0/http.interceptor.error.go function HTTPError (line 43) | func HTTPError(ctx context.Context, mux *runtime.ServeMux, function HTTPForwardResponse (line 66) | func HTTPForwardResponse(ctx context.Context, r http.ResponseWriter, mes... FILE: pkg/middleware/api/tcloud/v3.0/interceptor.error.go function UnaryServerInterceptorOfError (line 34) | func UnaryServerInterceptorOfError() grpc.UnaryServerInterceptor { FILE: pkg/middleware/api/tcloud/v3.0/jsonpb.marshaler.go type JSONPb (line 28) | type JSONPb struct method Marshal (line 39) | func (j *JSONPb) Marshal(v interface{}) ([]byte, error) { function NewDefaultJSONPb (line 32) | func NewDefaultJSONPb() *JSONPb { FILE: pkg/middleware/api/tcloud/v3.0/tcloud.pb.go constant _ (line 20) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 22) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type TCloudBaseRequest (line 27) | type TCloudBaseRequest struct method Reset (line 44) | func (x *TCloudBaseRequest) Reset() { method String (line 53) | func (x *TCloudBaseRequest) String() string { method ProtoMessage (line 57) | func (*TCloudBaseRequest) ProtoMessage() {} method ProtoReflect (line 59) | func (x *TCloudBaseRequest) ProtoReflect() protoreflect.Message { method Descriptor (line 72) | func (*TCloudBaseRequest) Descriptor() ([]byte, []int) { method GetHttpMethod (line 76) | func (x *TCloudBaseRequest) GetHttpMethod() string { method GetScheme (line 83) | func (x *TCloudBaseRequest) GetScheme() string { method GetRootDomain (line 90) | func (x *TCloudBaseRequest) GetRootDomain() string { method GetDomain (line 97) | func (x *TCloudBaseRequest) GetDomain() string { method GetPath (line 104) | func (x *TCloudBaseRequest) GetPath() string { method GetParams (line 111) | func (x *TCloudBaseRequest) GetParams() map[string]string { method GetFormParams (line 118) | func (x *TCloudBaseRequest) GetFormParams() map[string]string { method GetService (line 125) | func (x *TCloudBaseRequest) GetService() string { method GetVersion (line 132) | func (x *TCloudBaseRequest) GetVersion() string { method GetAction (line 139) | func (x *TCloudBaseRequest) GetAction() string { type TCloudResponse (line 147) | type TCloudResponse struct method Reset (line 155) | func (x *TCloudResponse) Reset() { method String (line 164) | func (x *TCloudResponse) String() string { method ProtoMessage (line 168) | func (*TCloudResponse) ProtoMessage() {} method ProtoReflect (line 170) | func (x *TCloudResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 183) | func (*TCloudResponse) Descriptor() ([]byte, []int) { method GetResponse (line 187) | func (x *TCloudResponse) GetResponse() *_struct.Struct { type TCloudErrorResponse (line 194) | type TCloudErrorResponse struct method Reset (line 203) | func (x *TCloudErrorResponse) Reset() { method String (line 212) | func (x *TCloudErrorResponse) String() string { method ProtoMessage (line 216) | func (*TCloudErrorResponse) ProtoMessage() {} method ProtoReflect (line 218) | func (x *TCloudErrorResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 231) | func (*TCloudErrorResponse) Descriptor() ([]byte, []int) { method GetResponse (line 235) | func (x *TCloudErrorResponse) GetResponse() *ErrorResponse { type ErrorResponse (line 243) | type ErrorResponse struct method Reset (line 252) | func (x *ErrorResponse) Reset() { method String (line 261) | func (x *ErrorResponse) String() string { method ProtoMessage (line 265) | func (*ErrorResponse) ProtoMessage() {} method ProtoReflect (line 267) | func (x *ErrorResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 280) | func (*ErrorResponse) Descriptor() ([]byte, []int) { method GetRequestId (line 284) | func (x *ErrorResponse) GetRequestId() string { method GetError (line 291) | func (x *ErrorResponse) GetError() *TCloudError { type TCloudError (line 298) | type TCloudError struct method Reset (line 307) | func (x *TCloudError) Reset() { method String (line 316) | func (x *TCloudError) String() string { method ProtoMessage (line 320) | func (*TCloudError) ProtoMessage() {} method ProtoReflect (line 322) | func (x *TCloudError) ProtoReflect() protoreflect.Message { method Descriptor (line 335) | func (*TCloudError) Descriptor() ([]byte, []int) { method GetCode (line 339) | func (x *TCloudError) GetCode() string { method GetMessage (line 346) | func (x *TCloudError) GetMessage() string { function file_pkg_middleware_api_tcloud_v3_0_tcloud_proto_rawDescGZIP (line 428) | func file_pkg_middleware_api_tcloud_v3_0_tcloud_proto_rawDescGZIP() []by... function init (line 459) | func init() { file_pkg_middleware_api_tcloud_v3_0_tcloud_proto_init() } function file_pkg_middleware_api_tcloud_v3_0_tcloud_proto_init (line 460) | func file_pkg_middleware_api_tcloud_v3_0_tcloud_proto_init() { FILE: pkg/middleware/api/trivial/v1/api.pb.go constant _ (line 39) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 41) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type TrivialResponse (line 44) | type TrivialResponse struct method Reset (line 54) | func (x *TrivialResponse) Reset() { method String (line 63) | func (x *TrivialResponse) String() string { method ProtoMessage (line 67) | func (*TrivialResponse) ProtoMessage() {} method ProtoReflect (line 69) | func (x *TrivialResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 82) | func (*TrivialResponse) Descriptor() ([]byte, []int) { method GetSessionId (line 86) | func (x *TrivialResponse) GetSessionId() string { method GetErrorCode (line 93) | func (x *TrivialResponse) GetErrorCode() int32 { method GetErrorMsg (line 100) | func (x *TrivialResponse) GetErrorMsg() string { type TrivialErrorResponse (line 107) | type TrivialErrorResponse struct method Reset (line 117) | func (x *TrivialErrorResponse) Reset() { method String (line 126) | func (x *TrivialErrorResponse) String() string { method ProtoMessage (line 130) | func (*TrivialErrorResponse) ProtoMessage() {} method ProtoReflect (line 132) | func (x *TrivialErrorResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 145) | func (*TrivialErrorResponse) Descriptor() ([]byte, []int) { method GetSessionId (line 149) | func (x *TrivialErrorResponse) GetSessionId() string { method GetErrorCode (line 156) | func (x *TrivialErrorResponse) GetErrorCode() int32 { method GetErrorMsg (line 163) | func (x *TrivialErrorResponse) GetErrorMsg() string { function file_pkg_middleware_api_trivial_v1_api_proto_rawDescGZIP (line 203) | func file_pkg_middleware_api_trivial_v1_api_proto_rawDescGZIP() []byte { function init (line 223) | func init() { file_pkg_middleware_api_trivial_v1_api_proto_init() } function file_pkg_middleware_api_trivial_v1_api_proto_init (line 224) | func file_pkg_middleware_api_trivial_v1_api_proto_init() { FILE: pkg/middleware/api/trivial/v1/http.interceptor.error.go function HTTPError (line 42) | func HTTPError(ctx context.Context, mux *runtime.ServeMux, function HTTPForwardResponse (line 63) | func HTTPForwardResponse(ctx context.Context, r http.ResponseWriter, mes... FILE: pkg/middleware/api/trivial/v1/interceptor.error.go function UnaryServerInterceptorOfError (line 34) | func UnaryServerInterceptorOfError() grpc.UnaryServerInterceptor { FILE: pkg/middleware/api/trivial/v2/api.pb.go constant _ (line 18) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 20) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type ErrorResponse (line 24) | type ErrorResponse struct method Reset (line 33) | func (x *ErrorResponse) Reset() { method String (line 42) | func (x *ErrorResponse) String() string { method ProtoMessage (line 46) | func (*ErrorResponse) ProtoMessage() {} method ProtoReflect (line 48) | func (x *ErrorResponse) ProtoReflect() protoreflect.Message { method Descriptor (line 61) | func (*ErrorResponse) Descriptor() ([]byte, []int) { method GetRequestId (line 65) | func (x *ErrorResponse) GetRequestId() string { method GetError (line 72) | func (x *ErrorResponse) GetError() *TCloudError { type TCloudError (line 79) | type TCloudError struct method Reset (line 88) | func (x *TCloudError) Reset() { method String (line 97) | func (x *TCloudError) String() string { method ProtoMessage (line 101) | func (*TCloudError) ProtoMessage() {} method ProtoReflect (line 103) | func (x *TCloudError) ProtoReflect() protoreflect.Message { method Descriptor (line 116) | func (*TCloudError) Descriptor() ([]byte, []int) { method GetCode (line 120) | func (x *TCloudError) GetCode() string { method GetMessage (line 127) | func (x *TCloudError) GetMessage() string { function file_pkg_middleware_api_trivial_v2_api_proto_rawDescGZIP (line 162) | func file_pkg_middleware_api_trivial_v2_api_proto_rawDescGZIP() []byte { function init (line 183) | func init() { file_pkg_middleware_api_trivial_v2_api_proto_init() } function file_pkg_middleware_api_trivial_v2_api_proto_init (line 184) | func file_pkg_middleware_api_trivial_v2_api_proto_init() { FILE: pkg/middleware/api/trivial/v2/http.interceptor.error.go function HTTPError (line 42) | func HTTPError(ctx context.Context, mux *runtime.ServeMux, function HTTPForwardResponse (line 65) | func HTTPForwardResponse(ctx context.Context, r http.ResponseWriter, mes... FILE: pkg/middleware/api/trivial/v2/interceptor.error.go function UnaryServerInterceptorOfError (line 34) | func UnaryServerInterceptorOfError() grpc.UnaryServerInterceptor { FILE: pkg/middleware/grpc-middleware/debug/in_output_printer_client.interceptor.go function UnaryClientInterceptorOfInOutputPrinter (line 34) | func UnaryClientInterceptorOfInOutputPrinter(filterMethods ...string) gr... FILE: pkg/middleware/grpc-middleware/debug/in_output_printer_server.interceptor.go type JsonpbMarshaller (line 36) | type JsonpbMarshaller struct method MarshalJson (line 40) | func (j *JsonpbMarshaller) MarshalJson() ([]byte, error) { function UnaryServerInterceptorOfInOutputPrinter (line 50) | func UnaryServerInterceptorOfInOutputPrinter() grpc.UnaryServerIntercept... function HandleInOutputPrinter (line 57) | func HandleInOutputPrinter[REQ any, RESP any](info *grpc.UnaryServerInfo... FILE: pkg/middleware/grpc-middleware/debug/request_id_server.interceptor.go function UnaryServerInterceptorOfRequestId (line 40) | func UnaryServerInterceptorOfRequestId() grpc.UnaryServerInterceptor { function HandleReuestId (line 47) | func HandleReuestId[REQ any, RESP any](handler resource_.HandlerWithCont... FILE: pkg/middleware/grpc-middleware/opentelemetry/metric_server.interceptor.go function UnaryServerMetricInterceptor (line 14) | func UnaryServerMetricInterceptor() grpc.UnaryServerInterceptor { function HandleMetric (line 22) | func HandleMetric[REQ any, RESP any]( function handleMetric (line 28) | func handleMetric[REQ any, RESP any]( FILE: pkg/middleware/grpc-middleware/opentelemetry/modular_client.interceptor.go type ModularClientConfig (line 35) | type ModularClientConfig struct function UnaryClientModularInterceptor (line 45) | func UnaryClientModularInterceptor(cfg ModularClientConfig) grpc.UnaryCl... function StreamClientModularInterceptor (line 69) | func StreamClientModularInterceptor(cfg ModularClientConfig) grpc.Stream... function injectCallerMetadata (line 92) | func injectCallerMetadata(ctx context.Context, cfg ModularClientConfig) ... function buildClientDimension (line 108) | func buildClientDimension(_ context.Context, fullMethod, target string, ... FILE: pkg/middleware/grpc-middleware/opentelemetry/modular_server.interceptor.go type ModularServerConfig (line 37) | type ModularServerConfig struct function UnaryServerModularInterceptor (line 45) | func UnaryServerModularInterceptor(cfg ModularServerConfig) grpc.UnarySe... function StreamServerModularInterceptor (line 66) | func StreamServerModularInterceptor(cfg ModularServerConfig) grpc.Stream... function buildServerDimension (line 86) | func buildServerDimension(ctx context.Context, fullMethod string, err er... function parseFullMethod (line 125) | func parseFullMethod(fullMethod string) (service, method string) { FILE: pkg/middleware/grpc-middleware/opentelemetry/trace_client.interceptor.go function UnaryClientTraceInterceptor (line 31) | func UnaryClientTraceInterceptor(opts ...otelgrpc.Option) grpc.UnaryClie... function StreamClientTraceInterceptor (line 36) | func StreamClientTraceInterceptor(opts ...otelgrpc.Option) grpc.StreamCl... function UnaryClientTraceInterceptorWithTracer (line 41) | func UnaryClientTraceInterceptorWithTracer(tracerProvider trace.TracerPr... function StreamClientTraceInterceptorWithTracer (line 50) | func StreamClientTraceInterceptorWithTracer(tracerProvider trace.TracerP... FILE: pkg/middleware/grpc-middleware/opentelemetry/trace_server.interceptor.go function UnaryServerTraceInterceptor (line 36) | func UnaryServerTraceInterceptor(opts ...otelgrpc.Option) grpc.UnaryServ... function StreamServerTraceInterceptor (line 49) | func StreamServerTraceInterceptor(opts ...otelgrpc.Option) grpc.StreamSe... function UnaryServerTraceInterceptorWithTracer (line 60) | func UnaryServerTraceInterceptorWithTracer(tracerProvider trace.TracerPr... function StreamServerTraceInterceptorWithTracer (line 69) | func StreamServerTraceInterceptorWithTracer(tracerProvider trace.TracerP... function GetSpanFromContext (line 78) | func GetSpanFromContext(ctx context.Context) trace.Span { function GetTracerProvider (line 83) | func GetTracerProvider() trace.TracerProvider { function GetTracer (line 88) | func GetTracer(name string, opts ...trace.TracerOption) trace.Tracer { FILE: pkg/middleware/grpc-middleware/ratelimit/ratelimit_qps_server.interceptor.go type QPSLimiter (line 36) | type QPSLimiter interface function UnaryServerInterceptorQPS (line 44) | func UnaryServerInterceptorQPS(limiter QPSLimiter) grpc.UnaryServerInter... function UnaryServerInterceptorQPSWait (line 67) | func UnaryServerInterceptorQPSWait(limiter QPSLimiter, timeout time.Dura... function StreamServerInterceptorQPS (line 92) | func StreamServerInterceptorQPS(limiter QPSLimiter) grpc.StreamServerInt... function StreamServerInterceptorQPSWait (line 115) | func StreamServerInterceptorQPSWait(limiter QPSLimiter, timeout time.Dur... function NewMethodQPSLimiter (line 139) | func NewMethodQPSLimiter(defaultQPS float64, defaultBurst int) *rate_.Me... function NewMethodQPSLimiterWithConfigs (line 144) | func NewMethodQPSLimiterWithConfigs( type ConcurrencyLimiter (line 155) | type ConcurrencyLimiter interface function UnaryServerInterceptorConcurrency (line 162) | func UnaryServerInterceptorConcurrency(limiter ConcurrencyLimiter) grpc.... function StreamServerInterceptorConcurrency (line 186) | func StreamServerInterceptorConcurrency(limiter ConcurrencyLimiter) grpc... FILE: pkg/middleware/grpc-middleware/ratelimit/ratelimit_server.interceptor.go type Limiter (line 34) | type Limiter interface function UnaryServerInterceptor (line 41) | func UnaryServerInterceptor(limiter Limiter) grpc.UnaryServerInterceptor { function StreamServerInterceptor (line 59) | func StreamServerInterceptor(limiter Limiter) grpc.StreamServerIntercept... FILE: pkg/middleware/grpc-middleware/timer/timer_client.interceptor.go function UnaryClientInterceptorOfTimer (line 32) | func UnaryClientInterceptorOfTimer() grpc.UnaryClientInterceptor { FILE: pkg/middleware/grpc-middleware/timer/timer_server.interceptor.go function UnaryServerInterceptorOfTimer (line 34) | func UnaryServerInterceptorOfTimer() grpc.UnaryServerInterceptor { FILE: pkg/middleware/http-middleware/cors/cors.go type CORSConfig (line 31) | type CORSConfig struct function DefaultCORSConfig (line 59) | func DefaultCORSConfig() CORSConfig { function CORS (line 69) | func CORS(config CORSConfig) func(http.Handler) http.Handler { function CORSAllowAll (line 127) | func CORSAllowAll(next http.Handler) http.Handler { function isOriginAllowed (line 132) | func isOriginAllowed(origin string, allowedOrigins []string) bool { FILE: pkg/middleware/http-middleware/cors/cors_test.go function TestCORSAllowAll (line 30) | func TestCORSAllowAll(t *testing.T) { function TestCORSWithSpecificOrigins (line 69) | func TestCORSWithSpecificOrigins(t *testing.T) { function TestIsOriginAllowed (line 133) | func TestIsOriginAllowed(t *testing.T) { FILE: pkg/middleware/http-middleware/debug/in.output_printer.go function InOutputPrinter (line 34) | func InOutputPrinter(handler http.Handler) http.Handler { function InOutputHeaderPrinter (line 60) | func InOutputHeaderPrinter(handler http.Handler) http.Handler { FILE: pkg/middleware/http-middleware/debug/in.output_printer_truncate.go function truncateStringForLog (line 39) | func truncateStringForLog(s string) string { function truncateLogValue (line 53) | func truncateLogValue(v interface{}) interface{} { function formatBodyForLog (line 75) | func formatBodyForLog(buf []byte) string { function InOutputPrinterWithTruncate (line 102) | func InOutputPrinterWithTruncate(handler http.Handler) http.Handler { FILE: pkg/middleware/http-middleware/debug/recoverer.go function Recovery (line 35) | func Recovery(handler http.Handler) http.Handler { FILE: pkg/middleware/http-middleware/debug/request_id.go function RequestID (line 33) | func RequestID(handler http.Handler) http.Handler { function RequestIDAndTraceID (line 40) | func RequestIDAndTraceID(handler http.Handler) http.Handler { function SetPairsContext (line 58) | func SetPairsContext(keys []string) func(handler http.Handler) http.Hand... FILE: pkg/middleware/http-middleware/http/clean_path.go function CleanPath (line 31) | func CleanPath(next http.Handler) http.Handler { FILE: pkg/middleware/http-middleware/http/strip_prefix.go function StripPrefix (line 38) | func StripPrefix(prefix string) func(http.Handler) http.Handler { FILE: pkg/middleware/http-middleware/http/strip_prefix_test.go function TestStripPrefix (line 30) | func TestStripPrefix(t *testing.T) { function TestStripPrefixRawPath (line 108) | func TestStripPrefixRawPath(t *testing.T) { FILE: pkg/middleware/http-middleware/http/timeout.go type timeoutWriter (line 42) | type timeoutWriter struct method Header (line 49) | func (tw timeoutWriter) Header() http.Header { method WriteHeader (line 53) | func (tw *timeoutWriter) WriteHeader(status int) { method Write (line 57) | func (tw *timeoutWriter) Write(b []byte) (int, error) { method ServeHTTP (line 65) | func (tw *timeoutWriter) ServeHTTP(w http.ResponseWriter, r *http.Requ... function Timeout (line 72) | func Timeout(timeout time.Duration) func(next http.Handler) http.Handler { FILE: pkg/middleware/http-middleware/opentelemetry/metric.interceptor.go type responseWriter (line 15) | type responseWriter struct method WriteHeader (line 27) | func (rw *responseWriter) WriteHeader(code int) { method Status (line 32) | func (rw *responseWriter) Status() int { function newResponseWriter (line 20) | func newResponseWriter(w http.ResponseWriter) *responseWriter { function Metric (line 36) | func Metric(next http.Handler) http.Handler { FILE: pkg/middleware/http-middleware/opentelemetry/trace.interceptor.go constant tracerName (line 34) | tracerName = "github.com/kaydxh/golang/pkg/middleware/http-middleware/op... function Trace (line 37) | func Trace(next http.Handler) http.Handler { FILE: pkg/middleware/http-middleware/ratelimiter/ratelimiter.go type Limiter (line 35) | type Limiter interface type RateLimiter (line 41) | type RateLimiter struct method Handler (line 65) | func (l *RateLimiter) Handler(handler http.Handler) http.Handler { function LimitAll (line 56) | func LimitAll(burst int) *RateLimiter { FILE: pkg/middleware/http-middleware/ratelimiter/ratelimiter_qps.go type QPSRateLimiter (line 36) | type QPSRateLimiter struct method AddPath (line 63) | func (l *QPSRateLimiter) AddPath(path string, qps float64, burst int) ... method SetPathQPS (line 68) | func (l *QPSRateLimiter) SetPathQPS(path string, qps float64, burst in... method RemovePath (line 73) | func (l *QPSRateLimiter) RemovePath(path string) { method Handler (line 79) | func (l *QPSRateLimiter) Handler(next http.Handler) http.Handler { method HandlerFunc (line 107) | func (l *QPSRateLimiter) HandlerFunc(next http.HandlerFunc) http.Handl... method HandlerWait (line 113) | func (l *QPSRateLimiter) HandlerWait(next http.Handler, timeout time.D... method Stats (line 142) | func (l *QPSRateLimiter) Stats() []rate_.MethodQPSStats { method StatsHandler (line 147) | func (l *QPSRateLimiter) StatsHandler() http.Handler { function NewQPSRateLimiter (line 43) | func NewQPSRateLimiter(defaultQPS float64, defaultBurst int) *QPSRateLim... function NewQPSRateLimiterWithConfigs (line 50) | func NewQPSRateLimiterWithConfigs( function LimitAllQPS (line 159) | func LimitAllQPS(qps float64, burst int) *QPSRateLimiter { type ConcurrencyLimiter (line 166) | type ConcurrencyLimiter struct method SetPathConcurrency (line 179) | func (l *ConcurrencyLimiter) SetPathConcurrency(path string, maxConcur... method Handler (line 185) | func (l *ConcurrencyLimiter) Handler(next http.Handler) http.Handler { method HandlerFunc (line 214) | func (l *ConcurrencyLimiter) HandlerFunc(next http.HandlerFunc) http.H... function NewConcurrencyLimiter (line 172) | func NewConcurrencyLimiter(defaultConcurrency int) *ConcurrencyLimiter { FILE: pkg/middleware/http-middleware/timer/timer_server.interceptor.go function ServerInterceptorOfTimer (line 32) | func ServerInterceptorOfTimer(next http.Handler) http.Handler { FILE: pkg/middleware/local.middleware.wrap.go function LocalMiddlewareWrap (line 11) | func LocalMiddlewareWrap[REQ any, RESP any](handler func(ctx context.Con... function LocalTinyMiddlewareWrap (line 21) | func LocalTinyMiddlewareWrap[REQ any, RESP any](handler func(ctx context... FILE: pkg/middleware/resource/middleware.handler.go type HandlerWithContext (line 5) | type HandlerWithContext FILE: pkg/middleware/resource/monitor.metrics.go constant instrumentationName (line 13) | instrumentationName = "github/kaydxh/golang/pkg/middleware/resource" constant instrumentationVersion (line 14) | instrumentationVersion = "v0.0.1" function SetMetricGroup (line 30) | func SetMetricGroup(group string) { function GetMetricGroup (line 39) | func GetMetricGroup() string { function getMeter (line 45) | func getMeter() metric.Meter { type MetricMonitor (line 58) | type MetricMonitor struct method GetOrNewBusinessCounter (line 114) | func (m *MetricMonitor) GetOrNewBusinessCounter(key string) (metric.In... method GetOrNewBusinessHistogram (line 130) | func (m *MetricMonitor) GetOrNewBusinessHistogram(key string) (metric.... function GetDefaultMetricMonitor (line 75) | func GetDefaultMetricMonitor() *MetricMonitor { function GlobalMeter (line 82) | func GlobalMeter() metric.Meter { function NewMetricMonitor (line 86) | func NewMetricMonitor() *MetricMonitor { function ReportMetric (line 146) | func ReportMetric(ctx context.Context, dim Dimension, costTime time.Dura... FILE: pkg/middleware/resource/monitor.resource.go type Dimension (line 28) | type Dimension struct type AddKeyContexFunc (line 33) | type AddKeyContexFunc function AddKeysContext (line 35) | func AddKeysContext(ctx context.Context, ops ...AddKeyContexFunc) contex... function AddAttrKeysContext (line 42) | func AddAttrKeysContext(ctx context.Context) context.Context { function UpdateAttrsContext (line 46) | func UpdateAttrsContext(ctx context.Context, values map[string]interface... function AddMetricKeysContext (line 50) | func AddMetricKeysContext(ctx context.Context) context.Context { function UpdateMetricContext (line 54) | func UpdateMetricContext(ctx context.Context, values map[string]interfac... function AppendAttrsContext (line 58) | func AppendAttrsContext(ctx context.Context, values ...string) context.C... function AppendMetricCountContext (line 62) | func AppendMetricCountContext(ctx context.Context, values ...string) con... function ExtractAttrsWithContext (line 66) | func ExtractAttrsWithContext(ctx context.Context) []attribute.KeyValue { function ReportBusinessMetric (line 106) | func ReportBusinessMetric(ctx context.Context, attrs []attribute.KeyValu... function Attrs (line 172) | func Attrs(dim Dimension) []attribute.KeyValue { FILE: pkg/mq/consumer.go type Consumer (line 26) | type Consumer interface FILE: pkg/mq/kafka/config.go type Config (line 32) | type Config struct method Complete (line 87) | func (c *Config) Complete() CompletedConfig { method loadViper (line 99) | func (c *Config) loadViper() error { type completedConfig (line 40) | type completedConfig struct method New (line 50) | func (c *completedConfig) New(ctx context.Context) (*MQ, error) { method install (line 72) | func (c *completedConfig) install(ctx context.Context) (*MQ, error) { type CompletedConfig (line 45) | type CompletedConfig struct function NewConfig (line 107) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/mq/kafka/config.option.go function WithViper (line 28) | func WithViper(v *viper.Viper) ConfigOption { FILE: pkg/mq/kafka/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/mq/kafka/kafka.go type MQConfig (line 38) | type MQConfig struct type MQOptions (line 42) | type MQOptions struct type ProducerOptions (line 54) | type ProducerOptions struct type ConsumerOptions (line 74) | type ConsumerOptions struct type MQ (line 100) | type MQ struct method InstallMQ (line 143) | func (q *MQ) InstallMQ( method AsProducers (line 177) | func (q *MQ) AsProducers(ctx context.Context, topics ...string) (produ... method GetProducer (line 223) | func (q *MQ) GetProducer(topic string) (*Producer, error) { method Send (line 234) | func (q *MQ) Send(ctx context.Context, topic string, msgs ...kafka.Mes... method AsConsumers (line 243) | func (q *MQ) AsConsumers(ctx context.Context, topics ...string) (consu... method GetConsumer (line 308) | func (q *MQ) GetConsumer(topic string) (*Consumer, error) { method ReadStream (line 319) | func (q *MQ) ReadStream(ctx context.Context, topic string) <-chan mq_.... method Close (line 328) | func (q *MQ) Close() { function NewMQ (line 112) | func NewMQ(conf MQConfig, opts ...MQOption) *MQ { function newController (line 124) | func newController(broker string) (*kafka.Conn, error) { FILE: pkg/mq/kafka/kafka.option.go function WithDialTimeout (line 27) | func WithDialTimeout(dialTimeout time.Duration) MQOption { function WithProducerBatchSize (line 34) | func WithProducerBatchSize(batchSize int) MQOption { function WithProducerBatchBytes (line 40) | func WithProducerBatchBytes(batchBytes int) MQOption { function WithProducerBatchTimeout (line 46) | func WithProducerBatchTimeout(batchTimeout time.Duration) MQOption { function WithConsumerGroupID (line 53) | func WithConsumerGroupID(groupID string) MQOption { function WithConsumerPartition (line 59) | func WithConsumerPartition(partition int) MQOption { function WithConsumerMinBytes (line 65) | func WithConsumerMinBytes(minBytes int) MQOption { function WithConsumerMaxBytes (line 71) | func WithConsumerMaxBytes(maxBytes int) MQOption { function WithConsumerMaxWait (line 77) | func WithConsumerMaxWait(maxWait time.Duration) MQOption { FILE: pkg/mq/kafka/kafka.pb.go constant _ (line 19) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 21) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Kafka (line 25) | type Kafka struct method Reset (line 39) | func (x *Kafka) Reset() { method String (line 48) | func (x *Kafka) String() string { method ProtoMessage (line 52) | func (*Kafka) ProtoMessage() {} method ProtoReflect (line 54) | func (x *Kafka) ProtoReflect() protoreflect.Message { method Descriptor (line 67) | func (*Kafka) Descriptor() ([]byte, []int) { method GetEnabled (line 71) | func (x *Kafka) GetEnabled() bool { method GetBrokers (line 78) | func (x *Kafka) GetBrokers() []string { method GetApiVersionRequest (line 85) | func (x *Kafka) GetApiVersionRequest() bool { method GetReconnectBackoff (line 92) | func (x *Kafka) GetReconnectBackoff() *duration.Duration { method GetReconnectBackoffMax (line 99) | func (x *Kafka) GetReconnectBackoffMax() *duration.Duration { method GetMaxWaitDuration (line 106) | func (x *Kafka) GetMaxWaitDuration() *duration.Duration { method GetFailAfterDuration (line 113) | func (x *Kafka) GetFailAfterDuration() *duration.Duration { type Kafka_Consumer (line 120) | type Kafka_Consumer struct method Reset (line 126) | func (x *Kafka_Consumer) Reset() { method String (line 135) | func (x *Kafka_Consumer) String() string { method ProtoMessage (line 139) | func (*Kafka_Consumer) ProtoMessage() {} method ProtoReflect (line 141) | func (x *Kafka_Consumer) ProtoReflect() protoreflect.Message { method Descriptor (line 154) | func (*Kafka_Consumer) Descriptor() ([]byte, []int) { type Kafka_Producer (line 158) | type Kafka_Producer struct method Reset (line 164) | func (x *Kafka_Producer) Reset() { method String (line 173) | func (x *Kafka_Producer) String() string { method ProtoMessage (line 177) | func (*Kafka_Producer) ProtoMessage() {} method ProtoReflect (line 179) | func (x *Kafka_Producer) ProtoReflect() protoreflect.Message { method Descriptor (line 192) | func (*Kafka_Producer) Descriptor() ([]byte, []int) { function file_pkg_mq_kafka_kafka_proto_rawDescGZIP (line 242) | func file_pkg_mq_kafka_kafka_proto_rawDescGZIP() []byte { function init (line 268) | func init() { file_pkg_mq_kafka_kafka_proto_init() } function file_pkg_mq_kafka_kafka_proto_init (line 269) | func file_pkg_mq_kafka_kafka_proto_init() { FILE: pkg/mq/kafka/kafka_consumer.go type Consumer (line 12) | type Consumer struct method Topic (line 33) | func (c *Consumer) Topic() string { method ReadStream (line 37) | func (c *Consumer) ReadStream(ctx context.Context) <-chan mq_.Message { method Close (line 68) | func (c *Consumer) Close() { function NewConsumer (line 21) | func NewConsumer(config kafka.ReaderConfig) (*Consumer, error) { FILE: pkg/mq/kafka/kafka_message.go type KafkaMessage (line 26) | type KafkaMessage struct method Error (line 31) | func (m KafkaMessage) Error() error { method Key (line 35) | func (m KafkaMessage) Key() []byte { method Value (line 39) | func (m KafkaMessage) Value() []byte { FILE: pkg/mq/kafka/kafka_option.go type MQOption (line 25) | type MQOption interface type EmptyMQOption (line 33) | type EmptyMQOption struct method apply (line 35) | func (EmptyMQOption) apply(*MQ) {} type MQOptionFunc (line 39) | type MQOptionFunc method apply (line 41) | func (f MQOptionFunc) apply(do *MQ) { function _MQOptionWithDefault (line 46) | func _MQOptionWithDefault() MQOption { method ApplyOptions (line 51) | func (o *MQ) ApplyOptions(options ...MQOption) *MQ { FILE: pkg/mq/kafka/kafka_producer.go type Producer (line 10) | type Producer struct method Send (line 28) | func (p *Producer) Send(ctx context.Context, msgs ...kafka.Message) er... method Close (line 32) | func (p *Producer) Close() { function NewProducer (line 18) | func NewProducer(config kafka.WriterConfig) (*Producer, error) { FILE: pkg/mq/kafka/kafka_test.go function TestCreateTopic (line 13) | func TestCreateTopic(t *testing.T) { function TestProducer (line 37) | func TestProducer(t *testing.T) { function TestConsumer (line 74) | func TestConsumer(t *testing.T) { function TestNew (line 102) | func TestNew(t *testing.T) { FILE: pkg/mq/message.go type Message (line 24) | type Message interface FILE: pkg/mq/producer.go type Producer (line 24) | type Producer interface FILE: pkg/opentelemetry/config.go type Config (line 41) | type Config struct method Complete (line 651) | func (c *Config) Complete() CompletedConfig { method loadViper (line 663) | func (c *Config) loadViper() error { type completedConfig (line 52) | type completedConfig struct method New (line 64) | func (c *completedConfig) New(ctx context.Context) error { method InstallTracer (line 91) | func (c *completedConfig) InstallTracer(ctx context.Context) error { method InstallMeter (line 132) | func (c *completedConfig) InstallMeter(ctx context.Context) error { method installResourceAttributesForTracer (line 184) | func (c *completedConfig) installResourceAttributesForTracer(ctx conte... method installResourceAttributesForMeter (line 270) | func (c *completedConfig) installResourceAttributesForMeter(ctx contex... method installMeterExporter (line 326) | func (c *completedConfig) installMeterExporter(ctx context.Context) ([... method installAppMeterExporter (line 424) | func (c *completedConfig) installAppMeterExporter(ctx context.Context)... method installTracerExporter (line 562) | func (c *completedConfig) installTracerExporter(ctx context.Context) (... method installResourceStats (line 632) | func (c *completedConfig) installResourceStats(ctx context.Context) (*... method registerMetricsRoute (line 679) | func (c *completedConfig) registerMetricsRoute(urlPath string) { type CompletedConfig (line 57) | type CompletedConfig struct function NewConfig (line 671) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/opentelemetry/config.option.go function WithViper (line 30) | func WithViper(v *viper.Viper) ConfigOption { function WithMemoryCallBack (line 36) | func WithMemoryCallBack(f func(total, free uint64, usage float64)) Confi... function WithGinRouter (line 44) | func WithGinRouter(router gin.IRouter) ConfigOption { FILE: pkg/opentelemetry/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/opentelemetry/metric/api/api.go type instrumentCache (line 53) | type instrumentCache struct method get (line 58) | func (c *instrumentCache[T]) get(key string) (T, bool) { method set (line 65) | func (c *instrumentCache[T]) set(key string, v T) { function SetAppMeterProvider (line 73) | func SetAppMeterProvider(mp otelmetric.MeterProvider) { function GetAppMeterProvider (line 81) | func GetAppMeterProvider() otelmetric.MeterProvider { type attributeContextKey (line 91) | type attributeContextKey struct function WithAttribute (line 97) | func WithAttribute(ctx context.Context, meterName, key string, value any... function WithAttributes (line 114) | func WithAttributes(ctx context.Context, meterName string, kvs map[strin... function getContextAttributes (line 133) | func getContextAttributes(ctx context.Context, meterName string) map[str... function getAttributeSlice (line 141) | func getAttributeSlice(ctx context.Context, meterName string) []attribut... function ToAttribute (line 154) | func ToAttribute(key string, value any) attribute.KeyValue { function ToAttributeString (line 190) | func ToAttributeString(value any) string { function getCounter (line 206) | func getCounter(meterName, instrumentName string, provider otelmetric.Me... function getHistogram (line 225) | func getHistogram(meterName, instrumentName string, bounds []float64, pr... function AddCounter (line 255) | func AddCounter(ctx context.Context, meterName, instrumentName string, v... function IncrCounter (line 264) | func IncrCounter(ctx context.Context, meterName, instrumentName string) { function RecordHistogram (line 273) | func RecordHistogram(ctx context.Context, meterName, instrumentName stri... function RecordDuration (line 283) | func RecordDuration(ctx context.Context, meterName, instrumentName strin... function GlobalAddCounter (line 295) | func GlobalAddCounter(ctx context.Context, meterName, instrumentName str... function GlobalIncrCounter (line 304) | func GlobalIncrCounter(ctx context.Context, meterName, instrumentName st... function GlobalRecordHistogram (line 313) | func GlobalRecordHistogram(ctx context.Context, meterName, instrumentNam... function GlobalRecordDuration (line 323) | func GlobalRecordDuration(ctx context.Context, meterName, instrumentName... function AddCounterWithAttrs (line 332) | func AddCounterWithAttrs(ctx context.Context, meterName, instrumentName ... function IncrCounterWithAttrs (line 338) | func IncrCounterWithAttrs(ctx context.Context, meterName, instrumentName... function RecordHistogramWithAttrs (line 343) | func RecordHistogramWithAttrs(ctx context.Context, meterName, instrument... function RecordDurationWithAttrs (line 352) | func RecordDurationWithAttrs(ctx context.Context, meterName, instrumentN... function GlobalAddCounterWithAttrs (line 357) | func GlobalAddCounterWithAttrs(ctx context.Context, meterName, instrumen... function GlobalIncrCounterWithAttrs (line 363) | func GlobalIncrCounterWithAttrs(ctx context.Context, meterName, instrume... function GlobalRecordHistogramWithAttrs (line 368) | func GlobalRecordHistogramWithAttrs(ctx context.Context, meterName, inst... function GlobalRecordDurationWithAttrs (line 377) | func GlobalRecordDurationWithAttrs(ctx context.Context, meterName, instr... FILE: pkg/opentelemetry/metric/api/example_test.go function Example_simpleCounter (line 32) | func Example_simpleCounter() { function Example_histogram (line 55) | func Example_histogram() { function Example_timer (line 76) | func Example_timer() { function Example_globalVsApp (line 96) | func Example_globalVsApp() { function Example_batchAttributes (line 115) | func Example_batchAttributes() { FILE: pkg/opentelemetry/metric/api/instrument.go type Instrument (line 33) | type Instrument struct method Clone (line 91) | func (i *Instrument) Clone() *Instrument { method SetAttribute (line 107) | func (i *Instrument) SetAttribute(key string, value any) *Instrument { method SetAttributes (line 114) | func (i *Instrument) SetAttributes(attrs map[string]any) *Instrument { method ClearAttributes (line 122) | func (i *Instrument) ClearAttributes() *Instrument { method GetAttributes (line 128) | func (i *Instrument) GetAttributes() []attribute.KeyValue { method AddCounter (line 137) | func (i *Instrument) AddCounter(ctx context.Context, value int64) { method IncrCounter (line 143) | func (i *Instrument) IncrCounter(ctx context.Context) { method RecordHistogram (line 148) | func (i *Instrument) RecordHistogram(ctx context.Context, value float6... method RecordDuration (line 154) | func (i *Instrument) RecordDuration(ctx context.Context, durationMs fl... type InstrumentOption (line 42) | type InstrumentOption function WithBounds (line 45) | func WithBounds(bounds []float64) InstrumentOption { function WithInstrumentAttrs (line 52) | func WithInstrumentAttrs(attrs map[string]any) InstrumentOption { function NewInstrument (line 61) | func NewInstrument(meterName, instrumentName string, opts ...InstrumentO... function NewGlobalInstrument (line 76) | func NewGlobalInstrument(meterName, instrumentName string, opts ...Instr... type Counter (line 163) | type Counter struct method Add (line 178) | func (c *Counter) Add(ctx context.Context, value int64) { method Incr (line 183) | func (c *Counter) Incr(ctx context.Context) { method With (line 188) | func (c *Counter) With(key string, value any) *Counter { function NewCounter (line 168) | func NewCounter(meterName, instrumentName string, opts ...InstrumentOpti... function NewGlobalCounter (line 173) | func NewGlobalCounter(meterName, instrumentName string, opts ...Instrume... type Histogram (line 199) | type Histogram struct method Record (line 214) | func (h *Histogram) Record(ctx context.Context, value float64) { method With (line 219) | func (h *Histogram) With(key string, value any) *Histogram { function NewHistogram (line 204) | func NewHistogram(meterName, instrumentName string, opts ...InstrumentOp... function NewGlobalHistogram (line 209) | func NewGlobalHistogram(meterName, instrumentName string, opts ...Instru... type Timer (line 230) | type Timer struct method SetAttribute (line 245) | func (t *Timer) SetAttribute(key string, value any) *Timer { method Record (line 251) | func (t *Timer) Record(ctx context.Context, durationMs float64) { method With (line 256) | func (t *Timer) With(key string, value any) *Timer { function NewTimer (line 235) | func NewTimer(meterName, instrumentName string, opts ...InstrumentOption... function NewGlobalTimer (line 240) | func NewGlobalTimer(meterName, instrumentName string, opts ...Instrument... FILE: pkg/opentelemetry/metric/meter.go type MeterOptinos (line 35) | type MeterOptinos struct type Meter (line 44) | type Meter struct method Install (line 65) | func (m *Meter) Install(ctx context.Context) (err error) { method InstallAsAppProvider (line 79) | func (m *Meter) InstallAsAppProvider(ctx context.Context) (otelmetric.... method GetProvider (line 89) | func (m *Meter) GetProvider() otelmetric.MeterProvider { method createMeterProvider (line 94) | func (m *Meter) createMeterProvider(ctx context.Context) (*metric.Mete... method createPushExporter (line 137) | func (m *Meter) createPushExporter(ctx context.Context) (metric.Export... method createPullReader (line 158) | func (m *Meter) createPullReader(ctx context.Context, function defaultMeterOptions (line 49) | func defaultMeterOptions() MeterOptinos { function NewMeter (line 55) | func NewMeter(opts ...MeterOption) *Meter { FILE: pkg/opentelemetry/metric/meter.logging_exporter.go type LoggingExporter (line 34) | type LoggingExporter struct method Temporality (line 50) | func (e *LoggingExporter) Temporality(kind metric.InstrumentKind) metr... method Aggregation (line 55) | func (e *LoggingExporter) Aggregation(kind metric.InstrumentKind) metr... method Export (line 60) | func (e *LoggingExporter) Export(ctx context.Context, rm *metricdata.R... method ForceFlush (line 102) | func (e *LoggingExporter) ForceFlush(ctx context.Context) error { method Shutdown (line 107) | func (e *LoggingExporter) Shutdown(ctx context.Context) error { function NewLoggingExporter (line 41) | func NewLoggingExporter(inner metric.Exporter, name, endpoint string) *L... function countDataPoints (line 113) | func countDataPoints(m metricdata.Metrics) int { function getTemporality (line 137) | func getTemporality(m metricdata.Metrics) string { FILE: pkg/opentelemetry/metric/meter.option.go function WithPushExporter (line 30) | func WithPushExporter(pushExporterBuilder PushExporterBuilder) MeterOpti... function WithPullExporter (line 36) | func WithPullExporter(pullExporterBuilder PullExporterBuilder) MeterOpti... function WithCollectPeriod (line 42) | func WithCollectPeriod(period time.Duration) MeterOption { function WithResource (line 49) | func WithResource(res *resource.Resource) MeterOption { FILE: pkg/opentelemetry/metric/meter.pull.exporter.go type PullExporterBuilder (line 30) | type PullExporterBuilder interface FILE: pkg/opentelemetry/metric/meter.push.exporter.go type PushExporterBuilder (line 30) | type PushExporterBuilder interface FILE: pkg/opentelemetry/metric/meter_option.go type MeterOption (line 25) | type MeterOption interface type EmptyMeterOption (line 33) | type EmptyMeterOption struct method apply (line 35) | func (EmptyMeterOption) apply(*Meter) {} type MeterOptionFunc (line 39) | type MeterOptionFunc method apply (line 41) | func (f MeterOptionFunc) apply(do *Meter) { function _MeterOptionWithDefault (line 46) | func _MeterOptionWithDefault() MeterOption { method ApplyOptions (line 51) | func (o *Meter) ApplyOptions(options ...MeterOption) *Meter { function WithExporterLogging (line 64) | func WithExporterLogging(name, endpoint string) MeterOption { FILE: pkg/opentelemetry/metric/otlp/otlp.metric.go type Protocol (line 37) | type Protocol constant ProtocolHTTP (line 40) | ProtocolHTTP Protocol = iota constant ProtocolGRPC (line 41) | ProtocolGRPC type OTLPExporterBuilderOptions (line 44) | type OTLPExporterBuilderOptions struct type OTLPExporterBuilder (line 71) | type OTLPExporterBuilder struct method Build (line 92) | func (p *OTLPExporterBuilder) Build(ctx context.Context) (metric.Expor... method buildHTTPExporter (line 103) | func (p *OTLPExporterBuilder) buildHTTPExporter(ctx context.Context) (... method buildGRPCExporter (line 144) | func (p *OTLPExporterBuilder) buildGRPCExporter(ctx context.Context) (... function defaultBuilderOptions (line 75) | func defaultBuilderOptions() OTLPExporterBuilderOptions { function NewOTLPExporterBuilder (line 84) | func NewOTLPExporterBuilder(opts ...OTLPExporterBuilderOption) *OTLPExpo... function deltaTemporalitySelector (line 184) | func deltaTemporalitySelector(kind metric.InstrumentKind) metricdata.Tem... FILE: pkg/opentelemetry/metric/otlp/otlp.metric.option.go type OTLPExporterBuilderOption (line 26) | type OTLPExporterBuilderOption interface type funcOTLPExporterBuilderOption (line 30) | type funcOTLPExporterBuilderOption struct method apply (line 34) | func (fdo *funcOTLPExporterBuilderOption) apply(do *OTLPExporterBuilde... function newFuncOTLPExporterBuilderOption (line 38) | func newFuncOTLPExporterBuilderOption(f func(*OTLPExporterBuilder)) *fun... method ApplyOptions (line 42) | func (o *OTLPExporterBuilder) ApplyOptions(opts ...OTLPExporterBuilderOp... function WithEndpoint (line 51) | func WithEndpoint(endpoint string) OTLPExporterBuilderOption { function WithHeaders (line 59) | func WithHeaders(headers map[string]string) OTLPExporterBuilderOption { function WithProtocol (line 66) | func WithProtocol(protocol Protocol) OTLPExporterBuilderOption { function WithInsecure (line 73) | func WithInsecure(insecure bool) OTLPExporterBuilderOption { function WithTimeout (line 80) | func WithTimeout(timeout time.Duration) OTLPExporterBuilderOption { function WithURLPath (line 87) | func WithURLPath(urlPath string) OTLPExporterBuilderOption { function WithCompression (line 94) | func WithCompression(compression bool) OTLPExporterBuilderOption { function WithTemporalityDelta (line 102) | func WithTemporalityDelta(delta bool) OTLPExporterBuilderOption { FILE: pkg/opentelemetry/metric/otlp/otlp.metric_option.go function WithOTLPPushExporter (line 32) | func WithOTLPPushExporter( function WithTencentCloudPrometheus (line 44) | func WithTencentCloudPrometheus( FILE: pkg/opentelemetry/metric/prometheus/prometheus.metric.go constant defaultMetricsUrl (line 36) | defaultMetricsUrl = "/metrics" function GetGlobalRegistry (line 48) | func GetGlobalRegistry() *prometheus.Registry { function GetMetricsHandler (line 63) | func GetMetricsHandler() http.Handler { type PrometheusExporterBuilderOptions (line 68) | type PrometheusExporterBuilderOptions struct type PrometheusExporterBuilder (line 72) | type PrometheusExporterBuilder struct method Build (line 92) | func (p *PrometheusExporterBuilder) Build(ctx context.Context) (metric... method GetUrlPath (line 98) | func (p *PrometheusExporterBuilder) GetUrlPath() string { function defaultBuilderOptions (line 76) | func defaultBuilderOptions() PrometheusExporterBuilderOptions { function NewPrometheusExporterBuilder (line 82) | func NewPrometheusExporterBuilder(opts ...PrometheusExporterBuilderOptio... function NewPrometheusReader (line 103) | func NewPrometheusReader(ctx context.Context, reg prometheus.Registerer)... FILE: pkg/opentelemetry/metric/prometheus/prometheus.metric.option.go function WithMetricUrlPath (line 24) | func WithMetricUrlPath(url string) PrometheusExporterBuilderOption { FILE: pkg/opentelemetry/metric/prometheus/prometheus.metric_option.go type PrometheusExporterBuilderOption (line 25) | type PrometheusExporterBuilderOption interface type EmptyPrometheusExporterBuilderOption (line 33) | type EmptyPrometheusExporterBuilderOption struct method apply (line 35) | func (EmptyPrometheusExporterBuilderOption) apply(*PrometheusExporterB... type PrometheusExporterBuilderOptionFunc (line 39) | type PrometheusExporterBuilderOptionFunc method apply (line 41) | func (f PrometheusExporterBuilderOptionFunc) apply(do *PrometheusExpor... function _PrometheusExporterBuilderOptionWithDefault (line 46) | func _PrometheusExporterBuilderOptionWithDefault() PrometheusExporterBui... method ApplyOptions (line 52) | func (o *PrometheusExporterBuilder) ApplyOptions( FILE: pkg/opentelemetry/metric/report/dimension.go constant RetCodeSuccess (line 35) | RetCodeSuccess = 0 constant RetCodeTimeout (line 36) | RetCodeTimeout = -1 type ServerDimension (line 40) | type ServerDimension struct method IsSuccess (line 57) | func (d *ServerDimension) IsSuccess() bool { method IsTimeout (line 62) | func (d *ServerDimension) IsTimeout() bool { method ToAttributes (line 67) | func (d *ServerDimension) ToAttributes() []attribute.KeyValue { type ClientDimension (line 98) | type ClientDimension struct method IsSuccess (line 118) | func (d *ClientDimension) IsSuccess() bool { method IsTimeout (line 123) | func (d *ClientDimension) IsTimeout() bool { method ToAttributes (line 128) | func (d *ClientDimension) ToAttributes() []attribute.KeyValue { function ErrorToRetCode (line 171) | func ErrorToRetCode(err error) int { FILE: pkg/opentelemetry/metric/report/report.go constant ServerReportMeterName (line 37) | ServerReportMeterName = "server_report" constant ClientReportMeterName (line 38) | ClientReportMeterName = "client_report" constant RequestsMetricName (line 41) | RequestsMetricName = "requests" constant SuccessMetricName (line 42) | SuccessMetricName = "success" constant TimeoutMetricName (line 43) | TimeoutMetricName = "timeout" constant AbnormalMetricName (line 44) | AbnormalMetricName = "abnormal" constant CostMetricName (line 45) | CostMetricName = "cost" constant DurationMetricName (line 46) | DurationMetricName = "duration" type MetricReporter (line 72) | type MetricReporter struct method getCounter (line 105) | func (r *MetricReporter) getCounter(meterName, metricName string) otel... method getHistogram (line 133) | func (r *MetricReporter) getHistogram(meterName, metricName string, bo... method ReportServerMetric (line 166) | func (r *MetricReporter) ReportServerMetric(ctx context.Context, dim *... method ReportClientMetric (line 189) | func (r *MetricReporter) ReportClientMetric(ctx context.Context, dim *... function GetGlobalReporter (line 86) | func GetGlobalReporter() *MetricReporter { function NewMetricReporter (line 94) | func NewMetricReporter(provider otelmetric.MeterProvider) *MetricReporter { function ReportServerMetric (line 212) | func ReportServerMetric(ctx context.Context, dim *ServerDimension, costM... function ReportClientMetric (line 217) | func ReportClientMetric(ctx context.Context, dim *ClientDimension, costM... FILE: pkg/opentelemetry/metric/stdout/stdout.metric.go type StdoutExporterBuilderOptions (line 32) | type StdoutExporterBuilderOptions struct type StdoutExporterBuilder (line 36) | type StdoutExporterBuilder struct method Build (line 53) | func (p *StdoutExporterBuilder) Build( function defaultBuilderOptions (line 40) | func defaultBuilderOptions() StdoutExporterBuilderOptions { function NewStdoutExporterBuilder (line 44) | func NewStdoutExporterBuilder(opts ...StdoutExporterBuilderOption) *Stdo... FILE: pkg/opentelemetry/metric/stdout/stdout.metric.option.go function WithPrettyPrint (line 31) | func WithPrettyPrint(prettyPrint bool) StdoutExporterBuilderOption { FILE: pkg/opentelemetry/metric/stdout/stdout.metric_option.go type StdoutExporterBuilderOption (line 25) | type StdoutExporterBuilderOption interface type EmptyStdoutExporterBuilderOption (line 33) | type EmptyStdoutExporterBuilderOption struct method apply (line 35) | func (EmptyStdoutExporterBuilderOption) apply(*StdoutExporterBuilder) {} type StdoutExporterBuilderOptionFunc (line 39) | type StdoutExporterBuilderOptionFunc method apply (line 41) | func (f StdoutExporterBuilderOptionFunc) apply(do *StdoutExporterBuild... function _StdoutExporterBuilderOptionWithDefault (line 46) | func _StdoutExporterBuilderOptionWithDefault() StdoutExporterBuilderOpti... method ApplyOptions (line 52) | func (o *StdoutExporterBuilder) ApplyOptions( FILE: pkg/opentelemetry/opentelemetry.go type OpenTelemetryServiceOptions (line 32) | type OpenTelemetryServiceOptions struct type OpenTelemetryService (line 38) | type OpenTelemetryService struct method Install (line 49) | func (t *OpenTelemetryService) Install(ctx context.Context) error { function NewOpenTelemetryService (line 42) | func NewOpenTelemetryService(opts ...OpenTelemetryServiceOption) *OpenTe... FILE: pkg/opentelemetry/opentelemetry.option.go function WithMeterPushExporter (line 32) | func WithMeterPushExporter(pushExporterBuilder metric.PushExporterBuilde... function WithMeterPullExporter (line 39) | func WithMeterPullExporter(pullExporterBuilder metric.PullExporterBuilde... function WithMetricCollectDuration (line 45) | func WithMetricCollectDuration(period time.Duration) OpenTelemetryServic... function WithTracerExporter (line 51) | func WithTracerExporter(exporterBuilder tracer.TracerExporterBuilder) Op... function WithResource (line 58) | func WithResource(res *resource.Resource) OpenTelemetryServiceOption { function WithMeterResource (line 67) | func WithMeterResource(res *resource.Resource) OpenTelemetryServiceOption { function WithAppMeterPushExporter (line 78) | func WithAppMeterPushExporter(pushExporterBuilder metric.PushExporterBui... function WithAppMeterPullExporter (line 85) | func WithAppMeterPullExporter(pullExporterBuilder metric.PullExporterBui... function WithAppMetricCollectDuration (line 92) | func WithAppMetricCollectDuration(period time.Duration) OpenTelemetrySer... function WithAppMeterResource (line 99) | func WithAppMeterResource(res *resource.Resource) OpenTelemetryServiceOp... function WithMeterExporterLogging (line 108) | func WithMeterExporterLogging(name, endpoint string) OpenTelemetryServic... function WithAppMeterExporterLogging (line 115) | func WithAppMeterExporterLogging(name, endpoint string) OpenTelemetrySer... function WithTracerExporterLogging (line 124) | func WithTracerExporterLogging(name, endpoint string) OpenTelemetryServi... FILE: pkg/opentelemetry/opentelemetry.pb.go constant _ (line 21) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 23) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type OtelTraceExporterType (line 26) | type OtelTraceExporterType method Enum (line 48) | func (x OtelTraceExporterType) Enum() *OtelTraceExporterType { method String (line 54) | func (x OtelTraceExporterType) String() string { method Descriptor (line 58) | func (OtelTraceExporterType) Descriptor() protoreflect.EnumDescriptor { method Type (line 62) | func (OtelTraceExporterType) Type() protoreflect.EnumType { method Number (line 66) | func (x OtelTraceExporterType) Number() protoreflect.EnumNumber { method EnumDescriptor (line 71) | func (OtelTraceExporterType) EnumDescriptor() ([]byte, []int) { constant OtelTraceExporterType_trace_none (line 29) | OtelTraceExporterType_trace_none OtelTraceExporterType = 0 constant OtelTraceExporterType_trace_stdout (line 30) | OtelTraceExporterType_trace_stdout OtelTraceExporterType = 1 constant OtelTraceExporterType_trace_otlp (line 31) | OtelTraceExporterType_trace_otlp OtelTraceExporterType = 2 type OtelMetricExporterType (line 75) | type OtelMetricExporterType method Enum (line 100) | func (x OtelMetricExporterType) Enum() *OtelMetricExporterType { method String (line 106) | func (x OtelMetricExporterType) String() string { method Descriptor (line 110) | func (OtelMetricExporterType) Descriptor() protoreflect.EnumDescriptor { method Type (line 114) | func (OtelMetricExporterType) Type() protoreflect.EnumType { method Number (line 118) | func (x OtelMetricExporterType) Number() protoreflect.EnumNumber { method EnumDescriptor (line 123) | func (OtelMetricExporterType) EnumDescriptor() ([]byte, []int) { constant OtelMetricExporterType_metric_none (line 78) | OtelMetricExporterType_metric_none OtelMetricExporterType = 0 constant OtelMetricExporterType_metric_stdout (line 79) | OtelMetricExporterType_metric_stdout OtelMetricExporterType = 1 constant OtelMetricExporterType_metric_otlp (line 80) | OtelMetricExporterType_metric_otlp OtelMetricExporterType = 2 constant OtelMetricExporterType_metric_prometheus (line 81) | OtelMetricExporterType_metric_prometheus OtelMetricExporterType = 3 type OtelLogExporterType (line 127) | type OtelLogExporterType method Enum (line 146) | func (x OtelLogExporterType) Enum() *OtelLogExporterType { method String (line 152) | func (x OtelLogExporterType) String() string { method Descriptor (line 156) | func (OtelLogExporterType) Descriptor() protoreflect.EnumDescriptor { method Type (line 160) | func (OtelLogExporterType) Type() protoreflect.EnumType { method Number (line 164) | func (x OtelLogExporterType) Number() protoreflect.EnumNumber { method EnumDescriptor (line 169) | func (OtelLogExporterType) EnumDescriptor() ([]byte, []int) { constant OtelLogExporterType_log_none (line 130) | OtelLogExporterType_log_none OtelLogExporterType = 0 constant OtelLogExporterType_log_otlp (line 131) | OtelLogExporterType_log_otlp OtelLogExporterType = 1 type OpenTelemetry (line 174) | type OpenTelemetry struct method Reset (line 191) | func (x *OpenTelemetry) Reset() { method String (line 198) | func (x *OpenTelemetry) String() string { method ProtoMessage (line 202) | func (*OpenTelemetry) ProtoMessage() {} method ProtoReflect (line 204) | func (x *OpenTelemetry) ProtoReflect() protoreflect.Message { method Descriptor (line 217) | func (*OpenTelemetry) Descriptor() ([]byte, []int) { method GetEnabled (line 221) | func (x *OpenTelemetry) GetEnabled() bool { method GetMetricCollectDuration (line 228) | func (x *OpenTelemetry) GetMetricCollectDuration() *durationpb.Duration { method GetOtelTraceExporterType (line 235) | func (x *OpenTelemetry) GetOtelTraceExporterType() OtelTraceExporterTy... method GetOtelMetricExporterType (line 242) | func (x *OpenTelemetry) GetOtelMetricExporterType() OtelMetricExporter... method GetOtelLogExporterType (line 249) | func (x *OpenTelemetry) GetOtelLogExporterType() OtelLogExporterType { method GetOtelMetricExporter (line 256) | func (x *OpenTelemetry) GetOtelMetricExporter() *OtelMetricExporter { method GetOtelTraceExporter (line 263) | func (x *OpenTelemetry) GetOtelTraceExporter() *OtelTraceExporter { method GetResource (line 270) | func (x *OpenTelemetry) GetResource() *Resource { method GetAppMeterProvider (line 277) | func (x *OpenTelemetry) GetAppMeterProvider() *AppMeterProvider { type AppMeterProvider (line 286) | type AppMeterProvider struct method Reset (line 303) | func (x *AppMeterProvider) Reset() { method String (line 310) | func (x *AppMeterProvider) String() string { method ProtoMessage (line 314) | func (*AppMeterProvider) ProtoMessage() {} method ProtoReflect (line 316) | func (x *AppMeterProvider) ProtoReflect() protoreflect.Message { method Descriptor (line 329) | func (*AppMeterProvider) Descriptor() ([]byte, []int) { method GetEnabled (line 333) | func (x *AppMeterProvider) GetEnabled() bool { method GetExporterType (line 340) | func (x *AppMeterProvider) GetExporterType() OtelMetricExporterType { method GetExporter (line 347) | func (x *AppMeterProvider) GetExporter() *OtelMetricExporter { method GetCollectDuration (line 354) | func (x *AppMeterProvider) GetCollectDuration() *durationpb.Duration { method GetResource (line 361) | func (x *AppMeterProvider) GetResource() *Resource { type Resource (line 368) | type Resource struct method Reset (line 384) | func (x *Resource) Reset() { method String (line 391) | func (x *Resource) String() string { method ProtoMessage (line 395) | func (*Resource) ProtoMessage() {} method ProtoReflect (line 397) | func (x *Resource) ProtoReflect() protoreflect.Message { method Descriptor (line 410) | func (*Resource) Descriptor() ([]byte, []int) { method GetServiceName (line 414) | func (x *Resource) GetServiceName() string { method GetServiceVersion (line 421) | func (x *Resource) GetServiceVersion() string { method GetAttrs (line 428) | func (x *Resource) GetAttrs() map[string]string { method GetK8S (line 435) | func (x *Resource) GetK8S() *K8SResource { method GetApm (line 442) | func (x *Resource) GetApm() *Apm { method GetZhiyan (line 449) | func (x *Resource) GetZhiyan() *ZhiYan { type Apm (line 458) | type Apm struct method Reset (line 467) | func (x *Apm) Reset() { method String (line 474) | func (x *Apm) String() string { method ProtoMessage (line 478) | func (*Apm) ProtoMessage() {} method ProtoReflect (line 480) | func (x *Apm) ProtoReflect() protoreflect.Message { method Descriptor (line 493) | func (*Apm) Descriptor() ([]byte, []int) { method GetToken (line 497) | func (x *Apm) GetToken() string { type ZhiYan (line 505) | type ZhiYan struct method Reset (line 542) | func (x *ZhiYan) Reset() { method String (line 549) | func (x *ZhiYan) String() string { method ProtoMessage (line 553) | func (*ZhiYan) ProtoMessage() {} method ProtoReflect (line 555) | func (x *ZhiYan) ProtoReflect() protoreflect.Message { method Descriptor (line 568) | func (*ZhiYan) Descriptor() ([]byte, []int) { method GetAppMark (line 572) | func (x *ZhiYan) GetAppMark() string { method GetGlobalAppMark (line 579) | func (x *ZhiYan) GetGlobalAppMark() string { method GetEnv (line 586) | func (x *ZhiYan) GetEnv() string { method GetInstanceMark (line 593) | func (x *ZhiYan) GetInstanceMark() string { method GetZhiyanApmToken (line 600) | func (x *ZhiYan) GetZhiyanApmToken() string { method GetExpandKey (line 607) | func (x *ZhiYan) GetExpandKey() string { method GetMetricGroup (line 614) | func (x *ZhiYan) GetMetricGroup() string { method GetDataGrain (line 621) | func (x *ZhiYan) GetDataGrain() int32 { method GetDataType (line 628) | func (x *ZhiYan) GetDataType() string { type K8SResource (line 635) | type K8SResource struct method Reset (line 649) | func (x *K8SResource) Reset() { method String (line 656) | func (x *K8SResource) String() string { method ProtoMessage (line 660) | func (*K8SResource) ProtoMessage() {} method ProtoReflect (line 662) | func (x *K8SResource) ProtoReflect() protoreflect.Message { method Descriptor (line 675) | func (*K8SResource) Descriptor() ([]byte, []int) { method GetEnabled (line 679) | func (x *K8SResource) GetEnabled() bool { method GetNodeIp (line 686) | func (x *K8SResource) GetNodeIp() string { method GetPodNamespace (line 693) | func (x *K8SResource) GetPodNamespace() string { method GetPodName (line 700) | func (x *K8SResource) GetPodName() string { method GetPodIp (line 707) | func (x *K8SResource) GetPodIp() string { method GetContainerName (line 714) | func (x *K8SResource) GetContainerName() string { method GetContainerPlatform (line 721) | func (x *K8SResource) GetContainerPlatform() string { type OtelMetricExporter (line 728) | type OtelMetricExporter struct method Reset (line 737) | func (x *OtelMetricExporter) Reset() { method String (line 744) | func (x *OtelMetricExporter) String() string { method ProtoMessage (line 748) | func (*OtelMetricExporter) ProtoMessage() {} method ProtoReflect (line 750) | func (x *OtelMetricExporter) ProtoReflect() protoreflect.Message { method Descriptor (line 763) | func (*OtelMetricExporter) Descriptor() ([]byte, []int) { method GetPrometheus (line 767) | func (x *OtelMetricExporter) GetPrometheus() *Prometheus { method GetStdout (line 774) | func (x *OtelMetricExporter) GetStdout() *Stdout { method GetOtlp (line 781) | func (x *OtelMetricExporter) GetOtlp() *OTLP { type OtelTraceExporter (line 788) | type OtelTraceExporter struct method Reset (line 796) | func (x *OtelTraceExporter) Reset() { method String (line 803) | func (x *OtelTraceExporter) String() string { method ProtoMessage (line 807) | func (*OtelTraceExporter) ProtoMessage() {} method ProtoReflect (line 809) | func (x *OtelTraceExporter) ProtoReflect() protoreflect.Message { method Descriptor (line 822) | func (*OtelTraceExporter) Descriptor() ([]byte, []int) { method GetStdout (line 826) | func (x *OtelTraceExporter) GetStdout() *Stdout { method GetOtlp (line 833) | func (x *OtelTraceExporter) GetOtlp() *OTLP { type Prometheus (line 840) | type Prometheus struct method Reset (line 847) | func (x *Prometheus) Reset() { method String (line 854) | func (x *Prometheus) String() string { method ProtoMessage (line 858) | func (*Prometheus) ProtoMessage() {} method ProtoReflect (line 860) | func (x *Prometheus) ProtoReflect() protoreflect.Message { method Descriptor (line 873) | func (*Prometheus) Descriptor() ([]byte, []int) { method GetUrl (line 877) | func (x *Prometheus) GetUrl() string { type Stdout (line 884) | type Stdout struct method Reset (line 891) | func (x *Stdout) Reset() { method String (line 898) | func (x *Stdout) String() string { method ProtoMessage (line 902) | func (*Stdout) ProtoMessage() {} method ProtoReflect (line 904) | func (x *Stdout) ProtoReflect() protoreflect.Message { method Descriptor (line 917) | func (*Stdout) Descriptor() ([]byte, []int) { method GetPrettyPrint (line 921) | func (x *Stdout) GetPrettyPrint() bool { type OTLP (line 929) | type OTLP struct method Reset (line 952) | func (x *OTLP) Reset() { method String (line 959) | func (x *OTLP) String() string { method ProtoMessage (line 963) | func (*OTLP) ProtoMessage() {} method ProtoReflect (line 965) | func (x *OTLP) ProtoReflect() protoreflect.Message { method Descriptor (line 978) | func (*OTLP) Descriptor() ([]byte, []int) { method GetEndpoint (line 982) | func (x *OTLP) GetEndpoint() string { method GetToken (line 989) | func (x *OTLP) GetToken() string { method GetProtocol (line 996) | func (x *OTLP) GetProtocol() string { method GetInsecure (line 1003) | func (x *OTLP) GetInsecure() bool { method GetHeaders (line 1010) | func (x *OTLP) GetHeaders() map[string]string { method GetUrlPath (line 1017) | func (x *OTLP) GetUrlPath() string { method GetCompression (line 1024) | func (x *OTLP) GetCompression() bool { method GetTemporalityDelta (line 1031) | func (x *OTLP) GetTemporalityDelta() bool { constant file_pkg_opentelemetry_opentelemetry_proto_rawDesc (line 1040) | file_pkg_opentelemetry_opentelemetry_proto_rawDesc = "" + function file_pkg_opentelemetry_opentelemetry_proto_rawDescGZIP (line 1140) | func file_pkg_opentelemetry_opentelemetry_proto_rawDescGZIP() []byte { function init (line 1198) | func init() { file_pkg_opentelemetry_opentelemetry_proto_init() } function file_pkg_opentelemetry_opentelemetry_proto_init (line 1199) | func file_pkg_opentelemetry_opentelemetry_proto_init() { FILE: pkg/opentelemetry/opentelemetry_option.go type OpenTelemetryServiceOption (line 25) | type OpenTelemetryServiceOption interface type EmptyOpenTelemetryServiceOption (line 33) | type EmptyOpenTelemetryServiceOption struct method apply (line 35) | func (EmptyOpenTelemetryServiceOption) apply(*OpenTelemetryService) {} type OpenTelemetryServiceOptionFunc (line 39) | type OpenTelemetryServiceOptionFunc method apply (line 41) | func (f OpenTelemetryServiceOptionFunc) apply(do *OpenTelemetryService) { function _OpenTelemetryServiceOptionWithDefault (line 46) | func _OpenTelemetryServiceOptionWithDefault() OpenTelemetryServiceOption { method ApplyOptions (line 51) | func (o *OpenTelemetryService) ApplyOptions(options ...OpenTelemetryServ... FILE: pkg/opentelemetry/opentelemetry_test.go constant instrumentationName (line 40) | instrumentationName = "github/kaydxh/instrument" constant instrumentationVersion (line 41) | instrumentationVersion = "v0.0.1" function memoryUsageCallBack (line 54) | func memoryUsageCallBack(total, free uint64, usage float64) { function TestMetric (line 58) | func TestMetric(t *testing.T) { function metrics (line 83) | func metrics(ctx context.Context, n int) { function TestTrace (line 90) | func TestTrace(t *testing.T) { function doTrace (line 114) | func doTrace(ctx context.Context) { FILE: pkg/opentelemetry/resource/resource.go constant EnvNodeIP (line 36) | EnvNodeIP = "NODE_IP" constant EnvPodNamespace (line 37) | EnvPodNamespace = "POD_NAMESPACE" constant EnvPodName (line 38) | EnvPodName = "POD_NAME" constant EnvPodIP (line 39) | EnvPodIP = "POD_IP" constant EnvContainerName (line 40) | EnvContainerName = "CONTAINER_NAME" constant EnvContainerPlatform (line 41) | EnvContainerPlatform = "CONTAINER_PLATFORM" type ResourceOptions (line 83) | type ResourceOptions struct type ResourceOption (line 107) | type ResourceOption function WithServiceName (line 110) | func WithServiceName(name string) ResourceOption { function WithServiceVersion (line 117) | func WithServiceVersion(version string) ResourceOption { function WithAttrs (line 124) | func WithAttrs(attrs map[string]string) ResourceOption { function WithK8s (line 131) | func WithK8s(enable bool) ResourceOption { function WithApmToken (line 138) | func WithApmToken(token string) ResourceOption { function WithZhiYanAppMark (line 147) | func WithZhiYanAppMark(appMark string) ResourceOption { function WithZhiYanGlobalAppMark (line 154) | func WithZhiYanGlobalAppMark(globalAppMark string) ResourceOption { function WithZhiYanEnv (line 161) | func WithZhiYanEnv(env string) ResourceOption { function WithZhiYanInstanceMark (line 168) | func WithZhiYanInstanceMark(instanceMark string) ResourceOption { function WithZhiYanApmToken (line 175) | func WithZhiYanApmToken(token string) ResourceOption { function WithZhiYanExpandKey (line 182) | func WithZhiYanExpandKey(expand string) ResourceOption { function WithZhiYanMetricGroup (line 190) | func WithZhiYanMetricGroup(group string) ResourceOption { function WithZhiYanDataGrain (line 198) | func WithZhiYanDataGrain(grain int) ResourceOption { function WithZhiYanDataType (line 206) | func WithZhiYanDataType(dataType string) ResourceOption { function WithMeterType (line 213) | func WithMeterType(meterType string) ResourceOption { constant MeterTypeGlobal (line 221) | MeterTypeGlobal = "global" constant MeterTypeApp (line 222) | MeterTypeApp = "app" function NewResource (line 226) | func NewResource(opts ...ResourceOption) (*resource.Resource, error) { function getZhiYanAttributes (line 275) | func getZhiYanAttributes(options *ResourceOptions) []attribute.KeyValue { function GetK8sAttributes (line 340) | func GetK8sAttributes() []attribute.KeyValue { function IsInK8s (line 377) | func IsInK8s() bool { FILE: pkg/opentelemetry/resource/resource.memory.go constant MemoryTotalKey (line 16) | MemoryTotalKey = "memory_total" constant MemoryUsageKey (line 17) | MemoryUsageKey = "memory_usage" constant MemoryAvailableKey (line 18) | MemoryAvailableKey = "memory_available" type ResourceStatsMetrics (line 21) | type ResourceStatsMetrics struct method ReportMetric (line 120) | func (r *ResourceStatsMetrics) ReportMetric(ctx context.Context) (tota... function Attrs (line 38) | func Attrs() []attribute.KeyValue { function NewResourceStatsMetrics (line 52) | func NewResourceStatsMetrics() (*ResourceStatsMetrics, error) { FILE: pkg/opentelemetry/resource/resource.stats.go constant DefaultCheckInterval (line 16) | DefaultCheckInterval time.Duration = time.Minute type ResourceStatsOptions (line 19) | type ResourceStatsOptions struct type ResourceStatsService (line 24) | type ResourceStatsService struct method Run (line 53) | func (s *ResourceStatsService) Run(ctx context.Context) error { method getLogger (line 66) | func (s *ResourceStatsService) getLogger() *logrus.Entry { method Serve (line 71) | func (s *ResourceStatsService) Serve(ctx context.Context) error { method Shutdown (line 103) | func (s *ResourceStatsService) Shutdown() { function NewResourceStatsService (line 35) | func NewResourceStatsService(opts ...ResourceStatsServiceOption) (*Resou... FILE: pkg/opentelemetry/resource/resource_stats.option.go function WithStatsCheckInterval (line 28) | func WithStatsCheckInterval(interval time.Duration) ResourceStatsService... function WithMemoryCallBack (line 34) | func WithMemoryCallBack(f func(total uint64, free uint64, usage float64)... FILE: pkg/opentelemetry/resource/resource_stats_option.go type ResourceStatsServiceOption (line 25) | type ResourceStatsServiceOption interface type EmptyResourceStatsServiceOption (line 33) | type EmptyResourceStatsServiceOption struct method apply (line 35) | func (EmptyResourceStatsServiceOption) apply(*ResourceStatsService) {} type ResourceStatsServiceOptionFunc (line 39) | type ResourceStatsServiceOptionFunc method apply (line 41) | func (f ResourceStatsServiceOptionFunc) apply(do *ResourceStatsService) { function _ResourceStatsServiceOptionWithDefault (line 46) | func _ResourceStatsServiceOptionWithDefault() ResourceStatsServiceOption { method ApplyOptions (line 51) | func (o *ResourceStatsService) ApplyOptions(options ...ResourceStatsServ... FILE: pkg/opentelemetry/tracer/otlp/otlp.trace.go type Protocol (line 36) | type Protocol constant ProtocolHTTP (line 39) | ProtocolHTTP Protocol = iota constant ProtocolGRPC (line 40) | ProtocolGRPC type OTLPTraceExporterBuilderOptions (line 43) | type OTLPTraceExporterBuilderOptions struct type OTLPTraceExporterBuilder (line 66) | type OTLPTraceExporterBuilder struct method Build (line 87) | func (b *OTLPTraceExporterBuilder) Build(ctx context.Context) (sdktrac... method buildHTTPExporter (line 98) | func (b *OTLPTraceExporterBuilder) buildHTTPExporter(ctx context.Conte... method buildGRPCExporter (line 135) | func (b *OTLPTraceExporterBuilder) buildGRPCExporter(ctx context.Conte... function defaultBuilderOptions (line 70) | func defaultBuilderOptions() OTLPTraceExporterBuilderOptions { function NewOTLPTraceExporterBuilder (line 79) | func NewOTLPTraceExporterBuilder(opts ...OTLPTraceExporterBuilderOption)... FILE: pkg/opentelemetry/tracer/otlp/otlp.trace.option.go type OTLPTraceExporterBuilderOption (line 26) | type OTLPTraceExporterBuilderOption interface type funcOTLPTraceExporterBuilderOption (line 30) | type funcOTLPTraceExporterBuilderOption struct method apply (line 34) | func (fdo *funcOTLPTraceExporterBuilderOption) apply(do *OTLPTraceExpo... function newFuncOTLPTraceExporterBuilderOption (line 38) | func newFuncOTLPTraceExporterBuilderOption(f func(*OTLPTraceExporterBuil... method ApplyOptions (line 42) | func (o *OTLPTraceExporterBuilder) ApplyOptions(opts ...OTLPTraceExporte... function WithEndpoint (line 51) | func WithEndpoint(endpoint string) OTLPTraceExporterBuilderOption { function WithHeaders (line 58) | func WithHeaders(headers map[string]string) OTLPTraceExporterBuilderOpti... function WithProtocol (line 65) | func WithProtocol(protocol Protocol) OTLPTraceExporterBuilderOption { function WithInsecure (line 72) | func WithInsecure(insecure bool) OTLPTraceExporterBuilderOption { function WithTimeout (line 79) | func WithTimeout(timeout time.Duration) OTLPTraceExporterBuilderOption { function WithURLPath (line 86) | func WithURLPath(urlPath string) OTLPTraceExporterBuilderOption { function WithCompression (line 93) | func WithCompression(compression bool) OTLPTraceExporterBuilderOption { FILE: pkg/opentelemetry/tracer/stdout/stdout.trace.go type StdoutExporterBuilderOptions (line 32) | type StdoutExporterBuilderOptions struct type StdoutExporterBuilder (line 36) | type StdoutExporterBuilder struct method Build (line 53) | func (p *StdoutExporterBuilder) Build( function defaultBuilderOptions (line 40) | func defaultBuilderOptions() StdoutExporterBuilderOptions { function NewStdoutExporterBuilder (line 44) | func NewStdoutExporterBuilder(opts ...StdoutExporterBuilderOption) *Stdo... FILE: pkg/opentelemetry/tracer/stdout/stdout.trace.option.go function WithPrettyPrint (line 26) | func WithPrettyPrint(prettyPrint bool) StdoutExporterBuilderOption { FILE: pkg/opentelemetry/tracer/stdout/stdout.trace_option.go type StdoutExporterBuilderOption (line 25) | type StdoutExporterBuilderOption interface type EmptyStdoutExporterBuilderOption (line 33) | type EmptyStdoutExporterBuilderOption struct method apply (line 35) | func (EmptyStdoutExporterBuilderOption) apply(*StdoutExporterBuilder) {} type StdoutExporterBuilderOptionFunc (line 39) | type StdoutExporterBuilderOptionFunc method apply (line 41) | func (f StdoutExporterBuilderOptionFunc) apply(do *StdoutExporterBuild... function _StdoutExporterBuilderOptionWithDefault (line 46) | func _StdoutExporterBuilderOptionWithDefault() StdoutExporterBuilderOpti... method ApplyOptions (line 52) | func (o *StdoutExporterBuilder) ApplyOptions( FILE: pkg/opentelemetry/tracer/tracer.exporter.go type TracerExporterBuilder (line 30) | type TracerExporterBuilder interface FILE: pkg/opentelemetry/tracer/tracer.go type TracerOptions (line 38) | type TracerOptions struct type Tracer (line 49) | type Tracer struct method Install (line 61) | func (t *Tracer) Install(ctx context.Context) (err error) { method createExporter (line 123) | func (t *Tracer) createExporter(ctx context.Context) (sdktrace.SpanExp... method TracerProvider (line 142) | func (t *Tracer) TracerProvider() trace.TracerProvider { method Shutdown (line 150) | func (t *Tracer) Shutdown(ctx context.Context) error { function NewTracer (line 53) | func NewTracer(opts ...TracerOption) *Tracer { FILE: pkg/opentelemetry/tracer/tracer.logging_exporter.go type LoggingExporter (line 33) | type LoggingExporter struct method ExportSpans (line 49) | func (e *LoggingExporter) ExportSpans(ctx context.Context, spans []sdk... method Shutdown (line 76) | func (e *LoggingExporter) Shutdown(ctx context.Context) error { function NewLoggingExporter (line 40) | func NewLoggingExporter(inner sdktrace.SpanExporter, name, endpoint stri... FILE: pkg/opentelemetry/tracer/tracer.option.go function WithExporterBuilder (line 28) | func WithExporterBuilder(builder TracerExporterBuilder) TracerOption { function WithServiceName (line 35) | func WithServiceName(name string) TracerOption { function WithServiceVersion (line 42) | func WithServiceVersion(version string) TracerOption { function WithServiceNamespace (line 49) | func WithServiceNamespace(namespace string) TracerOption { function WithResource (line 56) | func WithResource(res *resource.Resource) TracerOption { function WithExporterLogging (line 65) | func WithExporterLogging(name, endpoint string) TracerOption { FILE: pkg/opentelemetry/tracer/tracer_option.go type TracerOption (line 25) | type TracerOption interface type EmptyTracerOption (line 33) | type EmptyTracerOption struct method apply (line 35) | func (EmptyTracerOption) apply(*Tracer) {} type TracerOptionFunc (line 39) | type TracerOptionFunc method apply (line 41) | func (f TracerOptionFunc) apply(do *Tracer) { function _TracerOptionWithDefault (line 46) | func _TracerOptionWithDefault() TracerOption { method ApplyOptions (line 51) | func (o *Tracer) ApplyOptions(options ...TracerOption) *Tracer { FILE: pkg/pool/instance/error.go type ContextCanceledError (line 24) | type ContextCanceledError struct method Error (line 28) | func (e ContextCanceledError) Error() string { type TimeoutError (line 32) | type TimeoutError struct method Error (line 36) | func (e TimeoutError) Error() string { FILE: pkg/pool/instance/instance.go type CoreInstanceHolder (line 25) | type CoreInstanceHolder struct FILE: pkg/pool/instance/pool.instance.go type GlobalInitFunc (line 36) | type GlobalInitFunc type GlobalReleaseFunc (line 37) | type GlobalReleaseFunc type LocalInitFunc (line 38) | type LocalInitFunc type LocalReleaseFunc (line 39) | type LocalReleaseFunc type NewFunc (line 40) | type NewFunc type DeleteFunc (line 41) | type DeleteFunc type LoadBalanceMode (line 43) | type LoadBalanceMode constant RoundRobinBalanceMode (line 46) | RoundRobinBalanceMode LoadBalanceMode = 0 constant RandomLoadBalanceMode (line 47) | RandomLoadBalanceMode LoadBalanceMode = 1 constant LeastLoadBalanceMode (line 48) | LeastLoadBalanceMode LoadBalanceMode = 2 type PoolOptions (line 51) | type PoolOptions struct type Pool (line 79) | type Pool struct method init (line 119) | func (p *Pool) init(ctx context.Context) error { method GlobalInit (line 163) | func (p *Pool) GlobalInit(ctx context.Context) error { method globalInit (line 172) | func (p *Pool) globalInit(ctx context.Context) error { method GlobalRelease (line 180) | func (p *Pool) GlobalRelease(ctx context.Context) error { method globalRelease (line 204) | func (p *Pool) globalRelease(ctx context.Context) error { method GetByCoreId (line 212) | func (p *Pool) GetByCoreId(ctx context.Context, coreID int64) (*CoreIn... method Get (line 245) | func (p *Pool) Get(ctx context.Context) (*CoreInstanceHolder, error) { method GetWithRoundRobinMode (line 256) | func (p *Pool) GetWithRoundRobinMode(ctx context.Context) (*CoreInstan... method Put (line 287) | func (p *Pool) Put(ctx context.Context, holder *CoreInstanceHolder) er... method Invoke (line 315) | func (p *Pool) Invoke( function defaultPoolOptions (line 87) | func defaultPoolOptions() PoolOptions { function NewPool (line 96) | func NewPool(newFunc NewFunc, opts ...PoolOption) (*Pool, error) { FILE: pkg/pool/instance/pool.instance.option.go function WithName (line 26) | func WithName(name string) PoolOption { function WithResevePoolSizePerCore (line 32) | func WithResevePoolSizePerCore(resevePoolSizePerCore int64) PoolOption { function WithCapacityPoolSizePerCore (line 38) | func WithCapacityPoolSizePerCore(capacityPoolSizePerCore int64) PoolOpti... function WithWaitTimeoutOnce (line 44) | func WithWaitTimeoutOnce(waitTimeout time.Duration) PoolOption { function WithWaitTimeoutTotal (line 50) | func WithWaitTimeoutTotal(waitTimeout time.Duration) PoolOption { function WithLoadBalanceMode (line 56) | func WithLoadBalanceMode(loadBalanceMode LoadBalanceMode) PoolOption { function WithCoreIDs (line 62) | func WithCoreIDs(coreIDs []int64) PoolOption { function WithModelPaths (line 68) | func WithModelPaths(modelPaths []string) PoolOption { function WithBatchSize (line 74) | func WithBatchSize(batchSize int64) PoolOption { function WithGlobalInitFunc (line 80) | func WithGlobalInitFunc(f GlobalInitFunc) PoolOption { function WithGlobalReleaseFunc (line 86) | func WithGlobalReleaseFunc(f GlobalReleaseFunc) PoolOption { function WithLocalInitFunc (line 92) | func WithLocalInitFunc(f LocalInitFunc) PoolOption { function WithLocalReleaseFunc (line 98) | func WithLocalReleaseFunc(f LocalReleaseFunc) PoolOption { function WithDeleteFunc (line 104) | func WithDeleteFunc(f DeleteFunc) PoolOption { function WithEnabledPrintCostTime (line 110) | func WithEnabledPrintCostTime(enabled bool) PoolOption { FILE: pkg/pool/instance/pool.instance_option.go type PoolOption (line 25) | type PoolOption interface type EmptyPoolOption (line 33) | type EmptyPoolOption struct method apply (line 35) | func (EmptyPoolOption) apply(*Pool) {} type PoolOptionFunc (line 39) | type PoolOptionFunc method apply (line 41) | func (f PoolOptionFunc) apply(do *Pool) { function _PoolOptionWithDefault (line 46) | func _PoolOptionWithDefault() PoolOption { method ApplyOptions (line 51) | func (o *Pool) ApplyOptions(options ...PoolOption) *Pool { FILE: pkg/pool/instance/pool.instance_test.go type InstancePool (line 34) | type InstancePool struct method InvokeProcess (line 47) | func (s *InstancePool) InvokeProcess(ctx context.Context) error { type Sdk (line 38) | type Sdk struct method DoSdk (line 41) | func (s *Sdk) DoSdk() error { function GlobalInit (line 60) | func GlobalInit() error { function GlobalRelease (line 65) | func GlobalRelease() error { function LocalInit (line 70) | func LocalInit() error { function LocalRelease (line 75) | func LocalRelease() error { function New (line 80) | func New() error { function Delete (line 85) | func Delete() { function TestNewPool (line 89) | func TestNewPool(t *testing.T) { FILE: pkg/pool/instance/thread.go type Thread (line 32) | type Thread struct method initOnce (line 50) | func (t *Thread) initOnce() { method Do (line 61) | func (t *Thread) Do(ctx context.Context, f func()) error { method DoInOSThread (line 89) | func (t *Thread) DoInOSThread() { function NewThread (line 42) | func NewThread(enableOsThread bool) *Thread { FILE: pkg/pool/task/batch_process.go function BatchProcess (line 5) | func BatchProcess[T any](data []T, batchSize int, f func(d []T) error) e... FILE: pkg/pool/task/batch_process_test.go function processTask (line 10) | func processTask(data []int) error { function TestBatchProcessSync (line 15) | func TestBatchProcessSync(t *testing.T) { FILE: pkg/pool/task/pool.go type TaskHandler (line 33) | type TaskHandler type PoolConfig (line 35) | type PoolConfig struct function defaultPoolConfig (line 41) | func defaultPoolConfig() PoolConfig { type Pool (line 48) | type Pool struct method Put (line 76) | func (p *Pool) Put(task interface{}) error { method Wait (line 89) | func (p *Pool) Wait() { method Stop (line 93) | func (p *Pool) Stop() { method Error (line 97) | func (p *Pool) Error() error { method trySetError (line 104) | func (p *Pool) trySetError(err error) { method run (line 110) | func (p *Pool) run() (doneC <-chan struct{}) { function New (line 62) | func New(taskFunc TaskHandler, opts ...PoolOptions) *Pool { FILE: pkg/pool/task/pool.option.go function WithBurst (line 24) | func WithBurst(burst int) PoolOptions { function WithErrStop (line 30) | func WithErrStop(errStop bool) PoolOptions { FILE: pkg/pool/task/pool_options.go type PoolOptions (line 25) | type PoolOptions interface type EmptyPoolOptions (line 33) | type EmptyPoolOptions struct method apply (line 35) | func (EmptyPoolOptions) apply(*Pool) {} type PoolOptionsFunc (line 39) | type PoolOptionsFunc method apply (line 41) | func (f PoolOptionsFunc) apply(do *Pool) { function _PoolOptionsWithDefault (line 46) | func _PoolOptionsWithDefault() PoolOptions { method ApplyOptions (line 51) | func (o *Pool) ApplyOptions(options ...PoolOptions) *Pool { FILE: pkg/pool/task/pool_test.go function TestProcessOk (line 32) | func TestProcessOk(t *testing.T) { function TestProcessFail (line 55) | func TestProcessFail(t *testing.T) { FILE: pkg/pool/task/worker.go type WorkFunc (line 32) | type WorkFunc type Worker (line 34) | type Worker struct method Work (line 43) | func (w *Worker) Work( method Error (line 99) | func (w *Worker) Error() error { method TrySetError (line 106) | func (w *Worker) TrySetError(err error) { method Wait (line 112) | func (w *Worker) Wait() { method Stop (line 116) | func (w *Worker) Stop() { FILE: pkg/pool/task/worker_test.go function TestWork (line 33) | func TestWork(t *testing.T) { FILE: pkg/pool/taskqueue/config.go type Config (line 36) | type Config struct method Complete (line 112) | func (c *Config) Complete() CompletedConfig { method loadViper (line 124) | func (c *Config) loadViper() error { type completedConfig (line 44) | type completedConfig struct method New (line 54) | func (c *completedConfig) New(ctx context.Context, opts ...PoolOption)... method install (line 76) | func (c *completedConfig) install(ctx context.Context, opts ...PoolOpt... type CompletedConfig (line 49) | type CompletedConfig struct function NewConfig (line 132) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/pool/taskqueue/config.option.go function WithViper (line 28) | func WithViper(v *viper.Viper) ConfigOption { FILE: pkg/pool/taskqueue/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/pool/taskqueue/pool.go type PoolOptions (line 36) | type PoolOptions struct type Pool (line 46) | type Pool struct method Publish (line 74) | func (p *Pool) Publish(ctx context.Context, msg *queue_.Message) (stri... method Consume (line 99) | func (p *Pool) Consume(ctx context.Context) (err error) { method FetchResult (line 165) | func (p *Pool) FetchResult(ctx context.Context, key string) (*queue_.M... method Work (line 175) | func (p *Pool) Work(ctx context.Context, msg *queue_.Message) error { function defaultPoolOptions (line 54) | func defaultPoolOptions() PoolOptions { function NewPool (line 63) | func NewPool(taskq queue_.Queue, opts ...PoolOption) *Pool { FILE: pkg/pool/taskqueue/pool.option.go function WithWorkerBurst (line 30) | func WithWorkerBurst(burst uint32) PoolOption { function WithFetcherBurst (line 36) | func WithFetcherBurst(burst uint32) PoolOption { function WithFetchTimeout (line 42) | func WithFetchTimeout(timeout time.Duration) PoolOption { function WithResultExpired (line 48) | func WithResultExpired(resultExpired time.Duration) PoolOption { function WithWorkTimeout (line 54) | func WithWorkTimeout(timeout time.Duration) PoolOption { function WithResultCallbackFunc (line 60) | func WithResultCallbackFunc(callback queue_.ResultCallbackFunc) PoolOpti... FILE: pkg/pool/taskqueue/pool_option.go type PoolOption (line 25) | type PoolOption interface type EmptyPoolOption (line 33) | type EmptyPoolOption struct method apply (line 35) | func (EmptyPoolOption) apply(*Pool) {} type PoolOptionFunc (line 39) | type PoolOptionFunc method apply (line 41) | func (f PoolOptionFunc) apply(do *Pool) { function _PoolOptionWithDefault (line 46) | func _PoolOptionWithDefault() PoolOption { method ApplyOptions (line 51) | func (o *Pool) ApplyOptions(options ...PoolOption) *Pool { FILE: pkg/pool/taskqueue/pool_test.go type TaskA (line 19) | type TaskA struct method Scheme (line 32) | func (t TaskA) Scheme() string { method TaskHandler (line 36) | func (t TaskA) TaskHandler(ctx context.Context, msg *queue_.Message) (... type TaskAArgs (line 22) | type TaskAArgs struct type TaskAResult (line 27) | type TaskAResult struct function GetDBOrDie (line 74) | func GetDBOrDie() *redis.Client { function TestTaskQueue (line 91) | func TestTaskQueue(t *testing.T) { function TestTaskQueueServer (line 163) | func TestTaskQueueServer(t *testing.T) { FILE: pkg/pool/taskqueue/queue/message.go type Message (line 25) | type Message struct constant MessageStatus_Unknown (line 43) | MessageStatus_Unknown MessageStatus = "Status_Unknown" constant MessageStatus_Pending (line 44) | MessageStatus_Pending MessageStatus = "Status_Pending" constant MessageStatus_Success (line 45) | MessageStatus_Success MessageStatus = "Status_Success" constant MessageStatus_Doing (line 46) | MessageStatus_Doing MessageStatus = "Status_Doing" constant MessageStatus_Fail (line 47) | MessageStatus_Fail MessageStatus = "Status_Fail" type MessageResult (line 50) | type MessageResult struct FILE: pkg/pool/taskqueue/queue/queue.go constant TaskQueuePrefix (line 9) | TaskQueuePrefix = "taskq" type QueueOptions (line 12) | type QueueOptions struct type Queue (line 16) | type Queue interface type ResultCallbackFunc (line 25) | type ResultCallbackFunc FILE: pkg/pool/taskqueue/queue/redis/queue.redis.go type Queue (line 17) | type Queue struct method Add (line 40) | func (q *Queue) Add(ctx context.Context, msg *queue_.Message) (string,... method fetchN (line 73) | func (q *Queue) fetchN(ctx context.Context, n int64, waitTimeout time.... method FetchN (line 112) | func (q *Queue) FetchN(ctx context.Context, n int64, waitTimeout time.... method FetchOne (line 123) | func (q *Queue) FetchOne(ctx context.Context, waitTimeout time.Duratio... method createMkStreamGroup (line 136) | func (q *Queue) createMkStreamGroup(ctx context.Context) { method Len (line 142) | func (q *Queue) Len() (int64, error) { method Delete (line 148) | func (q *Queue) Delete(ctx context.Context, msg *queue_.Message) error { method AddResult (line 157) | func (q *Queue) AddResult(ctx context.Context, result *queue_.MessageR... method FetchResult (line 177) | func (q *Queue) FetchResult(ctx context.Context, key string) (*queue_.... function NewQueue (line 26) | func NewQueue(db *redis.Client, opts queue_.QueueOptions) *Queue { FILE: pkg/pool/taskqueue/registry.go function Register (line 34) | func Register(b Tasker) { function Get (line 52) | func Get(scheme string) Tasker { FILE: pkg/pool/taskqueue/task.go type TaskOptions (line 10) | type TaskOptions struct type Task (line 14) | type Task struct type TaskerMap (line 18) | type TaskerMap type Tasker (line 20) | type Tasker interface FILE: pkg/pool/taskqueue/tasker_syncmap.go function _ (line 29) | func _() { method Load (line 40) | func (m *TaskerMap) Load(key string) (Tasker, bool) { method Store (line 49) | func (m *TaskerMap) Store(key string, value Tasker) { method LoadOrStore (line 56) | func (m *TaskerMap) LoadOrStore(key string, value Tasker) (Tasker, bool) { method LoadAndDelete (line 66) | func (m *TaskerMap) LoadAndDelete(key string) (value Tasker, loaded bool) { method Delete (line 75) | func (m *TaskerMap) Delete(key string) { method Range (line 89) | func (m *TaskerMap) Range(f func(key string, value Tasker) bool) { FILE: pkg/pool/taskqueue/taskqueue.pb.go constant _ (line 19) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 21) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type TaskQueue_QueueType (line 24) | type TaskQueue_QueueType method Enum (line 40) | func (x TaskQueue_QueueType) Enum() *TaskQueue_QueueType { method String (line 46) | func (x TaskQueue_QueueType) String() string { method Descriptor (line 50) | func (TaskQueue_QueueType) Descriptor() protoreflect.EnumDescriptor { method Type (line 54) | func (TaskQueue_QueueType) Type() protoreflect.EnumType { method Number (line 58) | func (x TaskQueue_QueueType) Number() protoreflect.EnumNumber { method EnumDescriptor (line 63) | func (TaskQueue_QueueType) EnumDescriptor() ([]byte, []int) { constant TaskQueue_queue_type_redis (line 27) | TaskQueue_queue_type_redis TaskQueue_QueueType = 0 type TaskQueue (line 67) | type TaskQueue struct method Reset (line 81) | func (x *TaskQueue) Reset() { method String (line 90) | func (x *TaskQueue) String() string { method ProtoMessage (line 94) | func (*TaskQueue) ProtoMessage() {} method ProtoReflect (line 96) | func (x *TaskQueue) ProtoReflect() protoreflect.Message { method Descriptor (line 109) | func (*TaskQueue) Descriptor() ([]byte, []int) { method GetEnabled (line 113) | func (x *TaskQueue) GetEnabled() bool { method GetWorkerBurst (line 120) | func (x *TaskQueue) GetWorkerBurst() uint32 { method GetFetcherBurst (line 127) | func (x *TaskQueue) GetFetcherBurst() uint32 { method GetWorkTimeout (line 134) | func (x *TaskQueue) GetWorkTimeout() *duration.Duration { method GetFetchTimeout (line 141) | func (x *TaskQueue) GetFetchTimeout() *duration.Duration { method GetResultExpired (line 148) | func (x *TaskQueue) GetResultExpired() *duration.Duration { method GetQueueType (line 155) | func (x *TaskQueue) GetQueueType() TaskQueue_QueueType { function file_pkg_pool_taskqueue_taskqueue_proto_rawDescGZIP (line 208) | func file_pkg_pool_taskqueue_taskqueue_proto_rawDescGZIP() []byte { function init (line 234) | func init() { file_pkg_pool_taskqueue_taskqueue_proto_init() } function file_pkg_pool_taskqueue_taskqueue_proto_init (line 235) | func file_pkg_pool_taskqueue_taskqueue_proto_init() { FILE: pkg/profile/profile.go type nop (line 36) | type nop struct method Stop (line 39) | func (p *nop) Stop() { function StartWithEnv (line 42) | func StartWithEnv() interface { function start (line 61) | func start(pf, dir string) interface { FILE: pkg/profile/profile_test.go function doCpu (line 32) | func doCpu() { function TestStartWithEnv (line 43) | func TestStartWithEnv(t *testing.T) { FILE: pkg/protobuf/jsonpb/jsonpb_marshal.go function MarshaToStructpb (line 29) | func MarshaToStructpb(v interface{}) (*structpb.Struct, error) { FILE: pkg/protobuf/jsonpb/jsonpb_unmarshal.go function UnmarshalReaderWithAllowUnknownFields (line 32) | func UnmarshalReaderWithAllowUnknownFields(r io.Reader, pb proto.Message... function UnmarshalWithAllowUnknownFields (line 41) | func UnmarshalWithAllowUnknownFields(data []byte, pb proto.Message) error { FILE: pkg/protobuf/prototext/encode.go function FormatWithLength (line 34) | func FormatWithLength(m proto.Message, n int) string { function Marshal (line 42) | func Marshal(m proto.Message) ([]byte, error) { FILE: pkg/proxy/proxy.go type ProxyMode (line 36) | type ProxyMode constant Reverse_ProxyMode (line 39) | Reverse_ProxyMode ProxyMode = 0 constant Forward_ProxyMode (line 40) | Forward_ProxyMode ProxyMode = 1 constant Redirect_ProxyMode (line 41) | Redirect_ProxyMode ProxyMode = 2 type ProxyMatchedFunc (line 44) | type ProxyMatchedFunc type ProxyTargetResolverFunc (line 45) | type ProxyTargetResolverFunc type proxyOptions (line 47) | type proxyOptions struct type Proxy (line 53) | type Proxy struct method ProxyHandler (line 75) | func (p *Proxy) ProxyHandler() gin.HandlerFunc { method setProxy (line 132) | func (p *Proxy) setProxy() { function defaultProxyOptions (line 58) | func defaultProxyOptions() proxyOptions { function NewProxy (line 64) | func NewProxy(router gin.IRouter, options ...ProxyOption) (*Proxy, error) { FILE: pkg/proxy/proxy.option.go function WithProxyMatchedFunc (line 24) | func WithProxyMatchedFunc(proxyMatchedFunc ProxyMatchedFunc) ProxyOption { function WithProxyTargetResolverFunc (line 30) | func WithProxyTargetResolverFunc(proxyTargetResolverFunc ProxyTargetReso... function WithProxyMode (line 36) | func WithProxyMode(proxyMode ProxyMode) ProxyOption { FILE: pkg/proxy/proxy_option.go type ProxyOption (line 25) | type ProxyOption interface type EmptyProxyOption (line 33) | type EmptyProxyOption struct method apply (line 35) | func (EmptyProxyOption) apply(*Proxy) {} type ProxyOptionFunc (line 39) | type ProxyOptionFunc method apply (line 41) | func (f ProxyOptionFunc) apply(do *Proxy) { function _ProxyOptionWithDefault (line 46) | func _ProxyOptionWithDefault() ProxyOption { method ApplyOptions (line 51) | func (o *Proxy) ApplyOptions(options ...ProxyOption) *Proxy { FILE: pkg/proxy/proxy_test.go function TestNewProxy (line 31) | func TestNewProxy(t *testing.T) { FILE: pkg/resolver/config.go type Config (line 32) | type Config struct method Complete (line 116) | func (c *Config) Complete() CompletedConfig { method loadViper (line 128) | func (c *Config) loadViper() error { type completedConfig (line 40) | type completedConfig struct method New (line 50) | func (c *completedConfig) New(ctx context.Context, opts ...ResolverQue... method install (line 71) | func (c *completedConfig) install(ctx context.Context, opts ...Resolve... type CompletedConfig (line 45) | type CompletedConfig struct function NewConfig (line 136) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/resolver/config.option.go function WithViper (line 28) | func WithViper(v *viper.Viper) ConfigOption { FILE: pkg/resolver/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/resolver/dns/dns_resolver.go type DNSResolver (line 26) | type DNSResolver interface FILE: pkg/resolver/dns/k8s-resolver/k8s_dns_resolver.go type ResolverConfig (line 52) | type ResolverConfig struct type K8sDNSResolver (line 62) | type K8sDNSResolver struct method Pods (line 117) | func (r *K8sDNSResolver) Pods(ctx context.Context, svcs ...string) ([]... method LookupHostIPv4 (line 175) | func (r *K8sDNSResolver) LookupHostIPv4(ctx context.Context, svc strin... function NewK8sDNSResolver (line 70) | func NewK8sDNSResolver(opts ...K8sDNSResolverOption) (*K8sDNSResolver, e... FILE: pkg/resolver/dns/k8s-resolver/k8s_dns_resolver_test.go function init (line 34) | func init() { function TestK8sDNSResolverGetPodsUsingInformer (line 38) | func TestK8sDNSResolverGetPodsUsingInformer(t *testing.T) { FILE: pkg/resolver/dns/k8s-resolver/k8s_resolver.option.go function WithNodeGroup (line 24) | func WithNodeGroup(nodeGroup string) K8sDNSResolverOption { function WithNodeUnit (line 30) | func WithNodeUnit(nodeUnit string) K8sDNSResolverOption { function WithkubeConfig (line 36) | func WithkubeConfig(kubeConfig string) K8sDNSResolverOption { function WithNamespace (line 42) | func WithNamespace(namespace string) K8sDNSResolverOption { function WithUseInClusterConfig (line 48) | func WithUseInClusterConfig(useInClusterConfig bool) K8sDNSResolverOption { function WithUseInformer (line 54) | func WithUseInformer(useInformer bool) K8sDNSResolverOption { FILE: pkg/resolver/dns/k8s-resolver/k8s_resolver_option.go type K8sDNSResolverOption (line 25) | type K8sDNSResolverOption interface type EmptyK8sDNSResolverOption (line 33) | type EmptyK8sDNSResolverOption struct method apply (line 35) | func (EmptyK8sDNSResolverOption) apply(*K8sDNSResolver) {} type K8sDNSResolverOptionFunc (line 39) | type K8sDNSResolverOptionFunc method apply (line 41) | func (f K8sDNSResolverOptionFunc) apply(do *K8sDNSResolver) { function _K8sDNSResolverOptionWithDefault (line 46) | func _K8sDNSResolverOptionWithDefault() K8sDNSResolverOption { method ApplyOptions (line 51) | func (o *K8sDNSResolver) ApplyOptions(options ...K8sDNSResolverOption) *... FILE: pkg/resolver/dns/net-resolver/net_dns_resolver.go type NetResolver (line 31) | type NetResolver struct method LookupHostIPv4 (line 34) | func (n NetResolver) LookupHostIPv4(ctx context.Context, host string) ... FILE: pkg/resolver/resolver.go type ResolverQueryMap (line 42) | type ResolverQueryMap type ResolverOptions (line 44) | type ResolverOptions struct type ResolverQuery (line 52) | type ResolverQuery struct method SetDefault (line 78) | func (r *ResolverQuery) SetDefault() { method SetResolver (line 97) | func (r *ResolverQuery) SetResolver() error { function NewDefaultResolverQuery (line 63) | func NewDefaultResolverQuery(domain string) ResolverQuery { function defaultResolverOptions (line 71) | func defaultResolverOptions() ResolverOptions { function NewResolverQuery (line 82) | func NewResolverQuery(domain string, opts ...ResolverQueryOption) (Resol... type ResolverService (line 116) | type ResolverService struct method logger (line 145) | func (srv *ResolverService) logger() logrus.FieldLogger { method Run (line 149) | func (srv *ResolverService) Run(ctx context.Context) error { method Serve (line 163) | func (srv *ResolverService) Serve(ctx context.Context) error { method Shutdown (line 193) | func (srv *ResolverService) Shutdown() { method QueryServices (line 202) | func (srv *ResolverService) QueryServices() (err error) { method PickNode (line 228) | func (srv *ResolverService) PickNode(name string, consistKey string) (... method AddService (line 256) | func (srv *ResolverService) AddService(service ResolverQuery) { method AddServices (line 261) | func (srv *ResolverService) AddServices(services ...ResolverQuery) { function NewDefaultResolverServices (line 124) | func NewDefaultResolverServices(resolverInterval time.Duration, domains ... function NewResolverService (line 133) | func NewResolverService(resolverInterval time.Duration, services ...Reso... FILE: pkg/resolver/resolver.pb.go constant _ (line 40) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 42) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Resolver_ResolverType (line 45) | type Resolver_ResolverType method Enum (line 67) | func (x Resolver_ResolverType) Enum() *Resolver_ResolverType { method String (line 73) | func (x Resolver_ResolverType) String() string { method Descriptor (line 77) | func (Resolver_ResolverType) Descriptor() protoreflect.EnumDescriptor { method Type (line 81) | func (Resolver_ResolverType) Type() protoreflect.EnumType { method Number (line 85) | func (x Resolver_ResolverType) Number() protoreflect.EnumNumber { method EnumDescriptor (line 90) | func (Resolver_ResolverType) EnumDescriptor() ([]byte, []int) { constant Resolver_resolver_type_dns (line 48) | Resolver_resolver_type_dns Resolver_ResolverType = 0 constant Resolver_resolver_type_consul (line 49) | Resolver_resolver_type_consul Resolver_ResolverType = 1 constant Resolver_resolver_type_k8s (line 50) | Resolver_resolver_type_k8s Resolver_ResolverType = 2 type Resolver_LoadBalanceMode (line 94) | type Resolver_LoadBalanceMode method Enum (line 113) | func (x Resolver_LoadBalanceMode) Enum() *Resolver_LoadBalanceMode { method String (line 119) | func (x Resolver_LoadBalanceMode) String() string { method Descriptor (line 123) | func (Resolver_LoadBalanceMode) Descriptor() protoreflect.EnumDescript... method Type (line 127) | func (Resolver_LoadBalanceMode) Type() protoreflect.EnumType { method Number (line 131) | func (x Resolver_LoadBalanceMode) Number() protoreflect.EnumNumber { method EnumDescriptor (line 136) | func (Resolver_LoadBalanceMode) EnumDescriptor() ([]byte, []int) { constant Resolver_load_balance_mode_random (line 97) | Resolver_load_balance_mode_random Resolver_LoadBalanceMode = 0 constant Resolver_load_balance_mode_consist (line 98) | Resolver_load_balance_mode_consist Resolver_LoadBalanceMode = 1 type Resolver (line 140) | type Resolver struct method Reset (line 153) | func (x *Resolver) Reset() { method String (line 162) | func (x *Resolver) String() string { method ProtoMessage (line 166) | func (*Resolver) ProtoMessage() {} method ProtoReflect (line 168) | func (x *Resolver) ProtoReflect() protoreflect.Message { method Descriptor (line 181) | func (*Resolver) Descriptor() ([]byte, []int) { method GetEnabled (line 185) | func (x *Resolver) GetEnabled() bool { method GetResolverType (line 192) | func (x *Resolver) GetResolverType() Resolver_ResolverType { method GetLoadBalanceMode (line 199) | func (x *Resolver) GetLoadBalanceMode() Resolver_LoadBalanceMode { method GetResolveInterval (line 206) | func (x *Resolver) GetResolveInterval() *duration.Duration { method GetDomains (line 213) | func (x *Resolver) GetDomains() []string { method GetK8S (line 220) | func (x *Resolver) GetK8S() *Resolver_K8S { type Resolver_K8S (line 227) | type Resolver_K8S struct method Reset (line 237) | func (x *Resolver_K8S) Reset() { method String (line 246) | func (x *Resolver_K8S) String() string { method ProtoMessage (line 250) | func (*Resolver_K8S) ProtoMessage() {} method ProtoReflect (line 252) | func (x *Resolver_K8S) ProtoReflect() protoreflect.Message { method Descriptor (line 265) | func (*Resolver_K8S) Descriptor() ([]byte, []int) { method GetServiceNames (line 269) | func (x *Resolver_K8S) GetServiceNames() []string { method GetNodeGroup (line 276) | func (x *Resolver_K8S) GetNodeGroup() string { method GetNodeUnit (line 283) | func (x *Resolver_K8S) GetNodeUnit() string { function file_pkg_resolver_resolver_proto_rawDescGZIP (line 347) | func file_pkg_resolver_resolver_proto_rawDescGZIP() []byte { function init (line 375) | func init() { file_pkg_resolver_resolver_proto_init() } function file_pkg_resolver_resolver_proto_init (line 376) | func file_pkg_resolver_resolver_proto_init() { FILE: pkg/resolver/resolver_query.option.go function WithResolverType (line 26) | func WithResolverType(resolverType Resolver_ResolverType) ResolverQueryO... function WithLoadBalanceMode (line 32) | func WithLoadBalanceMode(loadBalanceMode Resolver_LoadBalanceMode) Resol... function WithNodeGroup (line 38) | func WithNodeGroup(nodeGroup string) ResolverQueryOption { function WithNodeUnit (line 44) | func WithNodeUnit(nodeUnit string) ResolverQueryOption { function WithResolver (line 50) | func WithResolver(resolver dns_.DNSResolver) ResolverQueryOption { FILE: pkg/resolver/resolver_query_option.go type ResolverQueryOption (line 25) | type ResolverQueryOption interface type EmptyResolverQueryOption (line 33) | type EmptyResolverQueryOption struct method apply (line 35) | func (EmptyResolverQueryOption) apply(*ResolverQuery) {} type ResolverQueryOptionFunc (line 39) | type ResolverQueryOptionFunc method apply (line 41) | func (f ResolverQueryOptionFunc) apply(do *ResolverQuery) { function _ResolverQueryOptionWithDefault (line 46) | func _ResolverQueryOptionWithDefault() ResolverQueryOption { method ApplyOptions (line 51) | func (o *ResolverQuery) ApplyOptions(options ...ResolverQueryOption) *Re... FILE: pkg/resolver/resolver_test.go function TestNewResolverService2 (line 86) | func TestNewResolverService2(t *testing.T) { FILE: pkg/resolver/resolverquerymap_syncmap.go function _ (line 29) | func _() { method Load (line 40) | func (m *ResolverQueryMap) Load(key string) (ResolverQuery, bool) { method Store (line 49) | func (m *ResolverQueryMap) Store(key string, value ResolverQuery) { method LoadOrStore (line 56) | func (m *ResolverQueryMap) LoadOrStore(key string, value ResolverQuery) ... method LoadAndDelete (line 66) | func (m *ResolverQueryMap) LoadAndDelete(key string) (value ResolverQuer... method Delete (line 75) | func (m *ResolverQueryMap) Delete(key string) { method Range (line 89) | func (m *ResolverQueryMap) Range(f func(key string, value ResolverQuery)... FILE: pkg/scheduler/backend/backend.go type Backend (line 29) | type Backend interface FILE: pkg/scheduler/broker/broker.go type Broker (line 34) | type Broker interface type Taskdispatcher (line 41) | type Taskdispatcher interface FILE: pkg/scheduler/broker/memory/memory.go type Broker (line 32) | type Broker struct method SetTaskDispatcher (line 40) | func (b *Broker) SetTaskDispatcher(dispatcher broker.Taskdispatcher) { method Publish (line 45) | func (b *Broker) Publish(ctx context.Context, task *task.Task) error { function NewBroker (line 36) | func NewBroker() *Broker { FILE: pkg/scheduler/dispatcher.go type Dispatcher (line 33) | type Dispatcher struct method run (line 53) | func (d *Dispatcher) run() { method dispatch (line 63) | func (d *Dispatcher) dispatch() { method stopWokrs (line 79) | func (d *Dispatcher) stopWokrs() { method AddTask (line 95) | func (d *Dispatcher) AddTask(task *task_.Task) error { method Stop (line 106) | func (d *Dispatcher) Stop() { function NewDispatcher (line 42) | func NewDispatcher(burst int) *Dispatcher { FILE: pkg/scheduler/dispatcher_test.go function TestDispatcher (line 33) | func TestDispatcher(t *testing.T) { FILE: pkg/scheduler/server.go type Server (line 30) | type Server struct method AddTask (line 44) | func (s *Server) AddTask(ctx context.Context, task *task_.Task) error { function NewServer (line 35) | func NewServer(burst int, broker broker.Broker) *Server { FILE: pkg/scheduler/server_test.go function TestServer (line 35) | func TestServer(t *testing.T) { FILE: pkg/scheduler/task/result.go type TaskResult (line 33) | type TaskResult struct function ReflectTaskResults (line 39) | func ReflectTaskResults(taskResults []*TaskResult) ([]reflect.Value, err... function HumanReadableResults (line 52) | func HumanReadableResults(results []reflect.Value) string { FILE: pkg/scheduler/task/task.go type Task (line 30) | type Task struct method Run (line 45) | func (t *Task) Run() ([]*TaskResult, error) { type TaskArgument (line 40) | type TaskArgument struct function reflectTaskArgs (line 57) | func reflectTaskArgs(args []TaskArgument) ([]reflect.Value, error) { function reflectTaskResults (line 71) | func reflectTaskResults(results []reflect.Value) ([]*TaskResult, error) { FILE: pkg/scheduler/task/validate.go function Validate (line 42) | func Validate(task *Task) error { FILE: pkg/scheduler/types/task.pb.go constant _ (line 19) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 21) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type TaskState (line 24) | type TaskState method Enum (line 58) | func (x TaskState) Enum() *TaskState { method String (line 64) | func (x TaskState) String() string { method Descriptor (line 68) | func (TaskState) Descriptor() protoreflect.EnumDescriptor { method Type (line 72) | func (TaskState) Type() protoreflect.EnumType { method Number (line 76) | func (x TaskState) Number() protoreflect.EnumNumber { method EnumDescriptor (line 81) | func (TaskState) EnumDescriptor() ([]byte, []int) { constant TaskState_TASK_STATE_RESERVE (line 27) | TaskState_TASK_STATE_RESERVE TaskState = 0 constant TaskState_TASK_STATE_PENDING (line 28) | TaskState_TASK_STATE_PENDING TaskState = 1 constant TaskState_TASK_STATE_RUNNING (line 29) | TaskState_TASK_STATE_RUNNING TaskState = 2 constant TaskState_TASK_STATE_SUCCEED (line 30) | TaskState_TASK_STATE_SUCCEED TaskState = 3 constant TaskState_TASK_STATE_FAILED (line 31) | TaskState_TASK_STATE_FAILED TaskState = 4 constant TaskState_TASK_STATE_STOPPING (line 32) | TaskState_TASK_STATE_STOPPING TaskState = 5 constant TaskState_TASK_STATE_STOPPED (line 33) | TaskState_TASK_STATE_STOPPED TaskState = 6 function file_pkg_scheduler_types_task_proto_rawDescGZIP (line 116) | func file_pkg_scheduler_types_task_proto_rawDescGZIP() []byte { function init (line 135) | func init() { file_pkg_scheduler_types_task_proto_init() } function file_pkg_scheduler_types_task_proto_init (line 136) | func file_pkg_scheduler_types_task_proto_init() { FILE: pkg/scheduler/worker.go type Worker (line 31) | type Worker struct method doProcess (line 50) | func (w *Worker) doProcess(ctx context.Context, task *task.Task) error { method Process (line 69) | func (w *Worker) Process(ctx context.Context) { method Stop (line 87) | func (w *Worker) Stop() { function NewWorker (line 39) | func NewWorker(id int, worksChCh chan chan *task.Task) *Worker { FILE: pkg/storage/mount/mount.go constant mountLabelFileName (line 37) | mountLabelFileName = "mount-label-file-75248" function MountCeph (line 40) | func MountCeph( function MountCfs (line 61) | func MountCfs( function doMountCmd (line 79) | func doMountCmd( function genCephKeyringConfFile (line 107) | func genCephKeyringConfFile(prefixMountPath, userName, keyring string) (... FILE: pkg/storage/mount/mount_test.go function TestMountCeph (line 30) | func TestMountCeph(t *testing.T) { FILE: pkg/storage/s3/config.go type Config (line 18) | type Config struct method Complete (line 79) | func (c *Config) Complete() CompletedConfig { method loadViper (line 91) | func (c *Config) loadViper() error { type completedConfig (line 26) | type completedConfig struct method New (line 36) | func (c *completedConfig) New(ctx context.Context) (*blob.Bucket, erro... method install (line 57) | func (c *completedConfig) install(ctx context.Context) (*blob.Bucket, ... type CompletedConfig (line 31) | type CompletedConfig struct function NewConfig (line 99) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/storage/s3/config.option.go function WithViper (line 28) | func WithViper(v *viper.Viper) ConfigOption { FILE: pkg/storage/s3/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/storage/s3/s3.go type StorageConfig (line 18) | type StorageConfig struct type Storage (line 35) | type Storage struct function NewStorage (line 46) | func NewStorage(ctx context.Context, conf StorageConfig, opts ...Storage... function ParseUrl (line 81) | func ParseUrl(rawUrl string) (*StorageConfig, error) { FILE: pkg/storage/s3/s3.option.go function WithPrefixPath (line 24) | func WithPrefixPath(prefixPath string) StorageOption { FILE: pkg/storage/s3/s3.pb.go constant _ (line 19) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 21) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type S3 (line 24) | type S3 struct method Reset (line 35) | func (x *S3) Reset() { method String (line 44) | func (x *S3) String() string { method ProtoMessage (line 48) | func (*S3) ProtoMessage() {} method ProtoReflect (line 50) | func (x *S3) ProtoReflect() protoreflect.Message { method Descriptor (line 63) | func (*S3) Descriptor() ([]byte, []int) { method GetEnabled (line 67) | func (x *S3) GetEnabled() bool { method GetUrl (line 74) | func (x *S3) GetUrl() string { method GetSecretId (line 81) | func (x *S3) GetSecretId() string { method GetSecretKey (line 88) | func (x *S3) GetSecretKey() string { function file_pkg_storage_s3_s3_proto_rawDescGZIP (line 120) | func file_pkg_storage_s3_s3_proto_rawDescGZIP() []byte { function init (line 139) | func init() { file_pkg_storage_s3_s3_proto_init() } function file_pkg_storage_s3_s3_proto_init (line 140) | func file_pkg_storage_s3_s3_proto_init() { FILE: pkg/storage/s3/s3_option.go type StorageOption (line 25) | type StorageOption interface type EmptyStorageOption (line 33) | type EmptyStorageOption struct method apply (line 35) | func (EmptyStorageOption) apply(*Storage) {} type StorageOptionFunc (line 39) | type StorageOptionFunc method apply (line 41) | func (f StorageOptionFunc) apply(do *Storage) { function _StorageOptionWithDefault (line 46) | func _StorageOptionWithDefault() StorageOption { method ApplyOptions (line 51) | func (o *Storage) ApplyOptions(options ...StorageOption) *Storage { FILE: pkg/storage/s3/s3_test.go function TestS3Upload (line 13) | func TestS3Upload(t *testing.T) { function TestS3Down (line 46) | func TestS3Down(t *testing.T) { FILE: pkg/viper/code/error.template.pb.go constant _ (line 21) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 23) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type ErrorTemplate (line 26) | type ErrorTemplate struct method Reset (line 34) | func (x *ErrorTemplate) Reset() { method String (line 43) | func (x *ErrorTemplate) String() string { method ProtoMessage (line 47) | func (*ErrorTemplate) ProtoMessage() {} method ProtoReflect (line 49) | func (x *ErrorTemplate) ProtoReflect() protoreflect.Message { method Descriptor (line 62) | func (*ErrorTemplate) Descriptor() ([]byte, []int) { method GetErrorTemplate (line 66) | func (x *ErrorTemplate) GetErrorTemplate() []*ErrorTemplate_ErrorItem { type ErrorTemplate_ErrorItem (line 73) | type ErrorTemplate_ErrorItem struct method Reset (line 83) | func (x *ErrorTemplate_ErrorItem) Reset() { method String (line 92) | func (x *ErrorTemplate_ErrorItem) String() string { method ProtoMessage (line 96) | func (*ErrorTemplate_ErrorItem) ProtoMessage() {} method ProtoReflect (line 98) | func (x *ErrorTemplate_ErrorItem) ProtoReflect() protoreflect.Message { method Descriptor (line 111) | func (*ErrorTemplate_ErrorItem) Descriptor() ([]byte, []int) { method GetErrorCode (line 115) | func (x *ErrorTemplate_ErrorItem) GetErrorCode() string { method GetErrorDesc (line 122) | func (x *ErrorTemplate_ErrorItem) GetErrorDesc() string { method GetErrorMessage (line 129) | func (x *ErrorTemplate_ErrorItem) GetErrorMessage() map[string]string { function file_pkg_viper_code_error_template_proto_rawDescGZIP (line 177) | func file_pkg_viper_code_error_template_proto_rawDescGZIP() []byte { function init (line 200) | func init() { file_pkg_viper_code_error_template_proto_init() } function file_pkg_viper_code_error_template_proto_init (line 201) | func file_pkg_viper_code_error_template_proto_init() { FILE: pkg/viper/unmarshaler.go function UnmarshalProtoMessageWithJsonPb (line 35) | func UnmarshalProtoMessageWithJsonPb(v *viper.Viper, msg proto.Message, ... function UnmarshalProtoMessageWithJsonpbHookFunc (line 50) | func UnmarshalProtoMessageWithJsonpbHookFunc(v proto.Message) mapstructu... FILE: pkg/viper/viper.go function GetViper (line 31) | func GetViper(configFile string, subKeys string) *viper.Viper { function GetNewViper (line 64) | func GetNewViper(configFile string, subKeys string) *viper.Viper { FILE: pkg/viper/viper_test.go function TestViper (line 32) | func TestViper(t *testing.T) { FILE: pkg/webserver/app/cmd.go function NewCommand (line 32) | func NewCommand(ctx context.Context, runCommand func(ctx context.Context... FILE: pkg/webserver/app/flags.go function defaultConfigPath (line 35) | func defaultConfigPath() string { function defaultUseConfigPath (line 39) | func defaultUseConfigPath() string { type AppFlags (line 45) | type AppFlags struct method Apply (line 68) | func (f *AppFlags) Apply() { method initFlags (line 82) | func (f *AppFlags) initFlags() { method SetUsageAndHelpFunc (line 95) | func (f *AppFlags) SetUsageAndHelpFunc() { method Install (line 100) | func (f *AppFlags) Install() { function NewAppFlags (line 53) | func NewAppFlags(cmd *cobra.Command) *AppFlags { FILE: pkg/webserver/app/version.go type Version (line 29) | type Version struct function GetVersion (line 62) | func GetVersion() Version { FILE: pkg/webserver/config.go constant defaultBindAddress (line 45) | defaultBindAddress = ":80" constant defaultExternalAddress (line 46) | defaultExternalAddress = ":80" constant defaultShutdownDelayDuration (line 47) | defaultShutdownDelayDuration = time.Duration(0) constant defaultShutdownTimeoutDuration (line 48) | defaultShutdownTimeoutDuration = 5 * time.Second constant defaultMaxReceiveMessageSize (line 50) | defaultMaxReceiveMessageSize = math.MaxInt32 constant defaultMaxSendMessageSize (line 51) | defaultMaxSendMessageSize = math.MaxInt32 type Config (line 54) | type Config struct method Complete (line 147) | func (c *Config) Complete() CompletedConfig { method installGrpcMessageSizeOptions (line 164) | func (c *Config) installGrpcMessageSizeOptions() []gw_.GRPCGatewayOpti... method installHttpMiddlewareChain (line 205) | func (c *Config) installHttpMiddlewareChain() []gw_.GRPCGatewayOption { method installGrpcMiddlewareChain (line 295) | func (c *Config) installGrpcMiddlewareChain() []gw_.GRPCGatewayOption { method WithWebConfigOptions (line 327) | func (c *Config) WithWebConfigOptions(opts ...ConfigOption) { method AppendGRPCGatewayOptions (line 331) | func (c *Config) AppendGRPCGatewayOptions(opts ...gw_.GRPCGatewayOptio... method parseViper (line 335) | func (c *Config) parseViper() { method loadViper (line 339) | func (c *Config) loadViper() error { method GetBindAddress (line 347) | func (c *Config) GetBindAddress() string { type completedConfig (line 79) | type completedConfig struct method Validate (line 90) | func (c *completedConfig) Validate() error { method New (line 94) | func (c *completedConfig) New(ctx context.Context, opts ...gw_.GRPCGat... method install (line 106) | func (c *completedConfig) install(ctx context.Context, opts ...gw_.GRP... method installDefaultHander (line 141) | func (c *completedConfig) installDefaultHander(ws *GenericWebServer) e... type CompletedConfig (line 84) | type CompletedConfig struct function NewConfig (line 352) | func NewConfig(options ...ConfigOption) *Config { FILE: pkg/webserver/config.option.go function WithViper (line 32) | func WithViper(v *viper.Viper) ConfigOption { function WithShutdownDelayDuration (line 38) | func WithShutdownDelayDuration(shutdownDelayDuration time.Duration) Conf... function WithGRPCGatewayOptions (line 44) | func WithGRPCGatewayOptions(opts ...gw_.GRPCGatewayOption) ConfigOption { function WithGRPCQPSLimit (line 51) | func WithGRPCQPSLimit(config *QPSLimitConfig) ConfigOption { function WithHTTPQPSLimit (line 58) | func WithHTTPQPSLimit(config *QPSLimitConfig) ConfigOption { function WithQPSLimit (line 65) | func WithQPSLimit(grpcConfig, httpConfig *QPSLimitConfig) ConfigOption { function WithHealthzOptions (line 75) | func WithHealthzOptions(opts ...healthz_.ControllerOption) ConfigOption { FILE: pkg/webserver/config_option.go type ConfigOption (line 25) | type ConfigOption interface type EmptyConfigOption (line 33) | type EmptyConfigOption struct method apply (line 35) | func (EmptyConfigOption) apply(*Config) {} type ConfigOptionFunc (line 39) | type ConfigOptionFunc method apply (line 41) | func (f ConfigOptionFunc) apply(do *Config) { function _ConfigOptionWithDefault (line 46) | func _ConfigOptionWithDefault() ConfigOption { method ApplyOptions (line 51) | func (o *Config) ApplyOptions(options ...ConfigOption) *Config { FILE: pkg/webserver/controller/healthz/checker.go type HealthChecker (line 34) | type HealthChecker interface type HealthCheckResult (line 42) | type HealthCheckResult struct type HealthCheckResponse (line 50) | type HealthCheckResponse struct type PingHealthChecker (line 57) | type PingHealthChecker struct method Name (line 59) | func (p PingHealthChecker) Name() string { method Check (line 63) | func (p PingHealthChecker) Check(ctx context.Context) error { type HTTPHealthChecker (line 68) | type HTTPHealthChecker struct method Name (line 87) | func (h *HTTPHealthChecker) Name() string { method Check (line 91) | func (h *HTTPHealthChecker) Check(ctx context.Context) error { function NewHTTPHealthChecker (line 76) | func NewHTTPHealthChecker(name, url string, timeout time.Duration) *HTTP... type TCPHealthChecker (line 111) | type TCPHealthChecker struct method Name (line 126) | func (t *TCPHealthChecker) Name() string { method Check (line 130) | func (t *TCPHealthChecker) Check(ctx context.Context) error { function NewTCPHealthChecker (line 118) | func NewTCPHealthChecker(name, addr string, timeout time.Duration) *TCPH... type FuncHealthChecker (line 145) | type FuncHealthChecker struct method Name (line 158) | func (f *FuncHealthChecker) Name() string { method Check (line 162) | func (f *FuncHealthChecker) Check(ctx context.Context) error { function NewFuncHealthChecker (line 151) | func NewFuncHealthChecker(name string, checkFunc func(ctx context.Contex... type CompositeHealthChecker (line 170) | type CompositeHealthChecker struct method AddChecker (line 183) | func (c *CompositeHealthChecker) AddChecker(checker HealthChecker) { method RemoveChecker (line 190) | func (c *CompositeHealthChecker) RemoveChecker(name string) { method Check (line 203) | func (c *CompositeHealthChecker) Check(ctx context.Context) error { method CheckAll (line 216) | func (c *CompositeHealthChecker) CheckAll(ctx context.Context) ([]Heal... method Checkers (line 246) | func (c *CompositeHealthChecker) Checkers() []HealthChecker { function NewCompositeHealthChecker (line 176) | func NewCompositeHealthChecker(checkers ...HealthChecker) *CompositeHeal... FILE: pkg/webserver/controller/healthz/healthz.go constant defaultCheckTimeout (line 35) | defaultCheckTimeout = 10 * time.Second type Controller (line 40) | type Controller struct method SetRoutes (line 117) | func (c *Controller) SetRoutes(ginRouter gin.IRouter, grpcRouter *gw_.... method RootHealthz (line 149) | func (c *Controller) RootHealthz() gin.HandlerFunc { method Healthz (line 161) | func (c *Controller) Healthz() gin.HandlerFunc { method Livez (line 200) | func (c *Controller) Livez() gin.HandlerFunc { method Readyz (line 218) | func (c *Controller) Readyz() gin.HandlerFunc { method HealthzVerbose (line 245) | func (c *Controller) HealthzVerbose() gin.HandlerFunc { method LivezVerbose (line 276) | func (c *Controller) LivezVerbose() gin.HandlerFunc { method ReadyzVerbose (line 299) | func (c *Controller) ReadyzVerbose() gin.HandlerFunc { method SetReady (line 336) | func (c *Controller) SetReady(ready bool) { method IsReady (line 341) | func (c *Controller) IsReady() bool { method AddLivezChecker (line 346) | func (c *Controller) AddLivezChecker(checker HealthChecker) { method AddReadyzChecker (line 351) | func (c *Controller) AddReadyzChecker(checker HealthChecker) { method RemoveLivezChecker (line 356) | func (c *Controller) RemoveLivezChecker(name string) { method RemoveReadyzChecker (line 361) | func (c *Controller) RemoveReadyzChecker(name string) { type ControllerOption (line 64) | type ControllerOption function WithCheckTimeout (line 67) | func WithCheckTimeout(timeout time.Duration) ControllerOption { function WithLivezCheckers (line 74) | func WithLivezCheckers(checkers ...HealthChecker) ControllerOption { function WithReadyzCheckers (line 83) | func WithReadyzCheckers(checkers ...HealthChecker) ControllerOption { function WithDisableRootRoute (line 94) | func WithDisableRootRoute() ControllerOption { function NewController (line 101) | func NewController(opts ...ControllerOption) *Controller { FILE: pkg/webserver/controller/healthz/healthz_test.go function init (line 36) | func init() { function TestPingHealthChecker (line 40) | func TestPingHealthChecker(t *testing.T) { function TestFuncHealthChecker (line 52) | func TestFuncHealthChecker(t *testing.T) { function TestCompositeHealthChecker (line 87) | func TestCompositeHealthChecker(t *testing.T) { function TestController_Healthz (line 149) | func TestController_Healthz(t *testing.T) { function TestController_NotReady (line 212) | func TestController_NotReady(t *testing.T) { function TestController_WithFailingChecker (line 270) | func TestController_WithFailingChecker(t *testing.T) { function TestController_VerboseEndpoints (line 293) | func TestController_VerboseEndpoints(t *testing.T) { function TestController_WithOptions (line 319) | func TestController_WithOptions(t *testing.T) { function TestController_AddRemoveCheckers (line 331) | func TestController_AddRemoveCheckers(t *testing.T) { FILE: pkg/webserver/controller/profiler/profiler.go type Controller (line 34) | type Controller struct method SetRoutes (line 41) | func (c *Controller) SetRoutes(ginRouter gin.IRouter, grpcRouter *gw_.... method Profile (line 45) | func (c *Controller) Profile() gin.HandlerFunc { function NewController (line 37) | func NewController() *Controller { FILE: pkg/webserver/controller/static/static.go type Config (line 33) | type Config struct type Controller (line 64) | type Controller struct method SetRoutes (line 95) | func (c *Controller) SetRoutes(ginRouter gin.IRouter, grpcRouter *gw_.... method GetRoot (line 123) | func (c *Controller) GetRoot() string { function NewController (line 70) | func NewController(config Config) *Controller { FILE: pkg/webserver/controller/static/static_test.go function TestNewController (line 34) | func TestNewController(t *testing.T) { function TestController_SetRoutes (line 76) | func TestController_SetRoutes(t *testing.T) { function TestController_GetRoot (line 135) | func TestController_GetRoot(t *testing.T) { FILE: pkg/webserver/hooks.go type PostStartHookFunc (line 42) | type PostStartHookFunc type PreShutdownHookFunc (line 45) | type PreShutdownHookFunc type PostStartHookProvider (line 48) | type PostStartHookProvider interface type postStartHookEntry (line 52) | type postStartHookEntry struct type preShutdownHookEntry (line 62) | type preShutdownHookEntry struct method AddPostStartHook (line 67) | func (s *GenericWebServer) AddPostStartHook(name string, hook PostStartH... method AddPostStartHookOrDie (line 99) | func (s *GenericWebServer) AddPostStartHookOrDie(name string, hook PostS... method AddPreShutdownHook (line 106) | func (s *GenericWebServer) AddPreShutdownHook(name string, hook PreShutd... method AddPreShutdownHookOrDie (line 130) | func (s *GenericWebServer) AddPreShutdownHookOrDie(name string, hook Pre... method RunPostStartHooks (line 137) | func (s *GenericWebServer) RunPostStartHooks(ctx context.Context) { method RunPreShutdownHooks (line 148) | func (s *GenericWebServer) RunPreShutdownHooks() error { method isPostStartHookRegistered (line 164) | func (s *GenericWebServer) isPostStartHookRegistered(name string) bool { function runPostStartHook (line 171) | func runPostStartHook(ctx context.Context, name string, entry postStartH... function runPreShutdownHook (line 185) | func runPreShutdownHook(name string, entry preShutdownHookEntry) error { FILE: pkg/webserver/webserver.go type WebHandler (line 38) | type WebHandler interface type GenericWebServer (line 42) | type GenericWebServer struct method PrepareRun (line 146) | func (s *GenericWebServer) PrepareRun() (preparedGenericWebServer, err... method InstallWebHandlers (line 161) | func (s *GenericWebServer) InstallWebHandlers(handlers ...WebHandler) { method AddLivezChecker (line 172) | func (s *GenericWebServer) AddLivezChecker(checker healthz_.HealthChec... method AddReadyzChecker (line 180) | func (s *GenericWebServer) AddReadyzChecker(checker healthz_.HealthChe... method SetReady (line 187) | func (s *GenericWebServer) SetReady(ready bool) { method IsReady (line 194) | func (s *GenericWebServer) IsReady() bool { method GetGinEngine (line 202) | func (s *GenericWebServer) GetGinEngine() *gin.Engine { type preparedGenericWebServer (line 83) | type preparedGenericWebServer struct method NonBlockingRun (line 87) | func (s preparedGenericWebServer) NonBlockingRun(ctx context.Context) ... method Run (line 101) | func (s preparedGenericWebServer) Run(ctx context.Context) error { FILE: pkg/webserver/webserver.pb.go constant _ (line 20) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 22) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type Web_Http_ApiFormatter (line 25) | type Web_Http_ApiFormatter method Enum (line 50) | func (x Web_Http_ApiFormatter) Enum() *Web_Http_ApiFormatter { method String (line 56) | func (x Web_Http_ApiFormatter) String() string { method Descriptor (line 60) | func (Web_Http_ApiFormatter) Descriptor() protoreflect.EnumDescriptor { method Type (line 64) | func (Web_Http_ApiFormatter) Type() protoreflect.EnumType { method Number (line 68) | func (x Web_Http_ApiFormatter) Number() protoreflect.EnumNumber { method EnumDescriptor (line 73) | func (Web_Http_ApiFormatter) EnumDescriptor() ([]byte, []int) { constant Web_Http_api_noop (line 28) | Web_Http_api_noop Web_Http_ApiFormatter = 0 constant Web_Http_tcloud_api_v30 (line 29) | Web_Http_tcloud_api_v30 Web_Http_ApiFormatter = 1 constant Web_Http_trivial_api_v10 (line 30) | Web_Http_trivial_api_v10 Web_Http_ApiFormatter = 2 constant Web_Http_trivial_api_v20 (line 31) | Web_Http_trivial_api_v20 Web_Http_ApiFormatter = 3 type Web_OpenTelemetry_OtelTraceExporterType (line 77) | type Web_OpenTelemetry_OtelTraceExporterType method Enum (line 105) | func (x Web_OpenTelemetry_OtelTraceExporterType) Enum() *Web_OpenTelem... method String (line 111) | func (x Web_OpenTelemetry_OtelTraceExporterType) String() string { method Descriptor (line 115) | func (Web_OpenTelemetry_OtelTraceExporterType) Descriptor() protorefle... method Type (line 119) | func (Web_OpenTelemetry_OtelTraceExporterType) Type() protoreflect.Enu... method Number (line 123) | func (x Web_OpenTelemetry_OtelTraceExporterType) Number() protoreflect... method EnumDescriptor (line 128) | func (Web_OpenTelemetry_OtelTraceExporterType) EnumDescriptor() ([]byt... constant Web_OpenTelemetry_trace_none (line 80) | Web_OpenTelemetry_trace_none Web_OpenTelemetry_OtelTraceExporterType = 0 constant Web_OpenTelemetry_trace_stdout (line 81) | Web_OpenTelemetry_trace_stdout Web_OpenTelemetry_OtelTraceExporterType = 1 constant Web_OpenTelemetry_trace_otlp (line 82) | Web_OpenTelemetry_trace_otlp Web_OpenTelemetry_OtelTraceExporterType = 2 constant Web_OpenTelemetry_trace_jaeger (line 83) | Web_OpenTelemetry_trace_jaeger Web_OpenTelemetry_OtelTraceExporterType = 3 constant Web_OpenTelemetry_trace_zipkin (line 84) | Web_OpenTelemetry_trace_zipkin Web_OpenTelemetry_OtelTraceExporterType = 4 type Web_OpenTelemetry_OtelMetricExporterType (line 132) | type Web_OpenTelemetry_OtelMetricExporterType method Enum (line 157) | func (x Web_OpenTelemetry_OtelMetricExporterType) Enum() *Web_OpenTele... method String (line 163) | func (x Web_OpenTelemetry_OtelMetricExporterType) String() string { method Descriptor (line 167) | func (Web_OpenTelemetry_OtelMetricExporterType) Descriptor() protorefl... method Type (line 171) | func (Web_OpenTelemetry_OtelMetricExporterType) Type() protoreflect.En... method Number (line 175) | func (x Web_OpenTelemetry_OtelMetricExporterType) Number() protoreflec... method EnumDescriptor (line 180) | func (Web_OpenTelemetry_OtelMetricExporterType) EnumDescriptor() ([]by... constant Web_OpenTelemetry_metric_none (line 135) | Web_OpenTelemetry_metric_none Web_OpenTelemetry_OtelMetricExporter... constant Web_OpenTelemetry_metric_stdout (line 136) | Web_OpenTelemetry_metric_stdout Web_OpenTelemetry_OtelMetricExporter... constant Web_OpenTelemetry_metric_otlp (line 137) | Web_OpenTelemetry_metric_otlp Web_OpenTelemetry_OtelMetricExporter... constant Web_OpenTelemetry_metric_prometheus (line 138) | Web_OpenTelemetry_metric_prometheus Web_OpenTelemetry_OtelMetricExporter... type Web_OpenTelemetry_OtelLogExporterType (line 184) | type Web_OpenTelemetry_OtelLogExporterType method Enum (line 203) | func (x Web_OpenTelemetry_OtelLogExporterType) Enum() *Web_OpenTelemet... method String (line 209) | func (x Web_OpenTelemetry_OtelLogExporterType) String() string { method Descriptor (line 213) | func (Web_OpenTelemetry_OtelLogExporterType) Descriptor() protoreflect... method Type (line 217) | func (Web_OpenTelemetry_OtelLogExporterType) Type() protoreflect.EnumT... method Number (line 221) | func (x Web_OpenTelemetry_OtelLogExporterType) Number() protoreflect.E... method EnumDescriptor (line 226) | func (Web_OpenTelemetry_OtelLogExporterType) EnumDescriptor() ([]byte,... constant Web_OpenTelemetry_log_none (line 187) | Web_OpenTelemetry_log_none Web_OpenTelemetry_OtelLogExporterType = 0 constant Web_OpenTelemetry_log_otlp (line 188) | Web_OpenTelemetry_log_otlp Web_OpenTelemetry_OtelLogExporterType = 1 type Web (line 230) | type Web struct method Reset (line 242) | func (x *Web) Reset() { method String (line 249) | func (x *Web) String() string { method ProtoMessage (line 253) | func (*Web) ProtoMessage() {} method ProtoReflect (line 255) | func (x *Web) ProtoReflect() protoreflect.Message { method Descriptor (line 268) | func (*Web) Descriptor() ([]byte, []int) { method GetBindAddress (line 272) | func (x *Web) GetBindAddress() *Web_Net { method GetGrpc (line 279) | func (x *Web) GetGrpc() *Web_Grpc { method GetHttp (line 286) | func (x *Web) GetHttp() *Web_Http { method GetDebug (line 293) | func (x *Web) GetDebug() *Web_Debug { method GetOpenTelemetry (line 300) | func (x *Web) GetOpenTelemetry() *Web_OpenTelemetry { type Web_Net (line 307) | type Web_Net struct method Reset (line 315) | func (x *Web_Net) Reset() { method String (line 322) | func (x *Web_Net) String() string { method ProtoMessage (line 326) | func (*Web_Net) ProtoMessage() {} method ProtoReflect (line 328) | func (x *Web_Net) ProtoReflect() protoreflect.Message { method Descriptor (line 341) | func (*Web_Net) Descriptor() ([]byte, []int) { method GetHost (line 345) | func (x *Web_Net) GetHost() string { method GetPort (line 352) | func (x *Web_Net) GetPort() int32 { type Web_Grpc (line 359) | type Web_Grpc struct method Reset (line 368) | func (x *Web_Grpc) Reset() { method String (line 375) | func (x *Web_Grpc) String() string { method ProtoMessage (line 379) | func (*Web_Grpc) ProtoMessage() {} method ProtoReflect (line 381) | func (x *Web_Grpc) ProtoReflect() protoreflect.Message { method Descriptor (line 394) | func (*Web_Grpc) Descriptor() ([]byte, []int) { method GetMaxReceiveMessageSize (line 398) | func (x *Web_Grpc) GetMaxReceiveMessageSize() int32 { method GetMaxSendMessageSize (line 405) | func (x *Web_Grpc) GetMaxSendMessageSize() int32 { method GetTimeout (line 412) | func (x *Web_Grpc) GetTimeout() *durationpb.Duration { type Web_Http (line 419) | type Web_Http struct method Reset (line 428) | func (x *Web_Http) Reset() { method String (line 435) | func (x *Web_Http) String() string { method ProtoMessage (line 439) | func (*Web_Http) ProtoMessage() {} method ProtoReflect (line 441) | func (x *Web_Http) ProtoReflect() protoreflect.Message { method Descriptor (line 454) | func (*Web_Http) Descriptor() ([]byte, []int) { method GetApiFormatter (line 458) | func (x *Web_Http) GetApiFormatter() Web_Http_ApiFormatter { method GetTimeout (line 465) | func (x *Web_Http) GetTimeout() *durationpb.Duration { type Web_Debug (line 472) | type Web_Debug struct method Reset (line 480) | func (x *Web_Debug) Reset() { method String (line 487) | func (x *Web_Debug) String() string { method ProtoMessage (line 491) | func (*Web_Debug) ProtoMessage() {} method ProtoReflect (line 493) | func (x *Web_Debug) ProtoReflect() protoreflect.Message { method Descriptor (line 506) | func (*Web_Debug) Descriptor() ([]byte, []int) { method GetEnableProfiling (line 510) | func (x *Web_Debug) GetEnableProfiling() bool { method GetDisablePrintInoutputMethods (line 517) | func (x *Web_Debug) GetDisablePrintInoutputMethods() []string { type Web_OpenTelemetry (line 524) | type Web_OpenTelemetry struct method Reset (line 538) | func (x *Web_OpenTelemetry) Reset() { method String (line 545) | func (x *Web_OpenTelemetry) String() string { method ProtoMessage (line 549) | func (*Web_OpenTelemetry) ProtoMessage() {} method ProtoReflect (line 551) | func (x *Web_OpenTelemetry) ProtoReflect() protoreflect.Message { method Descriptor (line 564) | func (*Web_OpenTelemetry) Descriptor() ([]byte, []int) { method GetEnabled (line 568) | func (x *Web_OpenTelemetry) GetEnabled() bool { method GetMetricCollectDuration (line 575) | func (x *Web_OpenTelemetry) GetMetricCollectDuration() *durationpb.Dur... method GetOtelTraceExporterType (line 582) | func (x *Web_OpenTelemetry) GetOtelTraceExporterType() Web_OpenTelemet... method GetOtelMetricExporterType (line 589) | func (x *Web_OpenTelemetry) GetOtelMetricExporterType() Web_OpenTeleme... method GetOtelLogExporterType (line 596) | func (x *Web_OpenTelemetry) GetOtelLogExporterType() Web_OpenTelemetry... method GetOtelMetricExporter (line 603) | func (x *Web_OpenTelemetry) GetOtelMetricExporter() *Web_OpenTelemetry... method GetOtelTraceExporter (line 610) | func (x *Web_OpenTelemetry) GetOtelTraceExporter() *Web_OpenTelemetry_... method GetResource (line 617) | func (x *Web_OpenTelemetry) GetResource() *Web_OpenTelemetry_Resource { type Web_OpenTelemetry_Resource (line 624) | type Web_OpenTelemetry_Resource struct method Reset (line 632) | func (x *Web_OpenTelemetry_Resource) Reset() { method String (line 639) | func (x *Web_OpenTelemetry_Resource) String() string { method ProtoMessage (line 643) | func (*Web_OpenTelemetry_Resource) ProtoMessage() {} method ProtoReflect (line 645) | func (x *Web_OpenTelemetry_Resource) ProtoReflect() protoreflect.Messa... method Descriptor (line 658) | func (*Web_OpenTelemetry_Resource) Descriptor() ([]byte, []int) { method GetServiceName (line 662) | func (x *Web_OpenTelemetry_Resource) GetServiceName() string { method GetAttrs (line 669) | func (x *Web_OpenTelemetry_Resource) GetAttrs() map[string]string { type Web_OpenTelemetry_OtelMetricExporter (line 676) | type Web_OpenTelemetry_OtelMetricExporter struct method Reset (line 684) | func (x *Web_OpenTelemetry_OtelMetricExporter) Reset() { method String (line 691) | func (x *Web_OpenTelemetry_OtelMetricExporter) String() string { method ProtoMessage (line 695) | func (*Web_OpenTelemetry_OtelMetricExporter) ProtoMessage() {} method ProtoReflect (line 697) | func (x *Web_OpenTelemetry_OtelMetricExporter) ProtoReflect() protoref... method Descriptor (line 710) | func (*Web_OpenTelemetry_OtelMetricExporter) Descriptor() ([]byte, []i... method GetPrometheus (line 714) | func (x *Web_OpenTelemetry_OtelMetricExporter) GetPrometheus() *Web_Op... method GetStdout (line 721) | func (x *Web_OpenTelemetry_OtelMetricExporter) GetStdout() *Web_OpenTe... type Web_OpenTelemetry_OtelTraceExporter (line 728) | type Web_OpenTelemetry_OtelTraceExporter struct method Reset (line 736) | func (x *Web_OpenTelemetry_OtelTraceExporter) Reset() { method String (line 743) | func (x *Web_OpenTelemetry_OtelTraceExporter) String() string { method ProtoMessage (line 747) | func (*Web_OpenTelemetry_OtelTraceExporter) ProtoMessage() {} method ProtoReflect (line 749) | func (x *Web_OpenTelemetry_OtelTraceExporter) ProtoReflect() protorefl... method Descriptor (line 762) | func (*Web_OpenTelemetry_OtelTraceExporter) Descriptor() ([]byte, []in... method GetJaeger (line 766) | func (x *Web_OpenTelemetry_OtelTraceExporter) GetJaeger() *Web_OpenTel... method GetStdout (line 773) | func (x *Web_OpenTelemetry_OtelTraceExporter) GetStdout() *Web_OpenTel... type Web_OpenTelemetry_Prometheus (line 780) | type Web_OpenTelemetry_Prometheus struct method Reset (line 787) | func (x *Web_OpenTelemetry_Prometheus) Reset() { method String (line 794) | func (x *Web_OpenTelemetry_Prometheus) String() string { method ProtoMessage (line 798) | func (*Web_OpenTelemetry_Prometheus) ProtoMessage() {} method ProtoReflect (line 800) | func (x *Web_OpenTelemetry_Prometheus) ProtoReflect() protoreflect.Mes... method Descriptor (line 813) | func (*Web_OpenTelemetry_Prometheus) Descriptor() ([]byte, []int) { method GetUrl (line 817) | func (x *Web_OpenTelemetry_Prometheus) GetUrl() string { type Web_OpenTelemetry_Jaeger (line 824) | type Web_OpenTelemetry_Jaeger struct method Reset (line 831) | func (x *Web_OpenTelemetry_Jaeger) Reset() { method String (line 838) | func (x *Web_OpenTelemetry_Jaeger) String() string { method ProtoMessage (line 842) | func (*Web_OpenTelemetry_Jaeger) ProtoMessage() {} method ProtoReflect (line 844) | func (x *Web_OpenTelemetry_Jaeger) ProtoReflect() protoreflect.Message { method Descriptor (line 857) | func (*Web_OpenTelemetry_Jaeger) Descriptor() ([]byte, []int) { method GetUrl (line 861) | func (x *Web_OpenTelemetry_Jaeger) GetUrl() string { type Web_OpenTelemetry_Stdout (line 868) | type Web_OpenTelemetry_Stdout struct method Reset (line 875) | func (x *Web_OpenTelemetry_Stdout) Reset() { method String (line 882) | func (x *Web_OpenTelemetry_Stdout) String() string { method ProtoMessage (line 886) | func (*Web_OpenTelemetry_Stdout) ProtoMessage() {} method ProtoReflect (line 888) | func (x *Web_OpenTelemetry_Stdout) ProtoReflect() protoreflect.Message { method Descriptor (line 901) | func (*Web_OpenTelemetry_Stdout) Descriptor() ([]byte, []int) { method GetPrettyPrint (line 905) | func (x *Web_OpenTelemetry_Stdout) GetPrettyPrint() bool { constant file_pkg_webserver_webserver_proto_rawDesc (line 914) | file_pkg_webserver_webserver_proto_rawDesc = "" + function file_pkg_webserver_webserver_proto_rawDescGZIP (line 996) | func file_pkg_webserver_webserver_proto_rawDescGZIP() []byte { function init (line 1053) | func init() { file_pkg_webserver_webserver_proto_init() } function file_pkg_webserver_webserver_proto_init (line 1054) | func file_pkg_webserver_webserver_proto_init() { FILE: pkg/webserver/webserver.proto.go method GetBindHostPort (line 26) | func (w *Web) GetBindHostPort() string { FILE: pkg/webserver/webserver_qps_limit.go type QPSLimitConfig (line 29) | type QPSLimitConfig struct method ToGRPCQPSLimitConfig (line 63) | func (c *QPSLimitConfig) ToGRPCQPSLimitConfig() gw_.QPSLimitConfig { method ToHTTPQPSLimitConfig (line 85) | func (c *QPSLimitConfig) ToHTTPQPSLimitConfig() gw_.HTTPQPSLimitConfig { type MethodQPSConfigItem (line 42) | type MethodQPSConfigItem struct type ExtendedConfig (line 55) | type ExtendedConfig struct FILE: pkg/webserver/webserver_test.go function TestNew (line 35) | func TestNew(t *testing.T) { function TestPrintProto (line 70) | func TestPrintProto(t *testing.T) { FILE: tutorial/programming_paradigm/control.inverse_test.go type Undo (line 10) | type Undo method Add (line 12) | func (undo *Undo) Add(function func()) { method Undo (line 16) | func (undo *Undo) Undo() error { type IntSet (line 30) | type IntSet struct method Undo (line 39) | func (set *IntSet) Undo() error { method Contains (line 43) | func (set *IntSet) Contains(x int) bool { method Add (line 47) | func (set *IntSet) Add(x int) { method Delete (line 56) | func (set *IntSet) Delete(x int) { function NewIntSet (line 35) | func NewIntSet() IntSet { function TestUndo (line 65) | func TestUndo(t *testing.T) { FILE: tutorial/programming_paradigm/decorator_test.go type HttpHandlerDecorator (line 11) | type HttpHandlerDecorator function Handler (line 13) | func Handler(h http.HandlerFunc, decors ...HttpHandlerDecorator) http.Ha... function WithServerHeader (line 21) | func WithServerHeader(h http.HandlerFunc) http.HandlerFunc { function WithAuthCookie (line 29) | func WithAuthCookie(h http.HandlerFunc) http.HandlerFunc { function WithBasicAuth (line 38) | func WithBasicAuth(h http.HandlerFunc) http.HandlerFunc { function WithDebugLog (line 53) | func WithDebugLog(h http.HandlerFunc) http.HandlerFunc { function hello (line 72) | func hello(w http.ResponseWriter, r *http.Request) { function TestHttpMiddleware (line 77) | func TestHttpMiddleware(t *testing.T) { FILE: tutorial/programming_paradigm/error.handle_test.go function parse (line 15) | func parse(r io.Reader) (*Person, error) { type Person (line 50) | type Person struct method read (line 59) | func (p *Person) read(data interface{}) { method ReadName (line 65) | func (p *Person) ReadName() *Person { method ReadAge (line 70) | func (p *Person) ReadAge() *Person { method ReadWeight (line 75) | func (p *Person) ReadWeight() *Person { method Print (line 80) | func (p *Person) Print() *Person { function TestError (line 87) | func TestError(t *testing.T) { FILE: tutorial/programming_paradigm/factory_test.go type FactoryConfigFunc (line 12) | type FactoryConfigFunc type FactoryConfig (line 14) | type FactoryConfig struct method ApplyOptions (line 20) | func (fc *FactoryConfig) ApplyOptions(configFuncs ...FactoryConfigFunc... method Validate (line 32) | func (fc FactoryConfig) Validate() error { method Do (line 40) | func (fc FactoryConfig) Do(ctx context.Context) error { type Factory (line 45) | type Factory struct method NewRepository (line 63) | func (f Factory) NewRepository(ctx context.Context) (Repository, error) { method Do (line 73) | func (f Factory) Do(ctx context.Context) error { function NewFactory (line 49) | func NewFactory(fc FactoryConfig, configFuncs ...FactoryConfigFunc) (Fac... type Repository (line 69) | type Repository interface function TestFactroy (line 77) | func TestFactroy(t *testing.T) { FILE: tutorial/programming_paradigm/function.options_test.go type ServerOption (line 10) | type ServerOption interface type EmptyServerOption (line 18) | type EmptyServerOption struct method apply (line 20) | func (EmptyServerOption) apply(*Server) {} type ServerOptionFunc (line 24) | type ServerOptionFunc method apply (line 26) | func (f ServerOptionFunc) apply(do *Server) { function _ServerOptionWithDefault (line 31) | func _ServerOptionWithDefault() ServerOption { function WithProtocol (line 46) | func WithProtocol(protocol string) ServerOption { function WithTimeout (line 52) | func WithTimeout(timeout time.Duration) ServerOption { function WithMaxConns (line 58) | func WithMaxConns(maxConns int) ServerOption { type Server (line 64) | type Server struct method ApplyOptions (line 36) | func (o *Server) ApplyOptions(options ...ServerOption) *Server { function NewServer (line 74) | func NewServer(addr string, port int, opts ...ServerOption) *Server { function TestNewServer (line 86) | func TestNewServer(t *testing.T) { FILE: tutorial/programming_paradigm/interface.check_test.go type Shape (line 8) | type Shape interface type Square (line 12) | type Square struct method Sides (line 22) | func (s *Square) Sides() int { method Area (line 26) | func (s *Square) Area() int { function NewSquare (line 16) | func NewSquare(length int) *Square { function TestNewSquare (line 35) | func TestNewSquare(t *testing.T) { FILE: tutorial/programming_paradigm/interface.program_test.go type Country (line 9) | type Country struct method ToString (line 21) | func (c Country) ToString() string { type City (line 13) | type City struct method ToString (line 24) | func (c City) ToString() string { type Stringable (line 17) | type Stringable interface function PrintStr (line 29) | func PrintStr(p Stringable) { function TestPrintStr (line 33) | func TestPrintStr(t *testing.T) { FILE: tutorial/programming_paradigm/map.reduce_test.go type Employee (line 8) | type Employee struct function EmployeeCountIf (line 26) | func EmployeeCountIf(list []Employee, fn func(e *Employee) bool) int { function EmployeeFilterIn (line 36) | func EmployeeFilterIn(list []Employee, fn func(e *Employee) bool) []Empl... function EmployeeSumIf (line 46) | func EmployeeSumIf(list []Employee, fn func(e *Employee) int) int { function TestEmployeeCountIf (line 54) | func TestEmployeeCountIf(t *testing.T) { FILE: tutorial/programming_paradigm/pipeline_test.go function echo (line 16) | func echo(nums []int) <-chan int { function sum (line 29) | func sum(in <-chan int) <-chan int { function is_prime (line 43) | func is_prime(value int) bool { function prime (line 52) | func prime(in <-chan int) <-chan int { function merge (line 66) | func merge(cs []<-chan int) <-chan int { function makeRange (line 90) | func makeRange(min, max int) []int { function TestPipleline (line 98) | func TestPipleline(t *testing.T) { FILE: tutorial/programming_paradigm/visitor_test.go type VisitorFunc (line 10) | type VisitorFunc type Visitor (line 12) | type Visitor interface type Info (line 16) | type Info struct method Visit (line 22) | func (info *Info) Visit(fn VisitorFunc) error { type NameVisitor (line 26) | type NameVisitor struct method Visit (line 30) | func (v NameVisitor) Visit(fn VisitorFunc) error { function WithNameVisitor (line 42) | func WithNameVisitor() VisitorFunc { type OtherVisitor (line 50) | type OtherVisitor struct method Visit (line 54) | func (v OtherVisitor) Visit(fn VisitorFunc) error { function WithOtherVisitor (line 66) | func WithOtherVisitor() VisitorFunc { type DecoratedVisitor (line 74) | type DecoratedVisitor struct method Visit (line 87) | func (v DecoratedVisitor) Visit(fn VisitorFunc) error { function NewDecoratedVisitor (line 79) | func NewDecoratedVisitor(v Visitor, fn ...VisitorFunc) Visitor { function TestDecoratedVisitor (line 104) | func TestDecoratedVisitor(t *testing.T) {