Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
437 B
Go
17 lines
437 B
Go
// Code generated by command: go run fe_amd64_asm.go -out ../fe_amd64.s -stubs ../fe_amd64.go -pkg field. DO NOT EDIT.
|
|
|
|
//go:build amd64 && gc && !purego
|
|
// +build amd64,gc,!purego
|
|
|
|
package field
|
|
|
|
// feMul sets out = a * b. It works like feMulGeneric.
|
|
//
|
|
//go:noescape
|
|
func feMul(out *Element, a *Element, b *Element)
|
|
|
|
// feSquare sets out = a * a. It works like feSquareGeneric.
|
|
//
|
|
//go:noescape
|
|
func feSquare(out *Element, a *Element)
|